XUL Textbox inside Popup not working - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:51:52Z http://stackoverflow.com/feeds/question/721919 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/721919/xul-textbox-inside-popup-not-working 0 XUL Textbox inside Popup not working Srijanani 2009-04-06T15:15:09Z 2009-04-20T05:16:55Z <p>Hi, I am working on creating a Firefox extension. I have added a textbox inside a popup. The popup opens on clicking on a toolbar button. The textbox is appearing but does not let me edit it. I have not given any read only attributes. Here is the code:</p> <pre><code> &lt;popupset id="myPopupSet"&gt; &lt;popup id="trial-popup" noautohide="true" position="after_start"&gt; &lt;vbox&gt; &lt;label value="Enter your name:"/&gt; &lt;textbox id="identfier_box" value="This is some text."/&gt; &lt;/vbox&gt; &lt;/popup&gt; &lt;/popupset&gt; &lt;toolbarpalette id="BrowserToolbarPalette"&gt; &lt;toolbarbutton id="mybutton" class="toolbarbutton-1" label="Identifier" popup="trial-popup" insertbefore="urlbar-container" /&gt; </code></pre> <p></p> <p>can anyone let me know why there is this problem? Thanks!</p> http://stackoverflow.com/questions/721919/xul-textbox-inside-popup-not-working/766990#766990 0 Answer by lithorus for XUL Textbox inside Popup not working lithorus 2009-04-20T05:16:55Z 2009-04-20T05:16:55Z <p>What you really want is a panel and not a popup.</p> <p>Change <code>&lt;popup&gt;</code> to <code>&lt;panel&gt;</code> and you have what you want.</p>