Ben McIntyre
Ben McIntyre
There's an example in my [Alternative Master repo](https://github.com/6pac/SlickGrid): http://6pac.github.io/SlickGrid/examples/example-jquery-accordion.html
Yes, it is possible. You'd need to store the grids in an array or object. There was a recent enhancement to the repo to pass the grid object as the...
note also the IE8 bug around this issue - it could be a show stopper: look for 'Blank Grid Display in Accordion in IE8' [here](http://low-bandwidth.blogspot.com.au/2015/06/slickgrid-with-jqueryui-and-bootstrap.html)
OK a basic dynamic tab/grid is at: https://github.com/6pac/SlickGrid/blob/master/examples/example-dynamic-with-jquery-tabs.html The next step is to do an advanced version with all the bells and whistles. That might take another week. Live example...
I'll see if I can put together this as an example later in the week. But if you switch to my repo, you'll see that the final parameter of all...
Live example at: http://6pac.github.io/SlickGrid/examples/example-dynamic-filtered-with-jquery-tabs.html It's on the repo as an example with the same name.
This implements all the functions from example-4-model. A note is that the EditorLock defaults to a single global lock for the page, so it's necessary to pass a new EditorLock...
little hard to tell without knowing the parameter values, but the error message is indicating that the 'tab' parameter has the value 'chapter1', but that there is not a ``...
for a start, the HTML properties must be enclosed in double quotes: ``` $("div#tabs ul").append( 'Grid ' + num_tabs + '' ); $("div#tabs").append( '' + '' + '' ); ```
the only way to really help with this is for you to share your full code. you could: (1) create a jsfiddle (runnable live, but tricky to get all the...