- 浏览: 38321 次
- 性别:
- 来自: 上海
最新评论
文章列表
此方法对于IE 下的textfield支持不好,运行时,插入顺序错乱。
换成textarea后即可。
function insertAtCursor(myField, myValue) {
var input = document.getElementById(myField.id);
input.focus();
if (Ext.isIE) {
sel = document.selection.createRange();
...
加入按钮:
{
{
xtype :'textfiled',
fieldLabel : '地址',
name : 'addresses[0].address',
listeners : {
render : function(obj) {
var t=document.createTextNode('地址');
var btn=document.createElement('BUTTON');
...