Hi @Erel I am trying to customize my TableView, for example to start I tried to change the background color but it didn't work, so after JobDone function it loses it for some reason.
Also in TableView_SelectedChanged (SectionIndex As Int, Cell As TableCell) how do I only get the header value instead of Cell.Text.ToString, I know that works for both heard and the cell but just want the header value.
And also How can I make the rows line higher so the Icon does not go over the line in the row?
Also in TableView_SelectedChanged (SectionIndex As Int, Cell As TableCell) how do I only get the header value instead of Cell.Text.ToString, I know that works for both heard and the cell but just want the header value.
Not sure what you mean with the header value. Cell.DetailText will return the second line.
You can always use the Tag property to store any value you like.
Not sure what you mean with the header value. Cell.DetailText will return the second line.
You can always use the Tag property to store any value you like.
Hi I have got the project attached here, I used one of your projects and edited so you can see what I mean. Basically the in the designer I have a Label and a TextField then when the application ruin it will populate the Tableview with some values and I want to have that table below the TextField but still at 100% height., please see project.
Private Sub Page1_Resize(Width As Int, Height As Int)
Dim Top, Space As Float
Space = 10
Top = TextField1.Top + TextField1.Height + Space
tv.SetLayoutAnimated(400, 0.5, 0, Top, 100%x, 100%y - Top - Space)
End Sub
Private Sub Page1_Resize(Width As Int, Height As Int)
Dim Top, Space As Float
Space = 10
Top = TextField1.Top + TextField1.Height + Space
tv.SetLayoutAnimated(400, 0.5, 0, Top, 100%x, 100%y - Top - Space)
End Sub