B4XTable crashes during search operations if cell items have null values on the line [507]
While it can be manually skipped by modifying class like this
It would be really nice if B4XTable can just ignore NULL and not crash
B4X:
Dim x As Int = Text.ToLowerCase.IndexOf(FilterText)
While it can be manually skipped by modifying class like this
B4X:
If Text = Null Then Text=""
Dim x As Int = Text.ToLowerCase.IndexOf(FilterText)
It would be really nice if B4XTable can just ignore NULL and not crash