ParamQuery grid support forum
General Category => Help for ParamQuery Grid (free version) => Topic started by: Iris on August 15, 2016, 03:03:48 pm
-
Use Demos-Basics-Json data.
1.Remove data: data from obj.dataModel
2. Add this to the end of code: $grid.pqGrid("option", "dataModel.data", data);
It didn't work, just shows 'No rows to display', please advise me, thanks in advance.
-
The grid needs to be refreshed after setting data.
http://paramquery.com/pro/tutorial#topic-refreshView
-
Many thanks! I'll have a try.
The grid needs to be refreshed after setting data.
http://paramquery.com/pro/tutorial#topic-refreshView
-
Thank you very much :), I add below code to the end, and it worked, so happy, thanks for helping.
$grid.pqGrid( "refreshDataAndView" );
-
Hi
I am using angularjs PQ grid for displaying data. PQ grid is hide initially by ng-show as follow.. after some ajax request it show the div
but grid showing no record. if i click sorting or maximize then it show all record. pls help anybody
<div id="divStep2" ng-show="vm.GridDisplay">
<pq-grid options="vm.gridOptions" style="margin:auto;"></pq-grid>
</div>
$http.post(varURL + 'Service.svc/reQList', TracesLogin).success(function (data) {
if (data.RequestDownloadListResult.Response == "0") {
vm.LoginDisplay = false;
vm.GridDisplay = true;
vm.Cookies = data.RequestDownloadListResult.Cookies;
var jsonData = JSON.parse(data.RequestDownloadListResult.ResponseData);
vm.myData = jsonData.rows;
} else {
vm.RefreshCaptcha();
vm.CaptchaCode = '';
alert(data.RequestDownloadListResult.Message);
}
-
Please try this:
vm.myData = jsonData.rows;
//add this
$timeout(function(){
vm.gridOptions.grid.refresh();
});
-
thanks very much it works