Forums
« Back to APIs

createVideoWindow on display:none container

Combination View Flat View Tree View
Threads [ Previous | Next ]
Hi,
if we try to create a video window by calling
 
    $('#localvidcontainer').cwic('createVideoWindow', {
        id : 'localPreviewVideo',
        success : function(id) {
            previewVideoObject = $('#' + id)[0];
        }
    });

success only gets called if #localvidcontainer is not "display:none". But we only want to show this container if it's really needed. #localvidcontainer is a div tag (see cisco sample).
 
Any suggestions why createVideoWindow on "display:none" container fails?

regards
Daniel Buschke