Search found 236 matches

by Dirk Geppert
Tue May 16, 2023 11:25 am
Forum: Coding Questions
Topic: ListIconGadget FirstVisibleRow?
Replies: 0
Views: 116

ListIconGadget FirstVisibleRow?

Hello folks, there is already a function that allows me to scroll the ListIconGadget to a specific row. https://forums.spiderbasic.com/viewtopic.php?p=5491&hilit=scrollintoview#p5491 Since the ListIconGadget renders the content again when you resize it and set the scrollbar back to zero, I still...
by Dirk Geppert
Mon May 15, 2023 1:31 pm
Forum: Coding Questions
Topic: ListIconGadget Restyle
Replies: 2
Views: 147

Re: ListIconGadget Restyle

by Dirk Geppert
Sun May 14, 2023 10:48 am
Forum: Coding Questions
Topic: ListIconGadget Restyle
Replies: 2
Views: 147

Re: ListIconGadget Restyle

I copied the access to the header from Peter's ListIconGadgetEx code and changed it to Grid. But without success. Macro GetGadgetID(ListIconGadget) If IsGadget(ListIconGadget) = 0 : ProcedureReturn : EndIf If GadgetType(ListIconGadget) <> #PB_GadgetType_ListIcon : ProcedureReturn : EndIf Protected G...
by Dirk Geppert
Fri May 12, 2023 4:05 pm
Forum: Coding Questions
Topic: ListIconGadget Restyle
Replies: 2
Views: 147

ListIconGadget Restyle

Hi folks, I use the ListIconGadget () very often to visualize data contents. But I need that it looks like more modern. How to improve the gadget style? I need mainly rounded corners and shadow. I did some tests with the browser debugger, but css changes like 'border-radius: 10px;' seems to be ignor...
by Dirk Geppert
Sat Apr 29, 2023 12:02 pm
Forum: Tricks 'n' Tips
Topic: BlockUI
Replies: 7
Views: 5818

Re: BlockUI

Thank you, Peter!
by Dirk Geppert
Fri Apr 28, 2023 12:36 pm
Forum: Tricks 'n' Tips
Topic: BlockUI
Replies: 7
Views: 5818

Re: BlockUI

Hi guys, does anyone know how to design the BlockUI message? I would prefer to just display the spinner, with no border and transparent background. It seems defined inside jquery.blockUI.min.js under e.blockUI.defaults = {} ... but I have no clue :oops: BlockGadget(#Gadget, "<p><i class='fa fa-...
by Dirk Geppert
Wed Apr 26, 2023 10:57 am
Forum: Coding Questions
Topic: Toast animation
Replies: 6
Views: 635

Re: Toast animation

Great!!! :D Thank you very much Peter!
by Dirk Geppert
Wed Apr 26, 2023 9:26 am
Forum: Coding Questions
Topic: Toast animation
Replies: 6
Views: 635

Re: Toast animation

Hi guys, I have another question about animation. Is it possible to define a callback that is triggered after the animation is completed?
I need the information when the animation is finished.

kind regards

Dirk
by Dirk Geppert
Fri Apr 21, 2023 7:11 am
Forum: Coding Questions
Topic: Toast animation
Replies: 6
Views: 635

Re: Toast animation

Thank you Paul. Now it looks exactly as I wanted :D
by Dirk Geppert
Thu Apr 20, 2023 11:33 am
Forum: Coding Questions
Topic: Toast animation
Replies: 6
Views: 635

Toast animation

Hi guys, I am currently working on a toast that is to be pushed into view from the bottom edge and then pushes itself out of view again after 5 seconds. My problem is the fly-in and fly-out animation - its to fast. So my question is: how to smooth animate a window? #tWnd = 0 Define w, h Procedure Cl...