jQWidgets Forums
Forum Replies Created
-
Author
-
April 7, 2016 at 3:11 am in reply to: Grid re-rendered on Ajax call Grid re-rendered on Ajax call #83211
Hi Peter,
From your answers I got clue that you don’t want to understand and answer the solution. I told you that I am not performing any operation on grid data and Ajax call is not related to any event on grid. It’s a separate call doing noting with the grid but you are stuck with your answer. So I am not going to ask you again.
I am replying again because you are referring someone else as me. If I had to ask again I would have added comment. So instead of putting absurd comments put more focus on understanding end user’s problem or let other peers answer.
Thanks,
GunjanApril 6, 2016 at 7:27 am in reply to: Grid re-rendered on Ajax call Grid re-rendered on Ajax call #83185Hi Peter,
I am not refreshing grid data. I am aware that grid data refresh will cause Grid to re-render. As you can see in above code snippet, even if I put only an alert in the success callback it’s causing grid to re-render.
Thanks,
GunjanApril 6, 2016 at 6:49 am in reply to: Grid re-rendered on Ajax call Grid re-rendered on Ajax call #83179Hi Peter,
I understand that on scroll, change page, filter or sort event grid will re-render itself and make Ajax call to load new data. In our case grid is not making Ajax call rather it’s only calling rendered callback method only. We are not doing any manipulation of grid. We are just making an Ajax call on a button click using below code snippet. After execution of success callback method of Ajax call, grid is calling rendered callback method which is not required as there was no operation performed on the grid. Can you please suggest solution for it.
$.ajax({ type: "POST", url: url, data: data, success: function (data) { alert(data); } });
January 15, 2016 at 7:07 am in reply to: Persist selected filter items in server side grid Persist selected filter items in server side grid #80412Yes Peter. Grid data has been reloaded using updatebounddata with “filter” argument.
Thanks,
GunjanHi Vladimir,
It didn’t work with loadComplete or beforeLoadComplete callbacks. My code is as below:
var dataAdapter = new $.jqx.dataAdapter(source, { loadComplete: function (records) { source.sort = customsort; } });
Thanks,
GunjanOctober 30, 2015 at 12:47 pm in reply to: Issue with pagination and grouping in virtualmode Issue with pagination and grouping in virtualmode #77570Issue has been resolved.
dataAdapter.records
was holding blank objects corresponding tono of records * no of pages
. Updatedrendergridrows
method to return only non-blank objects.Thanks,
GunjanOctober 29, 2015 at 7:35 am in reply to: Issue with pagination and grouping in virtualmode Issue with pagination and grouping in virtualmode #77482Hi Dimitar,
In the demo link only server side pagination has been used. Can you please also provide demo link for server side pagination with
groupable: true
and value forgroups
property provided.Thanks,
GunjanOctober 29, 2015 at 3:22 am in reply to: Issue with pagination and grouping in virtualmode Issue with pagination and grouping in virtualmode #77468Hi Dimitar,
I am doing pagination at server side. Grouping is done at client side only on the records returned from server. For 1st page it’s working fine. For next page onwards it’s not working.
Thanks,
Gunjan -
AuthorPosts