我有一个包含许多字段集和网格面板的大表单,我需要使用一个确认按钮提交所有数据。其实我用的是这个:
<ext:Button runat="server" Text="Finalizar" Width="150" ID="Button1" Disabled="true">
<DirectEvents>
<Click OnEvent="SalvarDados" After="#{StoreVerifLimpeza}.sync();">
<Confirmation ConfirmRequest="true" Title="Confirmação" Message="Confirm?" />
<EventMask ShowMask="true" Msg="Salvando..." />
</Click>
</DirectEvents>
</ext:Button>
但显然之后的是在OnEvent之前触发的。因为我在 SalvaDados 和 VerifLimpezaGrade_BeforeRecordInserted 中设置了一个异类,所以此var为null。我试图找到一些directevents点击的文档,但发现了什么。
答案 0 :(得分:0)
尝试这个替代方案:
<script runat="server">
// c#
[DirectMethod]
public void SalvarDados(){
// ... your code here
}
</script>
<ext:XScript runat="server">
<sctipt type="text/javascript">
function finalizar(){
Ext.Msg.confirm('Confirmação', 'Confirm?', function(btn){
if (btn == 'yes'){
showWaitBox();
App.direct.SalvarDados({
success: function(){
#{StoreVerifLimpeza}.sync();
Ext.MessageBox.close();
}
});
}
});
}
function showWaitBox(timeout){
Ext.MessageBox.wait('Salvando...');
setTimeout(function() { Ext.MessageBox.hide() }, timeout ? timeout : 30000);
}
</script>
</ext:XScript>
<ext:Button runat="server" Text="Finalizar" Width="150" ID="Button1" Disabled="true" Handler="finalizar();">