7.1.5 Archives | phpGrid - PHP Datagrid Create PHP grids in minutes, not hours. Sat, 11 Mar 2017 14:55:11 +0000 en-US hourly 1 CodeProjecthttps://wordpress.org/?v=7.0.3 129966043 Rating Plugin Integration https://phpgrid.com/example/rating-plugin-integration/ Tue, 07 Feb 2017 12:20:43 +0000 http://phpgrid.com/?p=9219

phpGrid has built-in jQuery rating plugin support since version 7.1.5. In set_col_format(), simply use “rating” as the format type. The value must be an integer from 1 to 5. 1234$dg = new C_DataGrid("SELECT id, Contact_Last, Title, Company, Rating, Email FROM contact", "id", "contact"); $dg->set_col_format('Rating', 'rating');$dg->set_dimension(800); $dg -> display(); See Live Demo!

The post Rating Plugin Integration appeared first on phpGrid - PHP Datagrid.

]]>

phpGrid has built-in jQuery rating plugin support since version 7.1.5. In set_col_format(), simply use “rating” as the format type. The value must be an integer from 1 to 5.

1
2
3
4
$dg = new C_DataGrid("SELECT id, Contact_Last, Title, Company, Rating, Email FROM contact", "id", "contact");
$dg->set_col_format('Rating', 'rating');
$dg->set_dimension(800);
$dg -> display();

See Live Demo!

The post Rating Plugin Integration appeared first on phpGrid - PHP Datagrid.

]]>
9219