jQWidgets Forums
Forum Replies Created
-
Author
-
August 29, 2013 at 11:07 am in reply to: Inline editing issue with server-side filtered and paged grid Inline editing issue with server-side filtered and paged grid #27941
Hello,
Please do not ignore this as the issue was not resolved in jqWidgets 3.0.2.
The message of the thrown exception has changed:
Uncaught TypeError: Cannot read property ‘value’ of undefinedAugust 26, 2013 at 11:14 am in reply to: Inline editing issue with server-side filtered and paged grid Inline editing issue with server-side filtered and paged grid #27689Any updates on this?
August 23, 2013 at 10:05 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27536After loading the grid filters from the state and opening the DateTimeInput widget the dates that are used for the filter are not displayed. For example, if I am filtering for the dates of July 1st – 20th, those dates are NOT DISPLAYED.
August 22, 2013 at 1:09 pm in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27436I solved the server-side issue, but the issue with the WIDGET not appearing correctly is still relevant. Is there a way to make the WIDGET display correctly. Just answer me this and let’s be with it.
August 22, 2013 at 9:45 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27396So filtering in this way with loading grid states is not supported?
So, how should I initialise the date filter widget? I see that the date value is saved in the state’s localStorage, so there must be a wayAugust 22, 2013 at 7:54 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27377Hello,
This a modified version of your provided saveloadstate.htm example. Try filtering the Ship Date column via the widget, saving the state, reloading the page and loading the grid state.
August 21, 2013 at 11:54 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27274So that is your final answer?
August 20, 2013 at 11:51 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27186Excuse me – you mean to tell me that after loading the grid state, the calendar column filter widget does not display the filter, however applies it, is a feature not an issue? That makes the date column filter unusable when saving grid states. And that is a feature? Please reconsider your answer and give my a final reply with taking my last comments in mind. I sincerely hope this is a miscommunication issue.
August 20, 2013 at 10:07 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27182And the widget itself is displayed incorrectly (see my first post).
When can I expect any updates on this?August 20, 2013 at 7:17 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27172Ok, but when I first apply the filter it sends the date to the server in the format specified in cellsformat of the column, but when loading filter valu from the state it uses a totally different format (the one I specified in my previous post). Is this intended?
August 20, 2013 at 7:02 am in reply to: Loading grid state with date filtertype Loading grid state with date filtertype #27170jqWidgets v 3.0.0, Google Chrome
August 19, 2013 at 11:44 am in reply to: autoloadstate issue with jqWidgets 3.0 autoloadstate issue with jqWidgets 3.0 #27125So if I need the state to be autoloaded only when the page was loaded, which callback should I use?
July 24, 2013 at 8:23 am in reply to: Filtering issues when mixing addfilter and filter row Filtering issues when mixing addfilter and filter row #25664Hello!
Any info on when this is gonna be fixed?
getfilterinformation returns the false filter data as well.July 12, 2013 at 10:14 am in reply to: Filtering issues when mixing addfilter and filter row Filtering issues when mixing addfilter and filter row #25080It shouldn’t trigger an event since the text box is a totally different element. It is not created by the grid, nor by jqWidgets – I do it myself.
I tried it out without hitting enter – only with a keyup event and I still get the same results.July 12, 2013 at 8:54 am in reply to: Filtering issues when mixing addfilter and filter row Filtering issues when mixing addfilter and filter row #25065It seems I did not express myself clearly.
I have a grid which has a filter row and next to the grid there is a text input box. Hitting enter on the input box trigers the code I posted earlier (addfilter if the length of the text entered is greater than 0 and removefilter if the length is 0).
What the user does is:
– use the input box to enter a value and hits enter (triggers addfilter and applyfilters, grid makes request to server [Req. 1])
– when the grid binding is complete, enter a filter into the filter row on one of the grid columns (grid makes request to server [Req. 2])
– when the binding is complete, clear the input text box and hit enter (triggers removefilter and applyfilters, grid makes request to server [Req. 3])
– when binding completes enters a new value into the filter row. This is where grid makes a request to the server [Req. 4], but the request contains the filter from the input box which has already been removed.Req. 1
filterscount:1
groupscount:0
pagenum:0
pagesize:20
recordstartindex:0
recordendindex:15.793103448275861
package_numberoperator:and
filtervalue0:123
filtercondition0:STARTS_WITH
filteroperator0:1
filterdatafield0:package_numberReq. 2
filterscount:2
groupscount:0
pagenum:0
pagesize:20
recordstartindex:0
recordendindex:15.793103448275861
package_numberoperator:and
filtervalue0:123
filtercondition0:STARTS_WITH
filteroperator0:1
filterdatafield0:package_number
numberoperator:and
filtervalue1:111
filtercondition1:STARTS_WITH
filteroperator1:1
filterdatafield1:numberReq. 3
filterscount:1
groupscount:0
pagenum:0
pagesize:20
recordstartindex:0
recordendindex:15.793103448275861
package_numberoperator:and
filtervalue0:111
filtercondition0:STARTS_WITH
filteroperator0:1
filterdatafield0:number
numberoperator:and
filtervalue1:111
filtercondition1:STARTS_WITH
filteroperator1:1
filterdatafield1:numberReq. 4
filterscount:2 <– this should be 1
groupscount:0
pagenum:0
pagesize:20
recordstartindex:0
recordendindex:15.793103448275861
package_numberoperator:and
filtervalue0:1111
filtercondition0:STARTS_WITH
filteroperator0:1
filterdatafield0:number
numberoperator:and
filtervalue1:123 <– this should not be here
filtercondition1:STARTS_WITH
filteroperator1:1
filterdatafield1:package_number -
AuthorPosts