XUL Textbox inside Popup not working - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T18:51:52Zhttp://stackoverflow.com/feeds/question/721919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/721919/xul-textbox-inside-popup-not-working0XUL Textbox inside Popup not workingSrijanani2009-04-06T15:15:09Z2009-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> <popupset id="myPopupSet">
<popup id="trial-popup" noautohide="true" position="after_start">
<vbox>
<label value="Enter your name:"/>
<textbox id="identfier_box" value="This is some text."/>
</vbox>
</popup>
</popupset>
<toolbarpalette id="BrowserToolbarPalette">
<toolbarbutton id="mybutton"
class="toolbarbutton-1"
label="Identifier"
popup="trial-popup"
insertbefore="urlbar-container" />
</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#7669900Answer by lithorus for XUL Textbox inside Popup not workinglithorus2009-04-20T05:16:55Z2009-04-20T05:16:55Z<p>What you really want is a panel and not a popup.</p>
<p>Change <code><popup></code> to <code><panel></code> and you have what you want.</p>