Skip to content

Instantly share code, notes, and snippets.

@optikalefx
Last active August 29, 2024 17:42
Show Gist options
  • Select an option

  • Save optikalefx/3766726 to your computer and use it in GitHub Desktop.

Select an option

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