summaryrefslogtreecommitdiffstats
path: root/examples/example10-async-post-render.html
diff options
context:
space:
mode:
authormleibman <michael.leibman@gmail.com>2010-11-26 00:49:22 -0800
committermleibman <michael.leibman@gmail.com>2010-11-26 00:49:22 -0800
commitd14636aa3148ceb994e21362521da1af867df341 (patch)
treebd648b000b1d350d2b50ea9e278297c2961d3fe8 /examples/example10-async-post-render.html
parente256bc9d4e74753493f6774f2b38480f52183394 (diff)
downloadSlickGrid-d14636aa3148ceb994e21362521da1af867df341.zip
SlickGrid-d14636aa3148ceb994e21362521da1af867df341.tar.gz
SlickGrid-d14636aa3148ceb994e21362521da1af867df341.tar.bz2
Initial commit of v2.0 alpha.
This major update is focused around API usability, consistency and extensibility, events, and breaking out selection and drag'n'drop functionality into external plugins. Expect this code to be incomplete and buggy at this point. Since there are so many API changes, I am not making any attempt to retain backwards compatibility. Hence the new major version.
Diffstat (limited to 'examples/example10-async-post-render.html')
-rw-r--r--examples/example10-async-post-render.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/example10-async-post-render.html b/examples/example10-async-post-render.html
index b8f6122..f434851 100644
--- a/examples/example10-async-post-render.html
+++ b/examples/example10-async-post-render.html
@@ -54,6 +54,7 @@
<script language="JavaScript" src="../lib/jquery.event.drag-2.0.min.js"></script>
<script language="JavaScript" src="../lib/jquery.sparkline.min.js"></script>
+ <script language="JavaScript" src="../slick.core.js"></script>
<script language="JavaScript" src="../slick.editors.js"></script>
<script language="JavaScript" src="../slick.grid.js"></script>
@@ -118,7 +119,7 @@
}
- grid = new Slick.Grid($("#myGrid"), data, columns, options);
+ grid = new Slick.Grid("#myGrid", data, columns, options);
})
</script>
</body>