Closed samchrisinger closed 10 years ago
The docs are confusing on this, and passing a string argument here creates an infinite loop.
E.g.
var myGrid = HGrid.create({ container: "#my-grid", info: "data_info", columns: [ {id: "uid", name: "Data ID", width: 40, field: "uid"}, {id: "name", name: "Data name", width: 400, field: "name"} ] });
should be
var myGrid = HGrid.create({ container: "#my-grid", info: data_info, columns: [ {id: "uid", name: "Data ID", width: 40, field: "uid"}, {id: "name", name: "Data name", width: 400, field: "name"} ] });
Closing. This syntax has been deprecated
The docs are confusing on this, and passing a string argument here creates an infinite loop.
E.g.
should be