jQWidgets Forums
Forum Replies Created
-
Author
-
May 19, 2017 at 4:12 pm in reply to: real time update on cell values real time update on cell values #93769
i implemented ‘updateRow’ in setInterval to update UI every 20 ms.but when user try to sort the grid.. whole page becomes unresponsive.is this because i am calling ‘updateRow’ while sorting is being under process ?? how can i fix it ??
May 17, 2017 at 3:02 pm in reply to: custom sorting with in built custom sorting with in built #93698well. i do have question.when we use in-built sorting, ‘bindingComplete’ does not get called. but when we use custom sorting. it does.. is there a way to avoid this and still use custom sorting ?
May 17, 2017 at 2:57 pm in reply to: real time update on cell values real time update on cell values #93697i need old rows before sorting on current page.. so that on serverside,i need to process.. and then after sort.. i will have new set of data on same page.. so i will get new visible rows?
how can i get old data (only displayed on current page) before sorting
May 17, 2017 at 12:40 pm in reply to: grid not calling pager callback grid not calling pager callback #93691well.. documentation says following
——-
pager: function (pagenum, pagesize, oldpagenum) {
// callback called when a page or page size is changed.
}
——-and i dont see console.log when i change page..so according to API it should have oldpagenum
May 16, 2017 at 8:36 pm in reply to: custom sorting with in built custom sorting with in built #93656never mind.. ignore this.. i figured out a way
May 16, 2017 at 2:27 pm in reply to: real time update on cell values real time update on cell values #93639thanks for reply. i got approval from our business manager to use paging.. so that should improve performance.also i am planning to use updaterow method. but do you suggest that i keep collecting data for certain period of time.. and then update grid using ‘updaterow’ method ?
also is there a way i can get visible rows beforesort.. (like old visible rows).. then after sort.. i get new set of rows as a result of sort or filter?again thanks for help.
May 15, 2017 at 7:34 pm in reply to: real time update on cell values real time update on cell values #93613thanks for reply. but i do have question about pagination.if we use that pagination, does it only render visible rows on page ? how can i get only visible rows on any given page. and how would this impact when user performs sort or filter ? i still would have to use ‘setcellvalue’ to update data.
May 15, 2017 at 7:30 pm in reply to: mouse wheel scroll speed vs trackpad mouse wheel scroll speed vs trackpad #93612this is a big complains from our customers as well.. is there a way we can control.. or may be jqxwidget can make scrolling better on mac >
May 15, 2017 at 3:15 pm in reply to: setcellvalue vs updaterow vs updatebounddata setcellvalue vs updaterow vs updatebounddata #93607i am using ‘beginupdate’ and ‘endupdate’ because i am updating multiple cells on same row.. but performance is not good.. i already went to other link that you suggested.but that does not give me solution.
i was thinking of using ‘datatable’.. but i found from forum that this widget does not handle scrolling of large data set. do you think paging would help improving performance..like display 50 rows per page.. the only question i have.. using pageing.. when user sorts.. how would i get latest rows that displays on page (after sort) and would that impact rowId ?
Thanks
May 12, 2017 at 9:54 pm in reply to: setcellvalue vs updaterow vs updatebounddata setcellvalue vs updaterow vs updatebounddata #93562one more question on same thing.. do you think by using datatable instead of jqxgrid would make difference ? (performance wise). currently because of too many updates on screen for long time. browser is becoming un-responsive. and i have to ‘force quit’,which is not acceptable at all..
May 12, 2017 at 5:10 pm in reply to: real time update on cell values real time update on cell values #93559any help please..
May 2, 2017 at 2:36 pm in reply to: treegrid virtual loading with new version update treegrid virtual loading with new version update #93256thanks.. its working for now.
April 24, 2017 at 4:07 pm in reply to: streaming data change cell values streaming data change cell values #93096i tried to call ‘updatebounddata’ after i do
$(“#jqxgrid”).jqxGrid(‘setcellvalue’, rowId, “volume”, obj.accumulatedVolume);
$(“#jqxgrid”).jqxGrid(‘updatebounddata’,’cells’);
but this is not working.. by using just “setcellvalue” it does refreshing grid. but if i use “udatebounddata” then it does not change value on screen at all..
how can i use it correctly so that it can refreshes the cell value as well..
April 21, 2017 at 3:23 pm in reply to: is this possible with data table is this possible with data table #93064just the example in the list.. meaning. with data table i want to open/close groups just like jqxgrid ?
April 19, 2017 at 6:19 pm in reply to: mouse wheel scroll speed vs trackpad mouse wheel scroll speed vs trackpad #93008here is the more info what our users are facing. this is specific to Mac os..
https://github.com/jquery/jquery-mousewheel/issues/36
that describe the issue in details. and looks like ‘wheel delta’ is not set properly in any of the jqx component. i tried jqxgrid and jqxdatatable.. they all behave same way on mac os.. windows os works fine.
-
AuthorPosts