如何將loadMask應用於僅一個元素,而不是整個瀏覽器的width-height?
默認
將loadMask()應用於extjs中的單個元素?
這裏,只有一個元素被屏蔽,並且消息框是在中心,這個元素而不是整個顯示器內部...
任何想法?
編輯:
@Molecule,謝謝你,但是這是當數據從某些源加載,我需要的是:
{
xtype:"button",
text:"Alert",
handler: function(){
Ext.Msg.show({
title:'Save Changes?',
msg: 'You are closing ?',
buttons: Ext.Msg.YES,
setLoading: // here somehow only mask parent element, and position alertBox...
}
}
你談論元素,但它們是組件。 –
@Chris,是的,它們是[Components](http://docs.sencha.com/ext-js/4-1/#!/api/Ext.Component):-) –