I have an iOSMobileTable
I enable Search
When the search text changes, I loop through the data.
if I find a matching row, I scroll so as to put it at the top
Var searchtext As String
For x As Integer = 0 To threads.ubound
searchtext =descriptions(x)
If searchtext.IndexOf(0,value) > 0 Then
Me.ScrollToRow (x,True, iosmobiletable.ScrollPositions.Top)
Exit
End If
Next
Exception
PROBLEM:
Every time a letter is added, the onscreen keyboard goes away.
How can I keep it on screen so that a word can be entered, rather than one letter?
6 posts - 3 participants