canvas-datagrid
canvas-datagrid copied to clipboard
treeGridAttributes is not used
Expected behavior and actual behavior.
The treeGridAttributes
of the args
object passed to canvasDatagrid
are not used to create treeGrids.
When creating a treeGrid, self.args.treeGridAttributes
is used, but this is never set. I believe self.treeGridAttributes
is what should be used.
Specifications like the version of the project, operating system, or hardware.
tested in Firefox and Chrome http://jsfiddle.net/jswolf19/kcr9Lje2/
Workaround:
var grid = canvasDatagrid(args);
grid.args.treeGridAttributes = {
...
};