问题:
     创建一个comboBox:
      var myBox = new Ext.form.ComboBox ({
  ...
       });
     然后调用getEl获取comboBox的Ext.Element:
      var el = myBox.getEl ();
     再调用insertHtml插入一串字符
      el.insertHtml (afterEnd, '<span style="margin-left: 5px; margin-right: 5px;" class="insertTipDiv">' + 
     ‘test' + '</span>', true);
     结果test出现在comboBox的textField与button之间。
请问如何让test放到整个comboBox的后面?急,请大家帮帮忙.
谢谢!