jQWidgets Forums
Forum Replies Created
-
Author
-
March 4, 2015 at 8:59 pm in reply to: Disable Escape Key Close Event Disable Escape Key Close Event #68042
Hi Dimitar, thank you that works very well. For others who might be interested, i added this logic within a loop so that all my windows will have the ESC key disabled when the page is loaded.
Tri
// for each window id, override the esc key usage
$.each($(‘.jqx-window’), function() {
$(‘#’+$(this).attr(‘id’)).jqxWindow({
keyboardCloseKey: ”
});
});March 3, 2015 at 4:36 pm in reply to: Disable Escape Key Close Event Disable Escape Key Close Event #67951Hello, does anyone has feedback on this issue? Even though the close buttons are hidden using the below. The users can still close the panel by using the ESC key. Is there a way to disable usage of the ESC key to prevent users from closing the docking panel? Thanks.
$(‘#’+dockingId).jqxDocking(‘hideAllCloseButtons’);
Tri
September 17, 2014 at 1:05 am in reply to: jqxMenu Not Closing on Mouse Exit jqxMenu Not Closing on Mouse Exit #59592Peter, thanks. I finally got it to work but changing summer.css file.
Tri
September 13, 2014 at 1:46 am in reply to: jqxMenu Not Closing on Mouse Exit jqxMenu Not Closing on Mouse Exit #59478Peter, so to better manage the AutoOpen, we decided to turn the AutoOpen feature off and activate showTopLevelArrows. With the Summer theme during the onmouseover, the down arrow blend in with the dark selected color of the menu item. Is it possible to change the down arrow on mouse over to use the white icon? I noticed that the text is white on mouseover so if the down arrow being white would blend in well.
The only way for me to change the icon to white is to change the below in jqx.base.css. However, this also change the down arrow icon at all times include when the mouse is not on top of it.
.jqx-icon-arrow-down, .jqx-icon-arrow-down-hover, .jqx-icon-arrow-down-selected
{
background-image: url(‘images/icon-down-white.png’);
background-repeat: no-repeat;
background-position: center;
}Any help is appreciated. Thanks.
Tri
September 12, 2014 at 2:24 pm in reply to: jqxMenu Not Closing on Mouse Exit jqxMenu Not Closing on Mouse Exit #59471Peter, the menu does not automatically close on mouse leave. if you move the mouse over the menu quickly, it does not trigger the mouse leave event and the menu stays open. Can you guys take a look to see if anything can be done? Thanks.
September 8, 2014 at 6:44 pm in reply to: jqxMenu Minimize Mouseover Auto Expand jqxMenu Minimize Mouseover Auto Expand #59275Peter, never mind on the image icon. i used the jqxMenu minimize icon and it was centered properly. We’re also ok with the summer theme background color on the icon. Now it works just the way we needed it. Thanks.
Tri
September 8, 2014 at 5:54 pm in reply to: jqxMenu Minimize Mouseover Auto Expand jqxMenu Minimize Mouseover Auto Expand #59273Peter, ok. thanks. I’m trying to use an image to mimic the minimize menu state but to have the mouseover effects. With the Summer theme, it adds a orange background when the mouse is placed over the image. Is there away to turn off the background color for the image on mouseover but have it still supported for the menu options that are shown in the menu list.
Also, my image appears to be aligned to the bottom of the menu system, is there a way to force the image to be center similar to the image used with the minimize mode of jqxMenu?
Tri
August 21, 2014 at 4:31 pm in reply to: jqxMenu Keyboard Navigation jqxMenu Keyboard Navigation #58630Hello Nadezhda, is this something that can be added or is on the roadmap? Thanks.
Tri
August 15, 2014 at 8:02 pm in reply to: jqxMenu Minimize Mouseover effects jqxMenu Minimize Mouseover effects #58423Hello Peter, thanks for responding. I see your point on the mouseover option while in minimize mode. I think some mobile apps are enabling collapse/expand capabilities based on touch screen so there is value to having such capabilities (perhaps based on configuration option). I sent you a separate email to support@jqwidgets.com regarding customization options for such a capability. Can you let me know if this is something that your firm would be interested in doing? Thanks again.
Tri
-
AuthorPosts