Hi,
I am using webview to display the data from database, Now i want to get the details of particular cell on click event.
This code gives only the position of row and cell...
My example project attached with this post..
I am using webview to display the data from database, Now i want to get the details of particular cell on click event.
B4X:
Sub WebView1_OverrideUrl (Url As String) As Boolean
Dim values() As String
values = Regex.Split("[.]", Url.SubString(7))
Dim col, row As Int
col = values(0)
row = values(1)
ToastMessageShow("User pressed on column: " & col & " and row: " & row, False)'Here I want content of particular cell
Return True
End Sub
My example project attached with this post..
Attachments
Last edited: