HI,
I am trying to display the data from itab to bsp page using tableview. Here is the code I have used. But the data is not displaying in tableview. But the data exists in itab. plz let me know if i made any mistake in the code.
<htmlb:gridLayoutCell columnIndex = "1"
width = "100%"
rowIndex = "1" >
<htmlb:tableView id = "CompTab"
headerText = "Component Details"
headerVisible = "true"
design = "alternating"
onHeaderClick = "MyEventHeaderClick"
onRowSelection = "MyEventRowSelection"
selectionMode = "LINEEDIT"
keepSelectedRow = "true"
visibleRowCount = "5"
table = "<%= t_component %>" >
<htmlb:tableViewColumns>
<htmlb:tableViewColumn columnName = "t_component-COMPONENT"
wrapping = "true"
width = "100"
onCellClick = "MyCellClick"
horizontalAlignment = "center"
title = " "
type = "user" />
</htmlb:tableViewColumns>
</htmlb:tableView>
</htmlb:gridLayoutCell>