Questions about tables

Find quick help here to get you started with Hollywood
Post Reply
papiosaur
Posts: 217
Joined: Fri Mar 31, 2023 1:34 pm

Questions about tables

Post 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 !
plouf
Posts: 671
Joined: Sun Feb 04, 2018 11:51 pm
Location: Athens,Greece

Re: Questions about tables

Post by plouf »

Where?

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

.....more specific pleasse
Christos
User avatar
jPV
Posts: 734
Joined: Sat Mar 26, 2016 10:44 am
Location: RNO
Contact:

Re: Questions about tables

Post 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?
papiosaur
Posts: 217
Joined: Fri Mar 31, 2023 1:34 pm

Re: Questions about tables

Post 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!
papiosaur
Posts: 217
Joined: Fri Mar 31, 2023 1:34 pm

Re: Questions about tables

Post by papiosaur »

variable "entry$" corresponding to first column of active selection (listview)

is it possible to use others entries of others columns ?
plouf
Posts: 671
Joined: Sun Feb 04, 2018 11:51 pm
Location: Athens,Greece

Re: Questions about tables

Post by plouf »

use hide

Code: Select all

<column title="HIden URL" hide="true">
	<item> URL </item>
</column>
Christos
papiosaur
Posts: 217
Joined: Fri Mar 31, 2023 1:34 pm

Re: Questions about tables

Post by papiosaur »

Thanks a lot plouf!

It work perfectly ;-)
Post Reply