- Feb 16, 2015
-
-
Alain Leufroy authored
We stick to the "new-table" way of specifying options.
-
Alain Leufroy authored
-
Alain Leufroy authored
-
- Oct 23, 2014
-
-
Rémi Cardona authored
The grid object may be needed by thirdparty code, for example to refresh the canvas.
-
- Oct 22, 2014
-
-
Alain Leufroy authored
-
- Oct 17, 2014
-
-
Alain Leufroy authored
The cell renderers may add js at page onload. This js may require that the dom is populated which occures once the slickgrid renderer is called (at onload). We have to synchromously execute these js after the dom is populated by slickgrid.
-
- Oct 14, 2014
-
-
Alain Leufroy authored
we put the whole SlickGrid sources in a dedicated directory, so updating SlickGrid will be easier.
-
Alain Leufroy authored
-
Alain Leufroy authored
-
Alain Leufroy authored
NOTE: the original source has been modified The content of the `.name` attribute of the header is set by CW as html content (see views.py). The `.name` is uses as the rendered table header by slick.grid.js using `.html(...)` which render well the html content. But slick.columnpicker.js adds the `.name` of the header in the menu using `.text(...)` which does not interprets the html. The cset make the code more consistent.
-
Alain Leufroy authored
We use the columnpicker plugin from slickgrid which add a right click menu allowing the user to choose the displayed columns.
-
Alain Leufroy authored
-
Alain Leufroy authored
We use already existing table view class attribute `enable_sorting`. Note that the original class does not seem to remove the tooltip about column sorting if `enable_sorting` is `False`.
-
Alain Leufroy authored
This view is very simple (no pagination, no column ordering). Although it allows other table's view cutomization (headers, cellvids, etc.). The idea of this code is to override table view's code in order to build grid content instead of writing HTML, then call the javascript SlikGrid constructor.
-
Alain Leufroy authored
-