jQWidgets Forums
jQuery UI Widgets › Forums › Grid › Custom sort option and Grid Sorting option disable for single comumn
This topic contains 26 replies, has 5 voices, and was last updated by Peter Stoev 12 years, 1 month ago.
-
Author
-
August 2, 2012 at 12:11 pm Custom sort option and Grid Sorting option disable for single comumn #6533
Please let me know if we can get checkbox value or at least I need to get index row values. or please help me to custom html checkboxes remain checked even I move vertical scroll bar of grid.
August 2, 2012 at 12:45 pm Custom sort option and Grid Sorting option disable for single comumn #6534The checkbox’s checked value is bound to the cell’s value and should return true or false as the column is boolean in the code I sent you. To get the cell’s value, you should you the jqxGrid’s ‘getcellvalue’ method. If you want to get some other values on the same row, use the ‘getrowdata’ method which has 1 param – the row’s index and returns an array with all cell values in a row.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comAugust 3, 2012 at 6:12 am Custom sort option and Grid Sorting option disable for single comumn #6550Hi Peter,
Thank you. I almost done now – one error popup – I did checkall/uncheckall functionality done successfully. But checkall are checked only current screen (current grid view records without moving scroller) when I move vertical scroll down it seem other checkboxes are not checked with checkall functionality. I tried to find solution, I seen I cannot get total records count by using,
var rowscount = $(“#jqxgrid”).jqxGrid(‘getdatainformation’).rowscount;I have more than 200+ records and it showing me only count 54 or less every time. Also I got js error in consule
TypeError: $(“.summary_” + i).attr(“id”) is undefinedvirtually there are all id comes dynamically and they present. it seems issue occurred with items which are comes next to item when we move down vertical scroll . as we get 54 total count of items – so loop executed for 54 rows – but actually there are only 15 records active on current grid. error occurred with items that are next to last item ( = after scroller movedown)
Please help how can i resolve this error.
Thanks again.
August 3, 2012 at 6:20 am Custom sort option and Grid Sorting option disable for single comumn #6551You can’t get the records with jQuery. You should use the Grid API. jqxGrid does not create HTML element for each record. Did you try the sample I sent you? In the sample, clicking the button checks all checkboxes and the check state is checked even when the user scrolls down or up.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comAugust 3, 2012 at 8:40 am Custom sort option and Grid Sorting option disable for single comumn #6553Hi Peter,
We fixed it. Thank you for your quick response always and support, 5 star rating to your response and JQwidget API.
Regards,
WaveTeam.November 21, 2012 at 1:02 pm Custom sort option and Grid Sorting option disable for single comumn #11304Hi Peter,
Please help me
To disable the sorting and filtering of a column, i have set the column’s sortable and filterable properties to false.
But when i mover hover on the column, filter icon is still visible.. How to hide the filter icon??
November 21, 2012 at 1:17 pm Custom sort option and Grid Sorting option disable for single comumn #11306The filter icon is not displayed on mouse over. It is either always displayed depending on the value of autoshowfiltericon property or displayed when a filter is applied. May be you need to disable the columns menu which is displayed on mouse over? If that’s your scenario, set the columnsmenu property of jqxGrid to false.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comApril 16, 2013 at 6:28 am Custom sort option and Grid Sorting option disable for single comumn #19331Peter,
Checkall functionality is not working for custom row selection grid which gets data on request i.e if we use virtualmode: true with pagination, sorting. If I am mistaken, Please provide us an example.
April 16, 2013 at 6:34 am Custom sort option and Grid Sorting option disable for single comumn #19334Hi vijaybabu,
At present, we do not have such example. We will consider adding such in the future versions.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comApril 16, 2013 at 8:44 am Custom sort option and Grid Sorting option disable for single comumn #19342Peter,
There is a bug in the Checkall functionality of JQXGrid. The function does not work properly for custom row selection grid which fetches data on request (i.e if we use virtualmode: true with pagination, sorting). Please let us know if this is to be fixed earlier.
April 16, 2013 at 9:10 am Custom sort option and Grid Sorting option disable for single comumn #19345Peter
I am also facing the same issue.I have used custom row selection example but it gives error.Please provide a solution for the same
April 16, 2013 at 9:45 am Custom sort option and Grid Sorting option disable for single comumn #19351Hi vijaybabu(shivanidixit),
There is an online example available which works fine on our website. You may use it as a getting started.
We do not have sample for virtual paging + custom selection. We will consider adding such example in the future.P.S. vijaybabu(shivanidixit), please do not double post for the same thing in the future.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com -
AuthorPosts
You must be logged in to reply to this topic.