I have the below example where the sap.ui.table.table shows the checkboxes for selecting the rows.
But, when I am trying with below example, I am not able to show the same.
Any idea?
| <Page title="" | > |
| <commons:Panel text=""> | |||||||||
| <commons:content> | |||||||||
| <table:Table width="100%" visibleRowCount="5" enableSelectAll="true" navigationMode="Paginator" selectionBehavior ="RowSelector" | |||||||||
| selectionMode="MultiToggle" editable="true" rows="{/data}"> | |||||||||
| <table:title> | |||||||||
| <commons:Label text="table tilte"> | |||||||||
| </commons:Label> | |||||||||
| </table:title> | |||||||||
| <table:columns> | |||||||||
| <table:Column> | |||||||||
| <table:label> | |||||||||
| <commons:Label text="ID"> | |||||||||
| </commons:Label> | |||||||||
| </table:label> | |||||||||
| <table:template> | |||||||||
| <commons:TextField value="{id}"> | |||||||||
| </commons:TextField> | |||||||||
| </table:template> | |||||||||
| </table:Column> | |||||||||
| <table:Column> | |||||||||
| <table:label> | |||||||||
| <commons:Label text="Article#"> | |||||||||
| </commons:Label> | |||||||||
| </table:label> | |||||||||
| <table:template> | |||||||||
| <commons:ValueHelpField value="{article}" | |||||||||
| editable="true"> | |||||||||
| </commons:ValueHelpField> | |||||||||
| </table:template> | |||||||||
| </table:Column> | |||||||||
| </table:columns> | |||||||||
| </table:Table> | |||||||||
| </commons:content> | |||||||||
| </commons:Panel> |
| </Page> |