Wish B4XTable - Null Handling during search

epiCode

Active Member
Licensed User
B4XTable crashes during search operations if cell items have null values on the line [507]

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
 
Top