When i set a color in a row of a multiple pages b4xtable is coloring the same in order row to the next page.
i am using the ready made code from forum
Sub setrowcolor(in As Int)
Dim RowIndex As Int = in 'the 5th Table Row
Dim SelectionColor As Int = 0xFFFFD700
For Each c As B4XTableColumn In B4XTable1.VisibleColumns
Dim pnl As B4XView = c.CellsLayouts.Get(RowIndex + 1) '+1 because of the header
pnl.Color = SelectionColor
Next
End Sub
i am using the ready made code from forum
Sub setrowcolor(in As Int)
Dim RowIndex As Int = in 'the 5th Table Row
Dim SelectionColor As Int = 0xFFFFD700
For Each c As B4XTableColumn In B4XTable1.VisibleColumns
Dim pnl As B4XView = c.CellsLayouts.Get(RowIndex + 1) '+1 because of the header
pnl.Color = SelectionColor
Next
End Sub