<ext:Label 控件: #{控件的Id}.getText(); 反之设置:setText('内容')
<ext:TextField 控件: #{控件的Id}.getValue(); 反之设置:setValue('内容')
Window 控件 #{控件的Id}.Show(); #{控件的Id}.Hide();
控件中是否有值:
if(!#{txtBuildId}.validate()) {
Ext.Msg.alert('警告','工单编号不能为空!');
return false;
}
另:
<ext:Label runat="server" Html="<img src='login/Images/eHR-logo.png' />"></ext:Label>
Label 里面可以写图片!