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
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…