You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great library. I'm trying to fix/freeze the right-most column. Is there an elegant way to do this using the API or should I start hacking at it? Thanks!
The text was updated successfully, but these errors were encountered:
Unfortunately it would have to be a hack for now. There are numerous places where the source would have to be changed depending on what options you'd want enabled.
I would look to the following CSS classes and JS methods:
.g_BodyFixed - Left property to right
.g_BodyFixed2 - Left property to right
addSelectionColumn() - Use push instead of unshift
generateGridSection() - Need to reverse the if statement in the while loop
alignColumns() - Need to reverse the if statement in the for loop
highlightRows() - Need to reverse some ternary if statements
This is just a rough analysis from me combing through the source code. There may be more areas needed to change. Hope this helps.
Great library. I'm trying to fix/freeze the right-most column. Is there an elegant way to do this using the API or should I start hacking at it? Thanks!
The text was updated successfully, but these errors were encountered: