Reputation: 102
I have a dynamic json data having the format
var cols= { "columns" : ["name","age", "Amount", "Date"]}
I need to set columns in slickgrid from dynamic data as in the format given above
Upvotes: 0
Views: 1832
Reputation: 9082
Call grid.setColumns({your new columns}) when your data loads.
grid.setColumns({your new columns})
Upvotes: 1