jQWidgets Forums
Forum Replies Created
-
Author
-
March 31, 2015 at 3:39 am in reply to: Issue with multiplecellsadvanced Issue with multiplecellsadvanced #69358
Hi Dimitar,
Thanks for the analysis and yes, it fixes the issue with adjacent selection but as mentioned, focus is transferred to other cells too if you try to select multiple cells. If you notice, they go blue in color.
This is a major issue since the display is affected.Any pointers on this?
Regards,
Mithil.March 30, 2015 at 9:28 am in reply to: Issue with multiplecellsadvanced Issue with multiplecellsadvanced #69314Hi Dimitar,
I am using the latest version (3.7.1).
I have created a fiddle for your reference:
http://jsfiddle.net/4zAHJ/121/Steps:
Try to select two first names.Note:
1. Cells left to the names also get selected.
2. Focus selects all the cells to the right and bottom of these cells.Do let me know if any additional details are needed.
Regards,
MithilFebruary 24, 2015 at 4:20 am in reply to: Issue with Validation when sorted Issue with Validation when sorted #67539Thanks for the help Nadezhda,
Just to confirm, current functionality is that user is allowed to sort even if the there is invalid data.
Regards,
Mithil.February 20, 2015 at 9:27 am in reply to: Issue with Validation when sorted Issue with Validation when sorted #67411Hi Nadezhda,
As you mention sorting happens only if data is valid.
What is seen is when you type -1 in quantity, it shows a validation error which is invalid data.
While validation error is seen, if you click on sort, sort happens. Ideally it should not since data is invalid.I would expect the validation message to be displayed and sort should not be allowed.
Regards,
Mithil.February 19, 2015 at 10:53 am in reply to: Issue with Validation when sorted Issue with Validation when sorted #67359Hi Nadezhda,
We are using jQWidgets version 3.6.0.
Just to confirm we are on the same page.
As mentioned, sorting is working fine. My concern is, we should not allow sorting since data is invalid.
Can we display a validation message once you click on sorting and prevent sort functionality?I will still update the latest version(3.7.0) and see if this issue persists.
Regards,
Mithil.February 19, 2015 at 10:35 am in reply to: Delimter change for multiple selection Delimter change for multiple selection #67358Thank you Nadezhda,
This was of great help…
Thanks and Regards,
Mithil.February 19, 2015 at 3:43 am in reply to: Issue with Validation when sorted Issue with Validation when sorted #67334Hi Nadezhda,
Please refer below fiddle link based on http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/cellediting.htm:
http://jsfiddle.net/8gUGD/117/Steps to reproduce:
Edit the “Quantity” field and set the value to “-1” and sort by Quantity (By clicking the “Quantity” column header), notice that it sorts and the validation is not seen, whereas if you click anything else except sorting the message is shown.This behavior is seen during pagination and filtering too.
Regards,
Mithil.January 23, 2015 at 12:42 pm in reply to: On Refresh, filter is cleared but sort field is still seen On Refresh, filter is cleared but sort field is still seen #65914Hi Peter,
If I remove sort individually, it works fine.
This causes an issue when I try to remove filter and sort at the same time.Regards,
Mithil.January 23, 2015 at 8:41 am in reply to: On Refresh, filter is cleared but sort field is still seen On Refresh, filter is cleared but sort field is still seen #65892Hi Peter,
Apology for not defining the “Refresh” button in detail.
Below mentioned are the properties that we use for the “Refresh” button on the grid:
$(“#jqxgrid”).jqxGrid(“clearfilters”);
$(‘#jqxgrid’).jqxGrid(‘clearselection’);
$(“#jqxgrid”).jqxGrid(“removesort”);
$(“#jqxgrid”).jqxGrid(“updatebounddata”);
In this case, only filter gets cleared along with the selection but sorting persists.Please note the error for the same:
Error: jqxGrid: The data is still loading. When the data binding is completed, the Grid raises the ‘bindingcomplete’ event. Call this function in the ‘bindingcomplete’ event handler.I tried putting remove sort for ‘bindingcomplete’ event handler as shown below but still sorting persists.
$(“#jqxgrid”).on(“bindingComplete”, function () { $(“#jqxgrid”).jqxGrid(“removesort”); });Thanks and regards,
Mithil.January 22, 2015 at 12:32 pm in reply to: Grid data goes blank when i edit a grid after sorting Grid data goes blank when i edit a grid after sorting #65847Hi Peter,
Thank you for the reply.
We noticed that this issue was seen when virtualmode flag was set to true.
I changed the flag to false and its working fine.I will still create a demo file and send it to you for your reference.
Regards,
Mithil. -
AuthorPosts