Search found 21 matches: listicongadgetex

Searched query: +listicongadgetex

by Peter
Fri Oct 04, 2024 8:23 pm
Forum: Coding Questions
Topic: HTML in ListIconGadget
Replies: 4
Views: 8268

Re: HTML in ListIconGadget

You can use the ListIconGadgetEx module: https://github.com/spiderbytes/ListIconGadgetEx

this enables you to render each cell of your ListIconGadget as required. In the example below, I insert the text as HTML in the (TD) cell.

EnableExplicit

XIncludeFile "ListIconGadgetEx.sbi"

Enumeration ...
by Dirk Geppert
Thu Jun 08, 2023 5:49 am
Forum: Javascript
Topic: ListIconGadget Sort
Replies: 0
Views: 25508

ListIconGadget Sort

I use Peters ListIconGadgetEx() (https://github.com/spiderbytes/ListIconGadgetEx) - many thanks for that Peter! :D

There is a sorting function included that sorts the listitems numerically or case-sensitively by header click.

I have two questions about this:

1. How can I sort this in a non-case ...
by Dirk Geppert
Sun May 14, 2023 10:48 am
Forum: Coding Questions
Topic: ListIconGadget Restyle
Replies: 2
Views: 2507

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 ...
by Peter
Tue Nov 01, 2022 11:58 am
Forum: Coding Questions
Topic: To find a column in a ListIconGadget
Replies: 2
Views: 1634

Re: To find a column in a ListIconGadget

Take a look at ListIconGadgetEx
by Peter
Wed Mar 30, 2022 10:00 am
Forum: General Discussion
Topic: Has SpiderBasic Development Stopped
Replies: 14
Views: 17813

Re: Has SpiderBasic Development Stopped

Feature wise, a grid gadget is missing

The ListIconGadget is based on the dgrid , which has some nice features. Unfortunately, there are no native commands to programming dgrid directly. I have written some extensions for the ListIconGadget , where you can see how the grid is addressed using ...
by Paul
Sat Oct 09, 2021 8:12 pm
Forum: Coding Questions
Topic: Make ListIcon sortable with this JS library
Replies: 3
Views: 2743

Re: Make ListIcon sortable with this JS library

If you don't want to reinvent the wheel, Peter has made an excellent ListIcon Module with sort capabilities.
https://github.com/spiderbytes/ListIconGadgetEx
by Dirk Geppert
Thu Nov 05, 2020 5:32 pm
Forum: Coding Questions
Topic: Listicongadget and clicking on it
Replies: 15
Views: 11999

Re: Listicongadget and clicking on it

Thank you , Peter. Now I know, my problem have nothing to do with ListIconGadgetEx..
by Peter
Thu Nov 05, 2020 4:26 pm
Forum: Coding Questions
Topic: Listicongadget and clicking on it
Replies: 15
Views: 11999

Re: Listicongadget and clicking on it

Dirk Geppert wrote:for bug fixing purposes, could I have the previous version somewhere?
https://github.com/spiderbytes/ListIcon ... dgetEx.sbi
by Peter
Sat Oct 24, 2020 1:57 pm
Forum: Coding Questions
Topic: Listicongadget and clicking on it
Replies: 15
Views: 11999

Re: Listicongadget and clicking on it

kurzer wrote:UnBindCellClick()
kurzer wrote:provide the header with the new Rowheight
Added: UnbindCellClick(ListIconGadget)
Added: SetHeaderHeight(ListIconGadget, HeaderHeight)

:arrow: https://github.com/spiderbytes/ListIconGadgetEx

Greetings ... Peter
by Kurzer
Sun Oct 18, 2020 2:39 pm
Forum: Coding Questions
Topic: Listicongadget and clicking on it
Replies: 15
Views: 11999

Re: Listicongadget and clicking on it

Hello, Peter,
I just stumbled over your handy ListIconGadgetEx module and I can use it right now. Many thanks for it! http://www.purebasic.fr/german/images/smilies/allright.gif

A short question: There is no function UnBindCellClick() in the module. Is it not necessary or did you just not add it ...