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

[Solved] Creating a window on the client-side not working on internet explorer and google chrome

0 Answers 82 Views
Window
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Azeheruddin khan
Top achievements
Rank 1
Azeheruddin khan asked on 13 Jan 2011, 04:55 PM
Dear all,

I am creating window on client side and loading view inside that.It is working in firefox but internet and chrome showing a blank window...

var popup1 = $.telerik.window.create({
        title: title,
        modal: true,
        width     : 800,
        height: 561,
        draggable: true,
        visible: false,
        html: '<iframe id="frm" frameborder="0" width="800" height="560" src ="' + GetControllerPath('Student/' + url + '?student_person_id=' + id) + '></iframe>',
        onClose: function (e) {
            $('#StudentProfileGrid').data('tGrid').rebind();
        }
    }).data('tWindow');


    popup1.center().open();


best rgds
Azeheruddin khan
Tags
Window
Asked by
Azeheruddin khan
Top achievements
Rank 1
Share this question
or