Hi,
I have Ignition 7.9.11 with Alarm Status Table.
How can I disable title movement? I want only constant titles on the top row.
Thanks.
Hi,
I have Ignition 7.9.11 with Alarm Status Table.
How can I disable title movement? I want only constant titles on the top row.
Thanks.
You need to find the inner JTable
(technically a JideTable
, but that's not really relevant here) instance on the component. From there, you can call getTableHeader()
and then you can setResizingAllowed(False)
or setReorderingAllowed(False)
.
Hi,
I am talking about disabling dragging the column headers.
Thanks.
…yes?
If you disable resizing and reordering, the header won’t allow you to drag columns around.
There is no simple property. You have to follow the process I mentioned in my first post. There is no way to do what you want without scripting.
I will try it.
Thanks.