dhtmlXCombo not showing options

Hi,

When I click on the comboBox, the list of options does not appear. However, if I put the cursor into the comboxBox and hit the down arrow, I can move thru the various options. Can you tell me why the comboBox does not appear when clicked? Below is the code.



myVirtualFrames.loadXMLString(strXML);

myVirtualFrames.enableOptionAutoHeight(true);

myVirtualFrames.show(true);

myVirtualFrames.readonly(true,false);



Thanks,

Mike


Hello


lcoally the same code works correctly. Please provide the complete demo.


 



Hi,



   Thanks for your repsonse.  Below is all the code used to initialize and load the dhtmlXCombo.



 



myVirtualFrames = new dhtmlXCombo(“VirtualFrameContainer”,“VirtualFrames”, 275, ‘image’);



dhtmlxEvent(window,“resize”,dhtmlXCombo.prototype.closeAll);



var strXML = document.getElementById(‘hfReturnedFrames’).value;  //get XML string



myVirtualFrames.clearAll(true);



myVirtualFrames.loadXMLString(strXML);
myVirtualFrames.enableOptionAutoHeight(true);
myVirtualFrames.show(true);
myVirtualFrames.readonly(true,false);
myVirtualFrames.attachEvent(“onChange”, onChangeVirtualFrame);



 



the HTML code has the following Container:



<div id=“VirtualFrameContainer” style=“width:180px;”>



</div>



 



Any additioanl help would be appreciated.



 



Thanks,



Mikie


Hello


please provide a complete demo - a sample that contains all necessary files and ready to testing

Alex,
   Below is all the HTML from the aspx page pertaining to the Combo control.  Please note that the Combo control is used in Modal Popup.  I believe this is all the code.  Could the Combobox options be hidden behind the ModalPopup?
 
Thanks,
Mike
 
 

   .styleSelectedVirtual
   {
       width: 580px;
   }       
   .modalBackground
   {
      background-color:Gray;
      filter:alpha(opacity=70);
      opacity:0.7;

<cc1:ModalPopupExtender ID="mpeVirtualFrame" runat="server"
    TargetControlID="lnkVirtualFrameEditor" PopupControlID="panVirtualFrameEditor"
    BackgroundCssClass="modalBackground" >   


    
       
                 
       
               

All the Javascript code used to initialize and load the Combox is below:
 
function pageLoad(sender, e)
{
    var mpeVirtualFrame = $find('mpeVirtualFrame');
    mpeVirtualFrame.add_show(mpeVirtualFrame_Shown);
}
 

myVirtualFrames = new dhtmlXCombo("VirtualFrameContainer","VirtualFrames", 275, 'image');


dhtmlxEvent(window,"resize",dhtmlXCombo.prototype.closeAll);


var strXML = document.getElementById('hfReturnedFrames').value;  //get XML string


myVirtualFrames.clearAll(true);


myVirtualFrames.loadXMLString(strXML);
myVirtualFrames.enableOptionAutoHeight(true);
myVirtualFrames.show(true);
myVirtualFrames.readonly(true,false);
myVirtualFrames.attachEvent("onChange", onChangeVirtualFrame);


              
                  
                      
                  
              

                           

                           

                      

          

We have attached the sample. Possibly it’ll help to solve the problem
sample.zip (22.6 KB)