ParamQuery Grid
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
Help
Search
Login
Register
ParamQuery grid support forum
»
General Category
»
Help for ParamQuery Pro
»
I cannot seem to be able to hide the Loading message?
« previous
next »
Print
Pages: [
1
]
Author
Topic: I cannot seem to be able to hide the Loading message? (Read 2237 times)
tcf
Pro Deluxe
Newbie
Posts: 13
I cannot seem to be able to hide the Loading message?
«
on:
February 08, 2016, 11:03:20 pm »
I've tried doing the following :
$( "#grid" ).pqGrid( "hideLoading" );
but every time I refresh the grid using this command below the Loading message appears:
$( "#grid" ).pqGrid( "refreshDataAndView" );
Any Suggestions?
Thanks
Logged
paramvir
Administrator
Hero Member
Posts: 6310
Re: I cannot seem to be able to hide the Loading message?
«
Reply #1 on:
February 09, 2016, 09:08:28 am »
It's because refreshDataAndView() initiates a new remote request and calls showLoading() which shows the message again.
dataModel.beforeSend callback can be used to hide it whenever it's shown by refreshDataAndView()
Code:
[Select]
beforeSend: function(){
this.hideLoading();
},
http://paramquery.com/pro/api#option-dataModel-beforeSend
Logged
Print
Pages: [
1
]
« previous
next »
ParamQuery grid support forum
»
General Category
»
Help for ParamQuery Pro
»
I cannot seem to be able to hide the Loading message?