Skip to content

Instantly share code, notes, and snippets.

@optikalefx
Last active October 10, 2015 23:18
Show Gist options
  • Save optikalefx/3766726 to your computer and use it in GitHub Desktop.
Save optikalefx/3766726 to your computer and use it in GitHub Desktop.
Editing
<?php
require_once("grid.php");
$grid = new Grid("users", array(
"save"=>true
));
?>
<script>
$(function() {
$(".users").grid({
editing:true
});
});
</script>
<table class="demo demo1" action="ajax.php">
<tr>
<th col="Username" type="text">Username</th>
<th col="Firstname" type="text">First Name</th>
<th col="Lastname" type="text">Last Name</th>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment