jQWidgets Forums
Forum Replies Created
-
Author
-
January 22, 2013 at 3:28 pm in reply to: Export hidden columns to XLS Export hidden columns to XLS #14059
Hi Dimitar
Is this a feature change since 2.5? I was using the exportable property previously to do this with hidden field with 2.5.
Thanks
GlenOctober 22, 2012 at 1:57 pm in reply to: textRotationAngle 270 and IE8 textRotationAngle 270 and IE8 #9851Hi Peter
Thanks. Good to know I am not going crazy.
Regards
GlenOctober 18, 2012 at 1:06 pm in reply to: Using filterRow with dynamic data Using filterRow with dynamic data #9696Hi Peter
Sorry I mistyped -it was the ‘binding complete’ which I found in your documentation
Code exampleBind to the bindingcomplete event by type: jqxGrid. $("#jqxgrid").bind("bindingcomplete", function (event) { // your code here.});
I am having the same issue as slodge except I have a knockout observablearray bound to my grid which when updated does not affect the filter dropdown
October 17, 2012 at 10:48 am in reply to: Using filterRow with dynamic data Using filterRow with dynamic data #9601I have a very similar situation to this except I am using a knockout bound data source.
It’s a great feature but if I can’t get the list to update it is worthless. From the above conversation I am not sure it refreshing the list is possible. I have tried to hook into the bindComplete event but without any luck.
October 17, 2012 at 10:26 am in reply to: Possible to access filtered data quickly? Possible to access filtered data quickly? #9600Thanks
I ended up doing this
var dataview = gridElement.jqxGrid('dataview'); var filteredRows = dataview.bounditems;
which seems to work for what I was attempting. Does getrows for the same thing?
Thanks
October 16, 2012 at 7:47 pm in reply to: Knockout and Grid – Ajax call example Knockout and Grid – Ajax call example #9570Solved the problem. It was getting the observable array set correctly in the datasource that was my downfall. Thanks
-
AuthorPosts