how to implement editable table with several fixed columns?
-
Hello, there, In my current project, I am dealing with table with many many columns. I need to make a table with first several columns fixed. It is like the table in Excel with locked columns. Only the columns after the fixed columns can be scrolled horizontally. It seems very difficult to implement. I could not figure it out. I am thinking to put two tables together and put them in a div. But it seems difficult to edit everything in a whole row. Because they are actually 2 rows from two tables. Is there any link or sample code for this kind of table? Thank you so much in advance.
-
Hello, there, In my current project, I am dealing with table with many many columns. I need to make a table with first several columns fixed. It is like the table in Excel with locked columns. Only the columns after the fixed columns can be scrolled horizontally. It seems very difficult to implement. I could not figure it out. I am thinking to put two tables together and put them in a div. But it seems difficult to edit everything in a whole row. Because they are actually 2 rows from two tables. Is there any link or sample code for this kind of table? Thank you so much in advance.
-
How are you currently implementing this?
Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.
Thank you for your reply. I am thinking put the fixed columns in a seperate datagrid and put two datagrids (or tables) together. But it seems it is quite complex to do it, especially the editing part. Is there any easier way to do this? Thank you very much.
-
Thank you for your reply. I am thinking put the fixed columns in a seperate datagrid and put two datagrids (or tables) together. But it seems it is quite complex to do it, especially the editing part. Is there any easier way to do this? Thank you very much.
-
I think the only way to do this is with 2 divs... or some fancy javascript scrolling.
Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.
I agree with you. Thank you so much.