Hi gurus,
I've made a table view using a value node. I've replaced the existing code in the corresponding .htm file, with the below one so that i was able to get the configuration tab and configure the table view and also added available fields to the view.
-
<%
DATA:
lv_xml TYPE string.
lv_xml = controller->configuration_descr->get_config_data( ).
%>
<thtmlb:tray design="PLAIN" height="100%" id="de" title="TITLE">
</thtmlb:tray>
<chtmlb:tableExtension tableId = "Id"
layout = "FIXED" >
<chtmlb:configTable xml = "<%= lv_xml %>"
id = "Id"
navigationMode = "BYPAGE"
onRowSelection = "select"
table = "//resulttocustomer/Table"
headerVisible = "TRUE"
visibleRowCount = "3"
selectionMode = "<%=resulttocustomer->SELECTION_MODE%>"
/>
</chtmlb:tableExtension>
-
I successfully got the table view in run time. I've also added code in the corresponding event to put multiple rows in the view and was able to do that successfully (using buttons, events and value node entity).
Now I've to make one of the columns of the table view as an input field, so that i can edit the value of the corresponding column. Now the rows are read only. Looking forward to your valuable inputs.
thanks and regards,
Arun N K.