This repository was archived by the owner on Jun 15, 2025. It is now read-only.

Description
I like the grid's clean layout, its one of the best ive seen.
However ive got the following problems in using it:
- Most other jquery objects ive used return a reference to the jquery object itself when initialising it,
eg, $grid = $("#Grid").bs_grid(...);
that way i can refer to $grid instead of continually calling the jquery selector.
- Most other controls ive used gie one access to the data after it has been initialised with data.
- the displayGrid smells. it is doing too much, not only is it displaying data but fetching it.
IMHO it should only display the data (as its name implies).
You could have a method that does all of this, however there should be a method that i can call with an array of objects.