[Dojo-interest] Firefox Combobox width
mengel at notes.cc.sunysb.edu
mengel at notes.cc.sunysb.edu
Wed Feb 7 14:14:37 MST 2007
I was creating my page for IE. I had some nice comboboxes that worked
very well. I was setting the with using:
cbBuildCd.textInputNode.width=60;
and it worked very well. I'm now starting a migration to Firefox. All is
working, except I can't change the width of the combobox anymore. Any
ideas? Here's a snippet.
var dataJSON = dojo.json.evalJson(data);
var buildCdcbDiv = document.getElementById("divBuildCd");
var buildNmcbDiv = document.getElementById("divBuildNm");
var cbBuildCd = dojo.widget.createWidget('combobox', { widgetId:
'cbBuildCd'});
cbBuildCd.textInputNode.width=60;
var cbBuildNm = dojo.widget.createWidget('combobox', { widgetId:
'cbBuildNm'} );
cbBuildNm.textInputNode.width=150;
cbBuildCd.dataProvider.setData(dataJSON.buildID);
cbBuildNm.dataProvider.setData(dataJSON.buildName);
buildNmcbDiv.appendChild(cbBuildNm.domNode);
buildCdcbDiv.appendChild(cbBuildCd.domNode);
cbBuildCd.onValueChanged = myApp.buildCdChanged;
cbBuildNm.onValueChanged = myApp.buildNmChanged;
Again, This worked great on IE, and made the comboboxes the correct width.
Thanks, in advance.
Matthew Engel
Senior Programmer/Analyst
State University of New York at Stony Brook
mengel at notes.cc.sunysb.edu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://dojotoolkit.org/pipermail/dojo-interest/attachments/20070207/fdbc7002/attachment.html
More information about the Dojo-interest
mailing list