This is a migrated thread and some comments may be shown as answers.

Menu+window on page

1 Answer 53 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Anton
Top achievements
Rank 1
Anton asked on 26 Apr 2013, 02:25 AM
Hello,
I have menu, window on page!
 <script>
    $(document).ready(function() {
     var window = $("#window"),
                undo = $("#undo")
                        .bind("click", function() {
                            window.data("kendoWindow").center().open();
                        });
        var onClose = function() {
            undo.show();
        }
        window.kendoWindow({
            width: "auto",
            title: "Настройка системы",
            actions: ["Refresh", "Maximize", "Close"],
            content: 'settings',
            modal: true,
            close: onClose
         });
         $("#menu").kendoMenu();
    });
</script>
but menu don't work

1 Answer, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 29 Apr 2013, 01:05 PM
Hi Anton,

I am not quite sure what causes the problem in your application - I tested your scenario and everything works as expected. For your convenience here is my test jsBin example - could you please edit it and show me your current implementation? This way I would be able to check what exactly is going wrong and advice you further. Also, could you please check if there are some JavaScript errors in the browser console? Thank you in advance for your cooperation.
 
Regards,
Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Menu
Asked by
Anton
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or