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

Items appear behind window when dropdown placed within window

6 Answers 223 Views
DropDownList
This is a migrated thread and some comments may be shown as answers.
Gary
Top achievements
Rank 1
Gary asked on 15 Feb 2012, 05:11 PM
I have added a DropDownList to a kendo Window. However, the dropped down items list appears behind the window.

Can you help?

Gary

6 Answers, 1 is accepted

Sort by
0
Georgi Krustev
Telerik team
answered on 15 Feb 2012, 05:13 PM
Hello Gary,

 
This is a known issue, which is already addressed. The fix is included in the service pack of Kendo UI.

Regards,
Georgi Krustev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Jignesh
Top achievements
Rank 1
answered on 23 Feb 2012, 05:40 PM
I am having the same problem. From where can I download the service pack?

Thanks,
jD
0
Gary
Top achievements
Rank 1
answered on 23 Feb 2012, 06:02 PM
Just click on the "Get Kendo UI" button. This download is for the latest release.
0
Marzieh
Top achievements
Rank 1
answered on 26 Feb 2012, 08:34 AM
I am having the same problem. From where can I download the service pack?
  I already dl the last one Kendo ui , but my problem dose not solve :(
i use open sourers version :(
0
علی اکبر
Top achievements
Rank 1
answered on 29 Feb 2012, 11:43 AM
I Have This Problem Too.
Please Help Me.
0
Giuseppe
Top achievements
Rank 1
answered on 29 Feb 2012, 04:27 PM
I have the same problem and waiting for the SP I used this workaround:

$('select').kendoDropDownList({
    // your options...
    open: function(){
        $('.k-window').css({zIndex: '10000'});
    }
});

It just lowers the window's z-index value to make the options visible.

I also add a close callback to the window to make sure that when it gets closed the select tag get closed too.

$('#window').kendoWindow({
    // other options...
    draggable: false,
    close: function(){
        var select_tag = $('#select_tag_id').data('kendoDropDownList');
        select_tag.close();
    }
});

Hope this can help you.
Bye
Tags
DropDownList
Asked by
Gary
Top achievements
Rank 1
Answers by
Georgi Krustev
Telerik team
Jignesh
Top achievements
Rank 1
Gary
Top achievements
Rank 1
Marzieh
Top achievements
Rank 1
علی اکبر
Top achievements
Rank 1
Giuseppe
Top achievements
Rank 1
Share this question
or