Last active
August 29, 2024 17:42
-
-
Save optikalefx/3766726 to your computer and use it in GitHub Desktop.
Editing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require_once("grid.php"); | |
| $grid = new Grid("users", array( | |
| "save"=>true | |
| )); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| $(function() { | |
| $(".users").grid({ | |
| editing:true | |
| }); | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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