Page 4 of 33
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Mon Apr 29, 2019 12:56 pm
by RSBasic
Good work

Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Mon Apr 29, 2019 1:02 pm
by Cyllceaux
Works fine

thx
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Mon Apr 29, 2019 6:54 pm
by davido
@
Thorsten1867,
Thank you for adding 'alternate colours'.

Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 6:44 am
by Cyllceaux
Hey there... it's me again
Just want to know how can I event a row change? I mean #PB_EventType_Change on the list.
Like:
Code: Select all
;....
if EventType()=#PB_EventType_Change and EventGadget()=#List
protected idx=ListEx::GetState(#List)
if idx>-1
;....
endif
endif
;....
Oh... and a Bug:
GetState() returns 0 on
first selected row and
non selected row.
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 8:50 am
by Thorsten1867
Depending on what has been edited, the following EventTypes will be sent:
- String: #EventType_String
- ComboBox: #EventType_ComboBox
- Date: #EventType_Date
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 10:08 am
by Cyllceaux
Thorsten1867 wrote:Depending on what has been edited, the following EventTypes will be sent:
- String: #EventType_String
- ComboBox: #EventType_ComboBox
- Date: #EventType_Date
No Editing... just selecting a row. In my case, I don't need editing.
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 10:30 am
by Thorsten1867
Update:
New EventType '#EventType_Row'
Code: Select all
If EventType() = ListEx::#EventType_Row
Debug "Row: " + Str(EventData())
EndIf
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 10:41 am
by Cyllceaux
Thank you

Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 3:07 pm
by davebar
Is anyone else having difficulty getting the latest zip file for this?
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 3:26 pm
by Kuron
davebar wrote:Is anyone else having difficulty getting the latest zip file for this?
Downloads fine for me, but you are in OZ and they have cracked down and are banning access to many filehosts. I have temporarily uploaded it to my Google Drive. I will delete it later today, so grab it. This is the latest version, as I just downloaded it from Pcloud and uploaded it for you.
*file removed*
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 3:34 pm
by davebar
At the present time I am in Europe not OZ. Not sure what the issue was, but I grabbed your copy from Google Drive.
Thanks very much.
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 3:40 pm
by Kuron
davebar wrote:At the present time I am in Europe not OZ. Not sure what the issue was, but I grabbed your copy from Google Drive.
Thanks very much.
Glad to help. May be the same issue, lots of file hosts are getting blocked in Europe, too, even though they can be used for legit purposes. :c/
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 3:44 pm
by Ajm
I've just been tring to download Thorsten1867 modules from the UK and can't get any of them. I've even tried using a VPN via the US and Asia. Still just get a blank page back from pcloud.
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 4:29 pm
by Lord
I also have trouble to get the module the "normal way".
I had to use the TOR browser to get the archiv.
Another thing:
Is it true, that ListEx::EventState(#List) in the example
always returns "0" when changing the three state checkbox?
Re: [Modules] Editable and sortable ListGadget (all OS / DPI
Posted: Thu May 09, 2019 5:44 pm
by Thorsten1867