Hello expert,
I created a value node in my z-view, this value node is displayed in teh UI as a table, I need some columns editable.
So I defined the I-getter to set rv_disabled = 'FALSE'. for the editable columns
and defined hte p-getter to define the UI element like input field or checkbox
Now when I test the app, the UI table is read-only, seems my I-getters do not work.
So I go to the hmtl, change the code to
<thtmlb:cellerator id = "CellTable"
onRowSelection = "select"
selectionMode = "MULTI"
editMode = "ALL"
selectedRowIndex = "<%= TechnicalData->SELECTED_INDEX %>"
selectedRowIndexTable = "<%= TechnicalData->SELECTION_TAB %>"
table = "//TechnicalData/Table"
visibleRowCount = "6"
width = "100%" />
Still nothing happens, the UI table still in display mode.
So what else I can do to make it editable?
Thanks
Jayson