gridselect显示值或者输入的地方其实是一个input框,所以对gridselect设置焦点或样式,其实是设置里面的input框的
1.设置焦点
$(this.getElementByXid("gridSelect1")).find("input").focus();
2.设置样式
$(this.getElementByXid("gridSelect1")).find("input").addClass("gridselectInput");
gridselectInput的设置如下:
.gridselectInput { background: #00CCFF; }
其中gridSelect1就是gridselect的xid,当然移出焦点和删除添加的样式就用blur()和removeClass(“gridselectInput”)
评一波