LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

implement a table with capability to select individual cell

Hi,

 

I am working on a project to implement a table control that has hundreds of cells. Each cell displays a changing numerical value. The key part is that user can select/de-select/disable individual cells by mouse clicking. I tried the built-in table control but cannot figure out how to select each invidual cell. Then I ended up with creating a customized control that has a lot of boolean buttons and use their boolean text to display the numbers. This way at least the select/delect can work. However, I find this thing takes seconds to update the entire table, which makes it basically useless.

 

Can anyone shine some light on me on how to improve the performance of such a control or do I have other options?

 

Thanks!

0 Kudos
Message 1 of 2
(2,245 Views)

You can use List box that holds 1D array of data and have sequence so that it looks like a multicolumn list box. Now you can select a single element and enable or disable the items.

-----

The best solution is the one you find it by yourself
0 Kudos
Message 2 of 2
(2,235 Views)