Page 1 of 1

Questions about tables

Posted: Thu Apr 20, 2023 5:51 pm
by papiosaur
Hello all,

i begin support of tables, thanks jPV for the code to start ;-)

I have question of newbie :-)

1. How to hide a column ?
2. How to add a variable into a case without " "

Thanks for your answers !

Re: Questions about tables

Posted: Thu Apr 20, 2023 10:13 pm
by plouf
Where?

Where is the volumn to hide?
Where is the "support"?
Is variables table, or sqlite?

.....more specific pleasse

Re: Questions about tables

Posted: Fri Apr 21, 2023 12:56 pm
by jPV
You probably still mix up things as a newbie :) Tables are data structures in memory and "hiding columns" sounds more like listviews in GUI. They aren't related, but you can convert data in tables into listview entries, and vice versa. Learning how data resides in tables is important for any more complex projects, so I suggested to read about them from the documentation. It's then quite trivial to use the data in tables for any other things.

1. Do you mean hiding a column in RapaGUI's listview?
2. Hmm.. something about swtich-case statement or what case?

Re: Questions about tables

Posted: Fri Apr 21, 2023 3:20 pm
by papiosaur
Hi,

yes sorry, In a listview of RAPAGUI containing the table, i would like to hide the first column where i put some url

In other column i would like write a variable corresponding to a version number of a software.

Thanks!

Re: Questions about tables

Posted: Fri Apr 21, 2023 3:56 pm
by papiosaur
variable "entry$" corresponding to first column of active selection (listview)

is it possible to use others entries of others columns ?

Re: Questions about tables

Posted: Fri Apr 21, 2023 8:30 pm
by plouf
use hide

Code: Select all

<column title="HIden URL" hide="true">
	<item> URL </item>
</column>

Re: Questions about tables

Posted: Fri Apr 21, 2023 10:33 pm
by papiosaur
Thanks a lot plouf!

It work perfectly ;-)