jQWidgets Forums

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 22 total)
  • Author
    Posts
  • in reply to: Vertical menu IE problem Vertical menu IE problem #70070

    raoul
    Participant

    Hi Nadezhda,

    As mentioned above “event.preventDefault();” does not solve the problem, did you try the provided steps that result in the issues on our end? Or does this work flawless for you?

    Different browser behaviour is a pain for developers. Sometimes it is a result of a bug in the specific browser. Regardless of what causes it, 3rd party solutions such as your awesome JQWidgets package are great because they deal with all that. As we are running in circles now and also because in your last reply you only mention FF and Chrome, I take it that in this case it doesn’t and it will not in the future.

    Otherwise please let me know.

    Thank you for your responses.

    Raoul

    in reply to: Vertical menu IE problem Vertical menu IE problem #70061

    raoul
    Participant

    Hi Nadezhda,

    The empty rows were only added to see what happens when the JQWidgetds menu is not positioned exactly at the top. The same thing happens when using any other html making the menu appear inside the page, rather then pixel perfect at the top.

    “Or just display the entire menu”, what if the menu doesn’t fit on the page due to either it’s position on the page and / or height of the menu? How can we display the entire menu in this case?

    Is your first reply

    Thank you for your feedback. We reproduced the reported issue and will fix it as soon as possible.

    still scheduled?

    I just need to know whether this component will work correctly cross browser.

    Thanks,
    Raoul

    in reply to: Vertical menu IE problem Vertical menu IE problem #69987

    raoul
    Participant

    Thank you for the reply!

    I tried it and it seemed to work but after doing more tests it still seems unreliable. In the below example the page still scrolls to the top of the menu. The only difference is that we added some empty lines at the top and items are copied to make the menu larger.

    Some things we seem to experience on our end:

    1. after loading the page and moving for example over the first “About Us”, the menu jumps to the top
    2. after loading the page and scrolling downwards and move over an item, the menu jumps to the top
    3. after step 1 and 2, scrolling downwards again, everything works fine

    Can you try this? Any ideas?

    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <title></title>
        <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
        <script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script>
        <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
        <script type="text/javascript" src="../../jqwidgets/jqxmenu.js"></script>
    </head>
    <body>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
        <div id='content'>
            <script type="text/javascript">
                $(document).ready(function () {
                    // Create a jqxMenu
                    $("#jqxMenu").jqxMenu({ width: '120', mode: 'vertical' });
                    $("#jqxMenu").on("focus", function (event) {
                        event.preventDefault();
                    });
                    $("#jqxMenu").css('visibility', 'visible');
                });
            </script>
            <div id='jqxWidget' style='width: 110px;'>
                <div id='jqxMenu' style="visibility: hidden;">
                    <ul>
                        <li><a href="#">Home</a></li>
                        <li>About Us
                            <ul>
                                <li><a href="#">History</a></li>
                                <li><a href="#">Our Vision</a></li>
                                <li><a href="#">The Team</a>
                                    <ul>
                                        <li><a href="#">Brigita</a></li>
                                        <li><a href="#">John</a></li>
                                        <li><a href="#">Michael</a></li>
                                        <li><a href="#">Peter</a></li>
                                        <li><a href="#">Sarah</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Clients</a></li>
                                <li><a href="#">Testimonials</a></li>
                                <li><a href="#">Press</a></li>
                                <li><a href="#">FAQs</a></li>
                            </ul>
                        </li>
                        <li>Services
                            <ul>
                                <li><a href="#">Product Development</a></li>
                                <li><a href="#">Delivery</a></li>
                                <li><a href="#">Shop Online</a></li>
                                <li><a href="#">Support</a></li>
                                <li><a href="#">Training & Consulting</a></li>
                            </ul>
                        </li>
                        <li>Products
                            <ul>
                                <li><a href="#">New</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Used</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Featured</a></li>
                                <li><a href="#">Top Rated</a></li>
                                <li><a href="#">Prices</a></li>
                            </ul>
                        </li>
                        <li><a href="#">Gallery</a></li>
                        <li><a href="#">Events</a></li>
                        <li><a href="#">Careers</a></li>
                        <li><a href="#">Contact Us</a>
                            <ul>
                                <li><a href="#">Enquiry Form</a></li>
                                <li><a href="#">Map & Driving Directions</a></li>
                                <li><a href="#">Your Feedback</a></li>
                            </ul>
                        </li>
                                            <li><a href="#">Home</a></li>
                        <li>About Us
                            <ul>
                                <li><a href="#">History</a></li>
                                <li><a href="#">Our Vision</a></li>
                                <li><a href="#">The Team</a>
                                    <ul>
                                        <li><a href="#">Brigita</a></li>
                                        <li><a href="#">John</a></li>
                                        <li><a href="#">Michael</a></li>
                                        <li><a href="#">Peter</a></li>
                                        <li><a href="#">Sarah</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Clients</a></li>
                                <li><a href="#">Testimonials</a></li>
                                <li><a href="#">Press</a></li>
                                <li><a href="#">FAQs</a></li>
                            </ul>
                        </li>
                        <li>Services
                            <ul>
                                <li><a href="#">Product Development</a></li>
                                <li><a href="#">Delivery</a></li>
                                <li><a href="#">Shop Online</a></li>
                                <li><a href="#">Support</a></li>
                                <li><a href="#">Training & Consulting</a></li>
                            </ul>
                        </li>
                        <li>Products
                            <ul>
                                <li><a href="#">New</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Used</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Featured</a></li>
                                <li><a href="#">Top Rated</a></li>
                                <li><a href="#">Prices</a></li>
                            </ul>
                        </li>
                        <li><a href="#">Gallery</a></li>
                        <li><a href="#">Events</a></li>
                        <li><a href="#">Careers</a></li>
                        <li><a href="#">Contact Us</a>
                            <ul>
                                <li><a href="#">Enquiry Form</a></li>
                                <li><a href="#">Map & Driving Directions</a></li>
                                <li><a href="#">Your Feedback</a></li>
                            </ul>
                        </li>
                                            <li><a href="#">Home</a></li>
                        <li>About Us
                            <ul>
                                <li><a href="#">History</a></li>
                                <li><a href="#">Our Vision</a></li>
                                <li><a href="#">The Team</a>
                                    <ul>
                                        <li><a href="#">Brigita</a></li>
                                        <li><a href="#">John</a></li>
                                        <li><a href="#">Michael</a></li>
                                        <li><a href="#">Peter</a></li>
                                        <li><a href="#">Sarah</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Clients</a></li>
                                <li><a href="#">Testimonials</a></li>
                                <li><a href="#">Press</a></li>
                                <li><a href="#">FAQs</a></li>
                            </ul>
                        </li>
                        <li>Services
                            <ul>
                                <li><a href="#">Product Development</a></li>
                                <li><a href="#">Delivery</a></li>
                                <li><a href="#">Shop Online</a></li>
                                <li><a href="#">Support</a></li>
                                <li><a href="#">Training & Consulting</a></li>
                            </ul>
                        </li>
                        <li>Products
                            <ul>
                                <li><a href="#">New</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Used</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Featured</a></li>
                                <li><a href="#">Top Rated</a></li>
                                <li><a href="#">Prices</a></li>
                            </ul>
                        </li>
                        <li><a href="#">Gallery</a></li>
                        <li><a href="#">Events</a></li>
                        <li><a href="#">Careers</a></li>
                        <li><a href="#">Contact Us</a>
                            <ul>
                                <li><a href="#">Enquiry Form</a></li>
                                <li><a href="#">Map & Driving Directions</a></li>
                                <li><a href="#">Your Feedback</a></li>
                            </ul>
                        </li>
                                            <li><a href="#">Home</a></li>
                        <li>About Us
                            <ul>
                                <li><a href="#">History</a></li>
                                <li><a href="#">Our Vision</a></li>
                                <li><a href="#">The Team</a>
                                    <ul>
                                        <li><a href="#">Brigita</a></li>
                                        <li><a href="#">John</a></li>
                                        <li><a href="#">Michael</a></li>
                                        <li><a href="#">Peter</a></li>
                                        <li><a href="#">Sarah</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Clients</a></li>
                                <li><a href="#">Testimonials</a></li>
                                <li><a href="#">Press</a></li>
                                <li><a href="#">FAQs</a></li>
                            </ul>
                        </li>
                        <li>Services
                            <ul>
                                <li><a href="#">Product Development</a></li>
                                <li><a href="#">Delivery</a></li>
                                <li><a href="#">Shop Online</a></li>
                                <li><a href="#">Support</a></li>
                                <li><a href="#">Training & Consulting</a></li>
                            </ul>
                        </li>
                        <li>Products
                            <ul>
                                <li><a href="#">New</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Used</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Featured</a></li>
                                <li><a href="#">Top Rated</a></li>
                                <li><a href="#">Prices</a></li>
                            </ul>
                        </li>
                        <li><a href="#">Gallery</a></li>
                        <li><a href="#">Events</a></li>
                        <li><a href="#">Careers</a></li>
                        <li><a href="#">Contact Us</a>
                            <ul>
                                <li><a href="#">Enquiry Form</a></li>
                                <li><a href="#">Map & Driving Directions</a></li>
                                <li><a href="#">Your Feedback</a></li>
                            </ul>
                        </li>
                                            <li><a href="#">Home</a></li>
                        <li>About Us
                            <ul>
                                <li><a href="#">History</a></li>
                                <li><a href="#">Our Vision</a></li>
                                <li><a href="#">The Team</a>
                                    <ul>
                                        <li><a href="#">Brigita</a></li>
                                        <li><a href="#">John</a></li>
                                        <li><a href="#">Michael</a></li>
                                        <li><a href="#">Peter</a></li>
                                        <li><a href="#">Sarah</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Clients</a></li>
                                <li><a href="#">Testimonials</a></li>
                                <li><a href="#">Press</a></li>
                                <li><a href="#">FAQs</a></li>
                            </ul>
                        </li>
                        <li>Services
                            <ul>
                                <li><a href="#">Product Development</a></li>
                                <li><a href="#">Delivery</a></li>
                                <li><a href="#">Shop Online</a></li>
                                <li><a href="#">Support</a></li>
                                <li><a href="#">Training & Consulting</a></li>
                            </ul>
                        </li>
                        <li>Products
                            <ul>
                                <li><a href="#">New</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Used</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Featured</a></li>
                                <li><a href="#">Top Rated</a></li>
                                <li><a href="#">Prices</a></li>
                            </ul>
                        </li>
                        <li><a href="#">Gallery</a></li>
                        <li><a href="#">Events</a></li>
                        <li><a href="#">Careers</a></li>
                        <li><a href="#">Contact Us</a>
                            <ul>
                                <li><a href="#">Enquiry Form</a></li>
                                <li><a href="#">Map & Driving Directions</a></li>
                                <li><a href="#">Your Feedback</a></li>
                            </ul>
                        </li>
                                            <li><a href="#">Home</a></li>
                        <li>About Us
                            <ul>
                                <li><a href="#">History</a></li>
                                <li><a href="#">Our Vision</a></li>
                                <li><a href="#">The Team</a>
                                    <ul>
                                        <li><a href="#">Brigita</a></li>
                                        <li><a href="#">John</a></li>
                                        <li><a href="#">Michael</a></li>
                                        <li><a href="#">Peter</a></li>
                                        <li><a href="#">Sarah</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Clients</a></li>
                                <li><a href="#">Testimonials</a></li>
                                <li><a href="#">Press</a></li>
                                <li><a href="#">FAQs</a></li>
                            </ul>
                        </li>
                        <li>Services
                            <ul>
                                <li><a href="#">Product Development</a></li>
                                <li><a href="#">Delivery</a></li>
                                <li><a href="#">Shop Online</a></li>
                                <li><a href="#">Support</a></li>
                                <li><a href="#">Training & Consulting</a></li>
                            </ul>
                        </li>
                        <li>Products
                            <ul>
                                <li><a href="#">New</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Used</a>
                                    <ul>
                                        <li><a href="#">Corporate Use</a></li>
                                        <li><a href="#">Private Use</a></li>
                                    </ul>
                                </li>
                                <li><a href="#">Featured</a></li>
                                <li><a href="#">Top Rated</a></li>
                                <li><a href="#">Prices</a></li>
                            </ul>
                        </li>
                        <li><a href="#">Gallery</a></li>
                        <li><a href="#">Events</a></li>
                        <li><a href="#">Careers</a></li>
                        <li><a href="#">Contact Us</a>
                            <ul>
                                <li><a href="#">Enquiry Form</a></li>
                                <li><a href="#">Map & Driving Directions</a></li>
                                <li><a href="#">Your Feedback</a></li>
                            </ul>
                        </li>
                        
                    </ul>
                </div>
            </div>
        </div>
    </body>
    </html>
    

    Thanks,
    Raoul

    in reply to: Vertical menu IE problem Vertical menu IE problem #69962

    raoul
    Participant

    Hi Nadezhda,

    What exectly do you mean with making the menu visible (disable scrolling)? I had a look at the API and can’t find anything related to this.

    And how does option two work?

    
    $("#jqxMenu").bind('focus', function (event) {
    	event.preventDefault();
    });
    

    This doesn’t fix the problem. The problem happens when moving over an item with sub menus

    
    $("#jqxMenu").on('shown', function (event) {
    	event.preventDefault();
    });
    

    doesn’t work either.

    Thanks,
    Raoul

    in reply to: Vertical menu IE problem Vertical menu IE problem #69944

    raoul
    Participant

    Sorry, any idea when this will be fixed, is it weeks or months?

    Thank you,
    Raoul

    in reply to: Vertical menu IE problem Vertical menu IE problem #69921

    raoul
    Participant

    Thank you Nadezhda!


    raoul
    Participant

    maybe it is just my IE 11?

    [code]
    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
    <html xmlns=”http://www.w3.org/1999/xhtml”>
    <head>
    <meta name=”keywords” content=”jQuery ComboBox, List, ListBox, Popup List, jqxComboBox, jqxListBox, List Widget, ListBox Widget, DropDownList Widget” />
    <meta name=”description” content=”The jqxComboBox in this demo is populated with items and show
    how to display image next to each item.”/>
    <title id=’Description’>The jqxComboBox represents a widget that contains a list of
    selectable items displayed in a drop-down. Users can enter information in the text
    box portion and search for a specific item. The widget comes with built-in auto-complete
    support.</title>
    <link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.base.css” type=”text/css” />
    <script type=”text/javascript” src=”../../scripts/gettheme.js”></script>
    <script type=”text/javascript” src=”../../scripts/jquery-1.10.2.min.js”></script>
    <script type=”text/javascript” src=”../../jqwidgets/jqxcore.js”></script>
    <script type=”text/javascript” src=”../../jqwidgets/jqxbuttons.js”></script>
    <script type=”text/javascript” src=”../../jqwidgets/jqxscrollbar.js”></script>
    <script type=”text/javascript” src=”../../jqwidgets/jqxlistbox.js”></script>
    <script type=”text/javascript” src=”../../jqwidgets/jqxcombobox.js”></script>
    </head>
    <body>
    <div id=’content’>
    <script type=”text/javascript”>
    $(document).ready(function () {
    var theme = “”;

    var source = new Array();
    for (i = 0; i < 10; i++) {
    var movie = ‘avatar.png’;
    var title = ‘Avatar’;
    var year = 2009;

    switch (i) {
    case 1:
    movie = ‘endgame.png’;
    title = ‘End Game’;
    year = 2006;
    break;
    case 2:
    movie = ‘priest.png’;
    title = ‘Priest’;
    year = 2011;
    break;
    case 3:
    movie = ‘unknown.png’;
    title = ‘Unknown’;
    year = 2011;
    break;
    case 4:
    movie = ‘unstoppable.png’;
    title = ‘Unstoppable’;
    year = 2010;
    break;
    case 5:
    movie = ‘twilight.png’;
    title = ‘Twilight’;
    year = 2008;
    break;
    case 6:
    movie = ‘kungfupanda.png’;
    title = ‘Kung Fu Panda’;
    year = 2008;
    break;
    case 7:
    movie = ‘knockout.png’;
    title = ‘Knockout’;
    year = 2011
    break;
    case 8:
    movie = ‘theplane.png’;
    title = ‘The Plane’;
    year = 2010;
    break;
    case 9:
    movie = ‘bigdaddy.png’;
    title = ‘Big Daddy’;
    year = 1999;
    break;
    }
    var html = “<div style=’padding: 0px; margin: 0px; height: 95px; float: left;’><div style=’margin-top: 10px; font-size: 13px;’>”
    + “<b>Title</b><div>” + title + “</div><div style=’margin-top: 10px;’><b>Year</b><div>” + year.toString() + “</div></div></div>”;
    source[i] = { html: html, title: title };
    }

    // Create a jqxComboBox
    $(“#jqxWidget”).jqxComboBox({ source: source, selectedIndex: 0, width: ‘250’, height: ’25px’, theme: theme });

    $(“#textfield”).on(‘keyup’, function(e) {
    alert(‘ok’)
    });
    });
    </script>
    <div id=’jqxWidget’>
    </div>
    </div>
    <p> </p>
    <p>
    <input type=”text” name=”textfield” id=”textfield”/>
    <input type=”text” name=”textfield1″ id=”textfield1″ onkeyup=”alert(‘ok’)”/>
    </p>
    </body>
    </html>
    [/code]

    – test the textfields, keyup event is fired correctly
    – put focus on the jq combobox
    – put focus back on the textfiels and hit a key, no keyup event fired…
    – also, when the combobox does have focus and if you then first click somewhere on the page before putting focus on the texfields the ke up event is triggered, but we cannot expect our visitors to do that first…

    Raoul


    raoul
    Participant

    Hi Peter,

    But those are the events for jqxComboBox.

    What I meant was, put an ordinary form textarea on the page and assign an onkeyup event to it. It fires just fine in IE. Then add a jqxComboBox to the page. Without changing the jqxComboBox, the textarea onkeyup still fires just fine. Then change the jqxcombobox selected item, the onkeyup event for the textarea no longer fires. This seems not right. It only happens in IE, tested on IE11.

    Thanks,
    Raoul


    raoul
    Participant

    Ok, you are responding from a business point of view correct but stubborn and cold, fair enough… I was very happy to see that another request (if you ask me far more complicated) we had regarding drag drop was actually kindly integrated so I guess that rose my expectations too far… So I must say we have had better experiences… On the other hand thanks for being honest.

    Is the source clearly commented?

    Cheers,
    Raoul


    raoul
    Participant

    Not on my computer and as mentioned I have seen some people confused, the way you respond is just totally not my experience with jqwidgets so far.

    Also, the behaviour of a calender picker should depend on its purpose. If people should only be able to select a date from the current month or the next two months, year selection is unnecessary and confusing anyway but certainly in the current implementation where the month display is replaced with years display.

    You are providing tools for developers, not the end user. It should be up to the developer to decide what behaviour to implement based on the purpose of the calendar. And you should focus on providing a toolset that meet the developers requirements. I don’t think it us up to you to decide for the developer what behaviour the user will expect…

    Apologies for the rant, your response and thought process in this case are just very confusing… Basically you “take it or leave it”, right?

    Raoul


    raoul
    Participant

    Huh? JQWidget such a brilliant set of components with complex functionality, but implementing a lock on the click event for the year selection is impossible?

    Anyway, ok, it’s a shame. I showed the calender to some “general” internet users, they all had to look twice and figure out how to go back to the month display. Once you know how it works,it is easy. But it is all about the first experience, I think you guys have developed an amazing set of tools. I certainly hope you want to look into this…

    Raoul


    raoul
    Participant

    Hi Dimitar,

    That is a shame. Is there any chance to implement that option? Shouldn’t be too hard…

    Thanks,
    Raoul

    in reply to: enableSelection enableSelection #49456

    raoul
    Participant

    Ah ok, yes, it would be nice to be able to do that


    raoul
    Participant

    Thank you! I will wait for that update

    Regards,
    Raoul


    raoul
    Participant

    Thank you Peter, that was very useful 🙂

    As it was already reported 2 months ago and you did reléase an update meanwhile, will it be fixed? If so, any idea when? Can you help here or do we have to search for alternatives?

    Regards,
    Raoul

Viewing 15 posts - 1 through 15 (of 22 total)