I have to refresh the grid after deleting the data in the current page. But paging bar not refreshing and the current page not changing. I used the following code,
grid.getStore().reload();
Please help me..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Reload method of store “Reloads the store using the last options passed to the load method.”
You can pass object containing options which may override the options passed to the previous load call.
refer : Ext.data.Store-method-reload
try :
grid.store.reload({params:{start:0,limit:10}})