PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Application Tree
Application Tree
Débuté par Peter PURTON, 17 mai 2017 09:31 - 1 réponse
Posté le 17 mai 2017 - 09:31
Hi
I hope I have not doubled this posting.
Could someone point me in the right direction
I want to have a tree that will let me drill down on a customer.
Showing me all the transactions for that client, and allowing me to edit the details.
Thank you in advance.
Peter
Posté le 17 mai 2017 - 11:51
Hi Peter,

Could someone point me in the right direction
I want to have a tree that will let me drill down on a customer.
Showing me all the transactions for that client, and allowing me to edit
the details.
Thank you in advance.


I'm not sure what the precise question is, so my answer is going to be
very generic.

To do what you are describing, you can use either a treeview control or
a treeview table.

Because data is coming from several files, you'll need to fill it by
programming.

If there can be a lot of data, then it's probably better to originally
only fill it with the high level data (customer) and add the
transactions lines on the fly when the user selects a customer.

Finally, when the user drill down on the transaction itself, you will
just open a form window and pass it the transaction unique ID as
parameter for edit.

If you are blocked on any of these points, please ask a specific
question about it

Best regards

--
Fabrice Harari
International WinDev, WebDev and WinDev mobile Consulting

Ready for you: WXShowroom.com, WXReplication (open source) and now WXEDM
(open source)

More information on http://www.fabriceharari.com


> Peter