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
{{ message }}
This repository has been archived by the owner on Apr 2, 2019. It is now read-only.
I have a table which has around 50 Columns . And i have used 'renderable' property to either show or hide the columns from the table , and it works fine. (Hide / Show of columns)
But my concern here is , even though we have 'renderable' as false for certain columns , the cell rendering part still happens , which is actually consuming lot of time.
Example :
{
name : 'staAcceptedDate',
cell : function(options) {
// we have heavy processing logic here.(3-4 Seconds)
},
renderable : false,
headerCell : CustomHeaderCell
}
Is there any way , we can restrict even processing of cells whenever we have renderable as false.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello ,
I have a table which has around 50 Columns . And i have used 'renderable' property to either show or hide the columns from the table , and it works fine. (Hide / Show of columns)
But my concern here is , even though we have 'renderable' as false for certain columns , the cell rendering part still happens , which is actually consuming lot of time.
Example :
Is there any way , we can restrict even processing of cells whenever we have renderable as false.
The text was updated successfully, but these errors were encountered: