its possible add information when you select a item from listview. i am little confuse about how can make that.
Ramon
May 10, 2024, 6:03am
2
ListView Elements is a list of items so, you can manipulate them like with any other list. Here an example to add to the selected element a textbox.Text:
ABG
May 10, 2024, 11:53am
3
Usually people use tags or keys for listview elements, and store the actual data elsewhere by tag or key.
If you must carry an entire data structure in a listview element (a data hobo), use YAML format.
yaml format?. its a special format or something like that?. some information how to add using this format.?.
ABG
May 10, 2024, 12:12pm
5
You know how to search, right?
I am on my phone.
ABG
May 10, 2024, 4:00pm
6
This tutorial is meant to show an alternative way to display wide table data in portrait mode.
It uses YAML .
YAML is a data serialization language that is often used for writing configuration files. Depending on whom you ask, YAML stands for yet another markup language or YAML ain't markup language (a recursive acronym), which emphasizes that YAML is for data, not documents.
This tutorial is browse-oriented, and centers around a value procedure that can take a table (row of rows) with a heade…
For better storage lifetime, see
I took a couple of hours to whip a quick and sloppy TinyDB Contact list app with dictionaries.
Here's a video of it at work ...
(I used my phone's screen recorder, which unfortunately does not catch cursor actions.)
Designer:
[Designer]
Components include:
A list Picker to pick Contacts from a TinyDB TagList
A text box to show the current ContactName or enter a new one
A Horizontal Arrangement to present a contact Attribute and its value, and allow Enter of a new value
A ListV…