IN PHP , how to have datagrid or gridview
How do select row in table ?? suppose table has ID and Name if I select first row and middle row and click on submit button, How to display selected valu开发者_JS百科es ?
You can use SDTable.com. There is an simple API which you can attach to your table and get out an id form selected row. Something like:
$SDT(1).SetSelectionTrigger(myfunc); function myfunc(id, row) { alert(id); // do something }
You generate SDT code with an easy drag&drop interface and everything is done in minutes... Works just great for me
Hey! Check out Ext.js. It has a data grid component. It's not simple to use but it has many many features.
精彩评论