Simple Example Of Flexi Grid With PHP In MVC Pattern

https://www.phpflow.com/php/simple-example-of-flexi-grid-with-php/

Simple Example Of Flexi Grid With PHP In MVC Pattern

Last Updated On: October 22, 2017| By: Parvez

In this post we will learn how to use flexigrid with php. Flexigrid is very useful jquery plug-in for HTML grid listing table. It has many features like sorting, pagination and reloading. Flexi grid provides flexibility to the developer to add hooks with grid event. This is very easy and siimple to integrate flexigrid with PHP. Flexigrid is an open source project so don’t worry about license.

Also Checkout other tutorials of flexi grid,

We Will Implement Flexigrid With PHP In MVC Pattern.

Below are simple steps to with full db script:

Step 1: First we will create a table into db.

1234567

CREATE TABLE IF NOT EXISTS `tbl_issues` ( `ISSUEID` int(11) NOT NULL AUTO_INCREMENT, `issueName` varchar(255) NOT NULL PRIMARY KEY (`ISSUEID`)) ENGINE=InnoDB DEFAULT CHARSET=latin1;INSERT INTO `tbl_issues` (`ISSUEID`, `issueName`) VALUES(10, 'issue3');

Step 2: Fetch the data in model class.

12345678910111213141516171819202122232425262728293031323334353637

function getAssignedIssues($options){ global $wpdb;$page = ($options['page'] > 1) ? $options['page'] : 1; $offset = $options['rp'];$limit = ($page-1)*$offset; switch($options['sortname']){ case 'issueName':default: $options['sortname'] = 'Issue.ISSUEID';break;}$records = array(); $sql = " SELECT Issue.ISSUEID AS id, Issue.issueName AS issueName, FROM tbl_issues"; $countQuery = "select count(Issue.ISSUEID) from tbl_issues AS Issue"; $sql .= " ORDER BY ".$options['sortname']." ".$options['sortorder']." LIMIT ". $limit .",". $offset .""; $total = $wpdb->get_var($countQuery);$records = $wpdb->get_results($sql, ARRAY_A); return array( 'page' => $page, 'total' => $total, 'records' => $records); }

Step 3: After fetching data from database,we will call model method into controller class action method and format the results according flexigrid table format.

123456789101112131415161718192021222324252627282930313233343536

public function getIssues() { global $current_user; $data = $this->User->getAssignedIssues(array( 'page' => isset($post['page']) ? intval($post['page']) : 1, 'rp' => isset($post['rp']) ? intval($post['rp']) : 5, 'sortname' => isset($post['sortname']) ? trim($post['sortname']) : '', 'sortorder' => isset($post['sortorder']) ? trim($post['sortorder']) : 'ASC')); $response = array('page' => $data['page'],'total' => $data['total'],'rows' => array()); foreach($data['records'] as $record){$response['rows'][] = array( 'id'=> $record['id'], 'cell' => array( 'id' => $record['id'], 'issueName' => $record['issueName'] ));} $this->render_view(_default', array('locals' => array( 'response' => $response )));exit(0); }

Step 4: Now we will add css and js library file into head section of view.

123

<link rel='stylesheet' id='css-flexigrid-css' href='http://localhost/test/css/flexigrid.css?ver=3.4.2' type='text/css' media='all' /><script type='text/javascript' src='http://localhost/testjs/jquery.base64.js'></script><script type='text/javascript' src='http://localhost/test/js/flexigrid.js'></script>

Step 5: Create HTML table for bind grid.

1

<table class="table table-bordered table-hover" style="display: none" id="issues-listing-grid"></table>

Step 6: After adding jquery and flexi grid js file into head part of view file. We will format grid layout. we will add below code in bottom of view file.

12345678910111213141516171819202122232425262728293031323334353637

//issue var issueListingGrid = null, issueListingGrid = jQuery("#issues-listing-grid").flexigrid({ url : "<?php echo mvc_public_url(array('controller' => 'users', 'action' => 'getIssues.json')); ?>", dataType : 'json', striped : true, colModel : [{ display : 'Issue Name', name : 'issueName', width : 185, sortable : true, align : 'left' } ], showToggleBtn : false, rpOptions: [5,10, 15, 20, 30, 50], //allowed per-page values procmsg: 'Processing, Please wait ...', pagestat: 'Displaying {from} to {to} of {total} records', onSuccess:function(){ //getChangesforTeam(); }, datacol: { 'completionPercentage': function(colval) { return colval+'%'; } }, sortname : "issueName", sortorder : "asc", usepager : true, title : '<img class="icon" src="<?php echo get_stylesheet_directory_uri(); ?>/wp_home_page/images/table.png">&nbsp;Isuue List', useRp : true, rp : 5, showTableToggleBtn : true, width : 'auto', height : 'auto' });

Result:

Download Source CodeDebug: it's the locked content, but now it's revealed. Why?

Last updated