Table Expand
When a table is expanded, one can add content to the row being expanded.
To expand this per row, you set the HasExpand property to true.
This has an event, that receives a zero based index of the row, the data of the row and then whether the row is hidden / not.
Private Sub tblFeatureSchema_ExpandRow (Row As Int, item As Map, Hidden As Boolean)
'clear the contents of the expand data
' tblFeatureSchema.ClearRowExpandData(Row + 1)
Log("tblFeatureSchema_ExpandRow")
Log(Row)
Log(item)
Log(Hidden)
End Sub
ClearRowExpandData - clears the "data" portion of the expanded row.
GetExpandColumnDataID- retrieves the html element id of that expanded row. You can use this with BANano.LoadLayout.
To conserve memory, rather load content to the expanded row when you show it.