jQWidgets Forums
Forum Replies Created
-
Author
-
April 20, 2024 at 4:43 am in reply to: BUG: jqxDateTimeInput ignores format when TYPING BUG: jqxDateTimeInput ignores format when TYPING #134648
Hi Peter,
Adding “../../jqwidgets/globalization/globalize.js” worked for me.
Thank you. Very much appreciated!
Rob
April 19, 2024 at 3:09 am in reply to: BUG: jqxDateTimeInput ignores format when TYPING BUG: jqxDateTimeInput ignores format when TYPING #134640Hello,
I have run into the same/similar issue when using the jqxDateTimeInput.I am using JQW v17.0.1.
I have two fields on a form – #fromDate and #toDate. Both get initialized to today’s date. User can change.
const dateProps = {width: 140, height: 30, formatString: 'MM/dd/yyyy', showFooter: true, allowNullDate: false } $("#fromDate").jqxDateTimeInput(dateProps); $("#toDate").jqxDateTimeInput(dateProps);
When I select a date from the pop-up it works fine. If I paste a date into the input field it pastes properly.
However, when I type directly into the date input field it just ZEROES out the field and then I end up with 01/01/1900
This occurs on both input fields.
I have followed the example but am lost as to why this might happen. Is there anything wrong with my initialization?
Thanks for your help.
RobOctober 25, 2023 at 4:43 am in reply to: Disappearing rows in grid Disappearing rows in grid #133822Hi,
I successfully loaded v17.01 and it seems the issues is resolved.I no longer see any disappearing rows in Chrome whether hardware acceleration is ON or OFF.
Thank you for the quick fix!
Rob
October 25, 2023 at 4:18 am in reply to: Disappearing rows in grid Disappearing rows in grid #133821Hi,
Can you let us know if this issue was fixed in v17.01 dated Oct 19,2023 ?Thanks!
RobOctober 13, 2023 at 3:17 am in reply to: Disappearing rows in grid Disappearing rows in grid #133752Thanks to the other users for their feedback – sanity check, you know! And yes, no issues w/Edge. While demoing I have to make sure I use this browser. Hopefully we can get a resolution soon.
October 11, 2023 at 7:54 am in reply to: Disappearing rows in grid Disappearing rows in grid #133737Hi,
When I set Chrome settings for ‘hardware acceleration’ OFF it happens in any grid view. I’ve done it in my own apps as well as some of yours from the demos. There is definitely a timing to it, but it happens pretty consistently. When I change ‘hardware acceleration’ to ON the problem seems to resolve. The only issue is that I cannot rely on the fact the my users will have ‘hardware acceleration’ ON as it’s been reported that it can cause other browser issues.Really not sure what other info I can give you, but my users witnessed it first, then I witnessed it.
If you have any other suggestions, I’m open to them.
Thanks.
RobHello again – I am not sure if the last message got posted….
Hi,
I downloaded and installed v17 with the same results.
This is so distressing and one of the worst issues I have reported on the forum.To confirm, have about 19 rows inside the grid. Sometimes if I hover over another jq-button on page, or even more so, when I hover over another Chrome tab at the top, the rows in the grid literally disappear from the view! If I hover over where the rows are supposed to be they start to paint back in one-by-one. I can do this almost at will when using Chrome. I don’t see the same behavior when using Edge browser.
I have done this with my own app and jsfiddle using some of your sample code.In Chrome I have ‘hardware acceleration’ set to OFF, as I read that this may cause visual problems for other graphics (outside of jqwidgets)
Any ideas on this?
See images below.
https://ibb.co/rxGQLYz
https://ibb.co/gD8q24q
https://ibb.co/rkW1QrbRob
Hi,
Actually I am using/evaluating v16 after having issues with v14. I know I posted something on the forum which I cannot find now.I will give v17 a shot and reply back.
Thank you.
RobFYI: it seems the solution to this problem is to refresh the grid after applying the columnsresize value.
I have since created a function that doessetColumnsResize = bool => { $("#jqxgrid").jqxGrid({columnsresize: bool}); $("#jqxgrid").jqxGrid.refreshGrid(); }
The post above was not helpful and seems more like an advertisement.
Please refer to fiddle https://jsfiddle.net/rfossella/a45uret1/69/
October 5, 2023 at 9:27 am in reply to: Issue with jqxdata.export.js Issue with jqxdata.export.js #133702I have a question regarding programmatically turning ON/OFF the ability to resize columns.
I initially set it to true and resizing is allowed. I use code from your API ref to turn it off
$(‘#jqxGrid’).jqxGrid({ columnsresize: false});
I check that the value has changed – $(‘#jqxGrid’).jqxGrid(‘columnsresize’); >> false
However, I can still resize the columns. The code seemingly has no effect. Can you please tell me what I am doing wrong?
Please see this fiddle:
https://jsfiddle.net/rfossella/a45uret1/57/Thank you
RobertHi Ivan,
Following up with a fiddle you can test with: https://jsfiddle.net/rfossella/a45uret1/43/So again note, if I am in GRID mode and highlight the first row and CTRL-C, then paste, the row is correctly copied.
If I switch to CARDVIEW and highlight the text on the third cell and CTRL-C, then paste, the same first row of data is still copied. I also verified that if I go back to the grid, and simply highlight any row, then switch to cardview, highlight, and copy, it is opying the row that is currently highlighted in the grid.Hope this help to identify the issue.
Thanks.
RobHi Ivan,
That solution does not really work. Let me explain.
I have a grid with a toggle button to switch from GRID to CARD views. If I {enablebrowserselection: true} and select a row in the grid, then do a ctrl-c it does copy ALL the data in the row. I verify by paste.
If I now switch to the CARD view, and highlight part of the data inside a card – e.g. the first two rows/columns of that cardview/table, and then press ctrl-c, it continues to copy the LAST selected row from with the grid. It does not copy the selection I highlighted inside the cardview. Very odd behavior, indeed.
Is there something else I need to activate or “clear” before trying to highlight and copy from the cardview? Also, for the second part of my question, can I add a right-click menu option for the cardview – e.g. if I right-click in the cardview cell, and pop a menu that reads “copy” and have that copy the contents of that cell.
Please let me know how I might proceed.
Thanks for your time!
RobJuly 23, 2023 at 10:51 pm in reply to: JQXGrid error when sorting and grouping JQXGrid error when sorting and grouping #133401Thank you. I had demos.js loaded in for testing and it was overriding my ‘light’ theme w/’fluent.
Much appreciated!
Rob -
AuthorPosts