jQWidgets Forums
Forum Replies Created
-
Author
-
August 26, 2016 at 9:13 am in reply to: custom sort does not hold selected record custom sort does not hold selected record #86868
Hi Christopher,
but I need to have the time zone there. Is it possible to have column of type date with time zine presented?
Thank you.
Kind regards,
MatejAugust 22, 2016 at 1:28 pm in reply to: custom sort does not hold selected record custom sort does not hold selected record #86746For example I have column with datetime but it is type of string because the date time column contains also time zone information e.g 22.08.2016 UTC. And for correct sorting by datetime I have created custom function for sorting where when sorting is applied on this column the custom sorting function is sorting by an hidden column with just datetime without time zone information. Without this custom sort function the sorting is not correct because it is sorted like a string instead of like a date.
Any advise how to do it with working selection record after sorting will be much appreciated.
Thank you.
MatejAugust 22, 2016 at 9:39 am in reply to: custom sort does not hold selected record custom sort does not hold selected record #86737Any suggestion how to handle this request?
Thank you.
August 18, 2016 at 12:01 pm in reply to: custom sort does not hold selected record custom sort does not hold selected record #86666Hi Christopher,
I do understand that in normal sorting it is working how I expect. But I need to have custom sorting with holding selected record.
Can you advise what do I need to add in the custom sorting function that the selected record will be selected and not the selected row.
Thank you
Kind regards,
MatejOctober 1, 2015 at 5:52 am in reply to: Render whole grid with own columns Render whole grid with own columns #76327Thank you Dimitar.
Kind regards,
MatejHi nadezhda,
thank you for exlanation.
Kind regards
MatejHi nadezhda,
I did read it, but I didn’t find out from those topics how to set time zone in datetime format.
Thanks
MatejHi,
please how can I specfie time zone in datetime format,
Is here time zone specified?
format: “yyyy-MM-ddTHH:mm:ss-HH:mm”
Thanks
Kind regards
MatejI mean the date in grid column.
August 22, 2014 at 4:42 am in reply to: DateTime type not shown correctly in column DateTime type not shown correctly in column #58655Hi Peter,
thank you for your respond
Matej
July 1, 2014 at 9:57 am in reply to: select/deselect all in checkbox selection mode select/deselect all in checkbox selection mode #56607Hi Peter,
Thanks, will do so if no other better option.
Thanks.
Kind regards,
MatejJuly 1, 2014 at 8:34 am in reply to: select/deselect all in checkbox selection mode select/deselect all in checkbox selection mode #56600Any suggestion?
Thanks.
Kind regards,
MatejJune 30, 2014 at 7:10 am in reply to: select/deselect all in checkbox selection mode select/deselect all in checkbox selection mode #56546Hi Peter,
yes you are right, I know that when I unselect it, it will point to -1, but this behaviour is for me a bit strange, I would expect, when I unselect an item it should not be in the returned list of selected indexes, but OK if it is so intended. But how can I get realy selected count of rows? Do I need to go trought the all returned rows and check where they point? Or do you have and property or method that return only selected rows?
Thanks in advance.
Kind regards,
MatejI figure out it.
var sortinformation = $('#jqxgrid).jqxGrid('getsortinformation'); // The sortcolumn represents the sort column's datafield. If there's no sort column, the sortcolumn is null. var sortcolumn = sortinformation.sortcolumn; // The sortdirection is an object with two fields: 'ascending' and 'descending'. Ex: { 'ascending': true, 'descending': false } var sortdirection = sortinformation.sortdirection; $('#jqxgrid).jqxGrid('sortby', sortcolumn, sortdirection);
June 23, 2014 at 10:44 am in reply to: set initial value and use remoteAutoComplete set initial value and use remoteAutoComplete #56228Hi Peter,
I know about that, the work around was to set the initial value in the loadComplete call back function when the data is loaded. I had to find out how to get the correct value from the component when the initial value is set.
I found also solution for my issue to get the correct value from the component. This should work. I get the corect value insted of the label(text) of the selected item.
$("#senderCb").jqxComboBox('getItem', $('#senderCb').jqxComboBox('selectedIndex')).value;
-
AuthorPosts