jQWidgets Forums
Forum Replies Created
-
Author
-
September 15, 2020 at 6:39 pm in reply to: Delete row issue when using grid group mode Delete row issue when using grid group mode #113081
Hi, Hristo, yes, I resolved the issue, thanks.
September 15, 2020 at 7:55 am in reply to: Delete row issue when using grid group mode Delete row issue when using grid group mode #113075Hi, I just found that I should use
getboundrows
method instead ofgetrows
. And use theuid
fromgetboundrows
fix my problem.September 15, 2020 at 6:38 am in reply to: Delete row issue when using grid group mode Delete row issue when using grid group mode #113074UPDATE:
I forgot to mention that after delete, I have updated thelocaldata
property in grid’s source object, but still not work.September 9, 2020 at 5:10 am in reply to: New added row disappear if resize the screen in jqxgrid New added row disappear if resize the screen in jqxgrid #113039Hi, Martin, I have one more question about reordering columns.
After I drag a column to the other positions, some columns’ order got changed. But after I collapse the card and open again, the columns’ order back to the old order. Should I update the grid’scolumns
sequence when thecolumnreorder
event is triggered?September 9, 2020 at 3:17 am in reply to: New added row disappear if resize the screen in jqxgrid New added row disappear if resize the screen in jqxgrid #113038Hi, Martin, about ‘update the source’, do you mean update the ‘localdata’ property inside source?
September 4, 2020 at 9:29 pm in reply to: New added row disappear if resize the screen in jqxgrid New added row disappear if resize the screen in jqxgrid #112995I found this issue is not only happen in ‘addrow’, but also in ‘deleterow’.
In deleterow function, I have the same structure as addrow function as I mentioned above in the first post.August 4, 2020 at 6:49 am in reply to: Render speed issue if use 5 grids in one page Render speed issue if use 5 grids in one page #112557Hi, Hristo, thanks for you suggestion, I will try it.
July 31, 2020 at 6:52 pm in reply to: "getEverPresentRowWidgetValue" is not working "getEverPresentRowWidgetValue" is not working #112537Hi, Hristo, thanks for you reply.
Could you please provide a way to recognize column position where the user has typed? I tried to use the event callback from addEventHandle, but both of pageX and pageY areundefined
.And I have one more question about the render speed issue if use multiple jqxgrids in one page, and I created a new post: https://www.jqwidgets.com/community/topic/render-speed-issue-if-use-5-grids-in-one-page/, could you please help? Thanks.
July 30, 2020 at 7:36 pm in reply to: "getEverPresentRowWidgetValue" is not working "getEverPresentRowWidgetValue" is not working #112526Hi, Hristov, thanks for you answer, but I don’t think using jqxTooltip is a good idea because in your example, you are using static mouse coordinate, but after I check this post, I found we can not get the dynamic grid cell coordinate, please check: https://www.jqwidgets.com/community/topic/clicked-cell-position/
July 29, 2020 at 10:28 pm in reply to: "getEverPresentRowWidgetValue" is not working "getEverPresentRowWidgetValue" is not working #112517Hi, Hristo, could you please provide some examples about the
valueChanged
and the way of showingtooltip
base on my example?
Also I found an issue when usingcreateEverPresentRowWidget
. If my current route islocalhost:9000/#product/${productId}
, then I select a date from the date column which created bycreateEverPresentRowWidget
, and click “Add”. In source’saddrow
callback function I make an add-row request, then insert the new row into grid if the request is success. The request is success but the page is redirected tolocalhost:9000/#
. You can also check this issue here. You can edit the Stackblitz right side browser’s url to thishttps://github-r2eepm.stackblitz.io/#/product/123
, then select a date and click “Add”, the page will redirect tohttps://github-r2eepm.stackblitz.io/#
.So I have two issues that need to be resolved:
1. The error when usingvalidateeverpresentrowwidgetvalue
andcreateEverPresentRowWidget
together in column config;
2. The redirect issue I mentioned above.Thanks.
July 29, 2020 at 6:22 am in reply to: "getEverPresentRowWidgetValue" is not working "getEverPresentRowWidgetValue" is not working #112506Hi, Hristo, thanks, I really need that solution.
July 28, 2020 at 6:57 am in reply to: ever present row "add" event ever present row "add" event #112497Hi, Hristo, could you please provide an example about using tooltip in
validateEverPresentRowWidgetValue
? ThanksJuly 27, 2020 at 5:51 pm in reply to: "getEverPresentRowWidgetValue" is not working "getEverPresentRowWidgetValue" is not working #112493Hi, Hristo, thanks for replying my question!
I made some changes based on your example to reproduce the problem, please check this example.
Please check line 70, if I usevalidateeverpresentrowwidgetvalue
inside column config(even if this function only return true), then click “Add” button, will cause the error I mentioned at the beginning:ERROR Error: G.addnewrowwidget.attr is not a function
. If removevalidateeverpresentrowwidgetvalue
, the error will gone. But Actually I need this one to implement the ever present row validation.
Could you please check this issue? Thanks.July 25, 2020 at 5:37 am in reply to: ever present row "add" event ever present row "add" event #112485Hi, Hristo, thanks for your response. It’s help!
July 24, 2020 at 5:53 am in reply to: ever present row "add" event ever present row "add" event #112477For the first point I asked, because in ever present row, user can make multiple inputs in different columns first, then click “Add” button from any one of the columns, then a new row with multiple columns’ value will be added. So what I want to know is how to get the whole row’s data after click the “Add” button.
I search in the document, and tried “getEverPresentRowWidgetValue” inside column’s config, but this one can only get one column’s value.
Please let me know how to implement this, thanks. -
AuthorPosts