Table Sliders too small to click


Recommended Posts

Hi, so i have a big table which will store hundreds of records. When i populate the table with all the data, the slider to scroll up and down is barely big enough to even click with a mouse. The main issue is that I will be planning on running DAQfactory on a small 7inch touch screen display, and i don't believe it will be possible to click the tiny slider in order to scroll up and down the table. Is it possible to resize the slider so its actually usable? I couldnt find anything in the userguide in section 17.8.2.26 - Table Component.

Cheers,

Ben

Link to comment
Share on other sites

You can always just not use the built in slider and either use the separate Slider component, or another component (like up/down arrows) to scroll.  To do this, you need a variable with the top index, for example:

global tableTop = 0
global tableRowCount = 20

Then, in the table, you should subset all your columns:

myData[tableTop, tableTop + TableRowCount - 1]

Then, use a scroll bar component or other components to adjust the tableTop variable accordingly, limiting it to 0 to however many rows you have.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.