我有一個簡單的問題。extjs/c#是保存到數據庫
我有一個FormView,一個保存按鈕。點擊按鈕後,它會保存到數據庫。
我已經添加了一個EXT消息框來確認用戶是否想要保存數據。當他在messagebox的yes按鈕上點擊yes時,它應該保存數據。
我找不到在哪裏寫分機的按鈕邏輯。
這裏是我的代碼:
<asp:FormView ID="myform" runat="server" DataSourceID="mydatasource" DefaultMode="Edit" DataKeyNames="Id" >
<EditItemTemplate>
<asp:TextBox ID="myText" runat="server" TextMode="MultiLine" ClientIDMode="Static"
Text='<%#Bind("xx") %>' />
<ext:Button ID="btn_Update" runat="server" AutoPostBack="false" CausesValidation="false" CommandName="Update" Text="Speichern" StyleSpec="float: left; margin-left:10px;"> <DirectEvents>
<Click OnEvent="btnUpdateClick"></Click>
</DirectEvents>
</ext:Button>
<script type="text/javascript">
function showResult(btn)
{
Ext.example.msg('Button Click', 'You clicked the {0} button', btn);
};
function showResultText(btn, text)
{
Ext.example.msg('Button Click', 'You clicked the {0} button and entered the text "{1}".', btn, text);
}
var showResult = function (btn) {
Ext.Msg.notify("Button Click", "You clicked the " + btn + " button");
};
var showResultText = function (btn, text) {
Ext.Msg.notify("Button Click", "You clicked the " + btn + 'button and entered the text "' + text + '".');
};
</script>
protected void btnUpdateClick(object sender, DirectEventArgs e)
{
X.Msg.Confirm("Confirm", "Are you sure you want to save?", new JFunction { Fn = "showResult" }).Show();
}
請提供一個示例/更改您的問題。消息框無法更新任何內容。所以你不清楚你在問什麼。 – sra
消息框有和沒有按鈕(你想要保存數據),當用戶單擊是時,它應該保存數據,我只是不知道我怎麼能做到這一點,現在我將提供代碼。 – Mark