Android Question Table with fixed first column

harinder

Active Member
Licensed User
Longtime User
My requirement is to display a table with fixed first column and both horizontal and vertical scrolling. B4X Table has column freeze function but does not support vertical scrolling(I think !!). FlexiTable supports H/V scrolling but no column freeze. Presently I am using FlexiTable, but want first column freeze. Thanks.
 

harinder

Active Member
Licensed User
Longtime User
An out of bound exception equal to number of columns was being thrown earlier on adding /deleting rows. I realised the problem is with line 681 of Table class coding. After a bit of changing it, I deleted this line 681 as it was extra as compared to the For Next condition when column not frozen. On deleting it and running my program, I am getting first column freeze with no out of bound exception.

Same issue with the your later Table class. This time, same exception threw up on starting the app itself, this time pointing to line 689(same coding as earlier line 681). So I deleted it, I am getting first column freeze with no out of bound exception after deleting it.
 
Upvote 0
Top