Forum Replies Created
-
Author
-
December 2, 2023 at 12:20 am in reply to: Grid z-index increases with more columns Grid z-index increases with more columns #134013
I have increased the modalZIndex of my windows to compensate but still interested to find out why the grid z-index is changing with more columns.
November 1, 2023 at 11:29 pm in reply to: Major flickering/redraw problems in new Chrome version Major flickering/redraw problems in new Chrome version #133877Thank you. The temp solution did not seem to work but I upgraded to the latest version and it seems to have fixed it.
October 31, 2023 at 9:35 pm in reply to: Major flickering/redraw problems in new Chrome version Major flickering/redraw problems in new Chrome version #133871I am now upgraded to Chrome version 119.0.6045.106 and still the same problem. I have now reproduced on 3 machines but the other two are via remote desktop so displaying on the same physical machine. I just tried on another separate physical machine and could not get the problem so maybe a graphics problem? I did try turning off the hardware acceleration and it did not affect it.
October 31, 2023 at 8:47 pm in reply to: Major flickering/redraw problems in new Chrome version Major flickering/redraw problems in new Chrome version #133869I have now got it to happen on another machine. Additionally to hovering the mouse over the icons mentioned above also hover the mouse over the close X icon on the browser page tab tab until it pops up a box and keep going back to the other icons. Eventually you may see the tick box flicker.
Another place you can see the problem.
1. On that same page go to Filtering->Custom Filtering
2. Look at the list of field names with the tick boxes.
3. Move the mouse over the icons mentioned above and the page close X icon (which shows the popup) and they will flicker and maybe sometimes event get all blanked out.October 31, 2023 at 8:11 pm in reply to: Major flickering/redraw problems in new Chrome version Major flickering/redraw problems in new Chrome version #133868A bit more info on this. I have tried a few other machines and it does not seem to be happening so I am confused.
September 4, 2023 at 1:58 pm in reply to: jqxDateTimeInput full is swapping day and month jqxDateTimeInput full is swapping day and month #133569If you are still not seeing it then maybe it is affected by the browser regional settings (I am in the UK). But should not be since I have specified the format string in the code.
September 4, 2023 at 12:58 pm in reply to: jqxDateTimeInput full is swapping day and month jqxDateTimeInput full is swapping day and month #133568I just clicked on the example again:
1. Put cursor in date field
2. Type in 01/02/2023
3. Press TAB to go out of the field
4. It changes to 02/01/2023So it is not working right.
Thanks for your response. This is a long term question so I’ll do some more experimenting with the control and might be in touch again.
December 10, 2021 at 6:39 pm in reply to: jqxTextArea scrollbars not showing when on multiple tabs jqxTextArea scrollbars not showing when on multiple tabs #121206December 10, 2021 at 6:32 pm in reply to: jqxTextArea scrollbars not showing when on multiple tabs jqxTextArea scrollbars not showing when on multiple tabs #121205But your new version in the fiddle is not working. I just see the bullet points for the tabs.
December 9, 2021 at 1:35 pm in reply to: jqxTextArea scrollbars not showing when on multiple tabs jqxTextArea scrollbars not showing when on multiple tabs #121195I have reproduced this here
All tabs have a notes box with 10 lines but only the first two tabs show scrollbars.
On the remaining tabs you have to put the text cursor into the notes and move it for the scroll bar to appear.
October 28, 2021 at 8:02 pm in reply to: How to tell if a tab is enabled? How to tell if a tab is enabled? #120999Sorry I don’t see the jqxTabs control in your example?
In addition to telling if a tab is enabled, how can I get a count of the tabs?
Thanks
Thank you. The “white-space: initial!important;” bit is what I was missing to make it work.
June 24, 2021 at 3:59 pm in reply to: Displaying chevrons etc in data Displaying chevrons etc in data #120439I have found in cellsrenderer it is no good to just return the value because it will not be aligned in the row. You must return something like a div with something like margin: 5px.
Also if you don’t return a div and just return the value it seems to display safely but if you refresh your data it will end up running an embedded potential XSS script. I tried to make a demo of this but I can’t seem to embed the script in JSFiddle or even type it in here without it getting mangled.
So it only seems safe if you return a div.
Rather than make me create a div with formatting etc it would have been better for you to have provided a boolean switch on the column specifying to HTML encode the data value or not.
June 8, 2021 at 1:33 pm in reply to: Displaying chevrons etc in data Displaying chevrons etc in data #120345Can you please explain how your modified example is working because the cellsrenderer is not doing any extra processing. Just returning the value passed to it. So how is this different than just binding to the data field:
cellsrenderer: (row, columnfield, value) => {
return value;
}All of this is important for XSS protection because what if someone enters a script into a data value. Your other controls such as text input field seem to cope with this ok without me having to Html encode the data.
XSS is a big topic and it would be useful if you one have an article explaining how your controls are affected by it and which ones may need Html encoding or not.
-
AuthorPosts