Hi All,
I have a tableView as follows:
<htmlb:tableView id = "material"
headerText = "Materials"
headerVisible = "true"
design = "alternating"
visibleRowCount = "5"
fillUpEmptyRows = "true"
onHeaderClick = "MyEventHeaderClick"
onRowSelection = "MyEventRowSelection"
selectionMode = "MULTISELECT"
table = "<%= ztab_mat %>">
<htmlb:tableViewColumns>
<htmlb:tableViewColumn columnName="MATCODE" title="Material Code">
</htmlb:tableViewColumn>
<htmlb:tableViewColumn columnName="DESC" title="DESCRIPTION" wrapping="TRUE">
</htmlb:tableViewColumn>
<htmlb:tableViewColumn columnName="MAP" title="PRICE">
</htmlb:tableViewColumn>
<htmlb:tableViewColumn columnName="QUNTY" title="QUANTITY" edit="TRUE">
</htmlb:tableViewColumn>
<htmlb:tableViewColumn columnName="UNIT" title="UNIT">
</htmlb:tableViewColumn>
</htmlb:tableViewColumns>
</htmlb:tableView>
My problem is:
1) i am not getting the quantity field editable even after supplying edit="TRUE" in tableViewColumn.
2)How can i read value of each cell in the selected row using GET_VALUE method..i mean what is the syntax.
Thank a lot,
Anubhav.
Edited by: Anubhav Jain on May 29, 2008 9:01 AM
Edited by: Anubhav Jain on May 29, 2008 9:20 AM