summaryrefslogtreecommitdiffstats
path: root/examples/example2-formatters.html
diff options
context:
space:
mode:
authormleibman <michael.leibman@gmail.com>2009-12-18 02:43:06 -0800
committermleibman <michael.leibman@gmail.com>2009-12-18 02:43:06 -0800
commitf42df5a19a6278cdbc6e87de3dd7b024d11c7e1b (patch)
tree4f77c36b504bd474d9e37b54524d776699381284 /examples/example2-formatters.html
parent17b094f846ed504ff9e58124b1fecc77ea56bf88 (diff)
downloadSlickGrid-f42df5a19a6278cdbc6e87de3dd7b024d11c7e1b.zip
SlickGrid-f42df5a19a6278cdbc6e87de3dd7b024d11c7e1b.tar.gz
SlickGrid-f42df5a19a6278cdbc6e87de3dd7b024d11c7e1b.tar.bz2
- Code cleanup.
- Deleted "grid.html". The page was no longer maintained. - Added namespaces for everything except formatters & editors. Classes: Slick.Grid Slick.GlobalEditorLock Slick.Data.DataView Slick.Data.RemoteData Slick.Controls.ColumnPicker Slick.Controls.Pager
Diffstat (limited to 'examples/example2-formatters.html')
-rw-r--r--examples/example2-formatters.html9
1 files changed, 1 insertions, 8 deletions
diff --git a/examples/example2-formatters.html b/examples/example2-formatters.html
index 10c3538..037e877 100644
--- a/examples/example2-formatters.html
+++ b/examples/example2-formatters.html
@@ -70,7 +70,6 @@
};
-
$(function()
{
for (var i=0; i<500; i++) {
@@ -84,13 +83,7 @@
d["effortDriven"] = (i % 5 == 0);
}
-
- grid = new SlickGrid($("#myGrid"), data, columns, options);
-
- grid.onHeaderContextMenu = function() {
- console.log(1)
-
- }
+ grid = new Slick.Grid($("#myGrid"), data, columns, options);
})
</script>