Android Question SD_FlexGrid - select multiple, non consecutive, rows

mmanso

Active Member
Licensed User
Longtime User
Hi there,

Is it possible to select multiple rows which aren't in the same order? I mean, something like:

B4X:
gridAppList.SelectCell(0, 0, False)
gridAppList.SelectCell(3, 0, False)
gridAppList.SelectCell(4, 0, False)

?

I'm aware of the SelectCells method but that assumes that we need a range From and To.

Thanks.
 

Star-Dust

Expert
Licensed User
Longtime User
Sorry it's not possible, they must be consecutive cells
 
Upvote 0

mmanso

Active Member
Licensed User
Longtime User
I was trying to achieve what I need using a row background color but after setting it using GetCellBackgroundColor (it works) these methods:

GetCellBackgroundColor
GetCellTextColor

allways return 0 (event after I set a color).

Am I doing something wrong?

Thanks.
 
Upvote 0

Star-Dust

Expert
Licensed User
Longtime User
I can't tell you if you make mistakes. In the example you see how to change the color of some cells
 
Upvote 0
Top