I have a requirement where I need to add dynamic columns in a grid. Let say I have a product of type CAR. So it has attribute like ID, Color, Type, Finish. Let say there is another product of type Cloth with attribute like ID, Color, Finish, Size, FIT.
Now requirement is when grid will load product of type Cloth, it should only show column ID, Color, Finish, Size, FIT not Type which is for CAR.
I tried with this
But it does not support paging, sorting.
What will be good option to achieve above requirement. Does any one implement jqGrid with this type of requirement.