主頁 > 知識(shí)庫 > GridView選擇記錄同時(shí)confirm用戶確認(rèn)刪除

GridView選擇記錄同時(shí)confirm用戶確認(rèn)刪除

熱門標(biāo)簽:合肥電銷外呼系統(tǒng)哪家公司做的好 申請400電話手續(xù) 南陽外呼系統(tǒng)定制化 電話機(jī)器人軟件銷售工作 蘋果手機(jī)凱立德地圖標(biāo)注 同安公安400電話怎么申請流程 百度ai地圖標(biāo)注 玉林市機(jī)器人外呼系統(tǒng)哪家好 預(yù)測式外呼系統(tǒng)使用說明
用戶戶操作刪除記錄之前給用戶一個(gè)確認(rèn)是否刪除的提示。一般情況之下,一條記錄一條記錄刪除是沒有問題的。但是,如遇到可以多選,如果用戶沒有選擇記錄,直接去點(diǎn)刪除銨鈕,它會(huì)首先提示刪除前的確認(rèn)信息,再提示用戶沒有選擇想要?jiǎng)h除的記錄。

Insus.NET想實(shí)現(xiàn)的是,把它的順序調(diào)換一下,首先判斷用戶是否有選擇記錄,如果沒有,提示用戶選擇記錄,一旦有選擇記錄時(shí),才提示刪除前確認(rèn)信息。

下面實(shí)例,將是GridView第一例放置一個(gè)CheckBox,讓用戶多選記錄,然后在Gridview外放一個(gè)Delete銨鈕。
演示:https://www.jb51.net/article/33564.htm
xxx.aspx:
復(fù)制代碼 代碼如下:

asp:Button ID="ButtonDelete" Text="Delete" runat="Server" OnClick="ButtonDelete_Click"
CausesValidation="false" />
asp:GridView ID="GvCutterType" runat="server" DataKeyNames="CutterTypeId" AutoGenerateColumns="false">
Columns>
asp:TemplateField>
ItemStyle BorderWidth="1" BorderColor="#c0c0c0" Width="1%" />
ItemTemplate>
asp:CheckBox ID="CheckBox1" runat="server" onclick="Javascript:changeRowBgColor(this)" />
/ItemTemplate>
/asp:TemplateField>
!--
other column templateField
-->
/Columns>
/asp:GridView>

xxx.aspx.cs:
復(fù)制代碼 代碼如下:

protected void Page_Load(object sender, EventArgs e)
{
this.ButtonDelete.Attributes.Add("onclick", "return ConfirmOnDelete();");
}
protected void ButtonDelete_Click(object sender, EventArgs e)
{
//do delete something
}

Javascript:
復(fù)制代碼 代碼如下:

function ConfirmOnDelete() {
if (document.getElementById("%= GvCutterType.ClientID %>") == null) {
return false;
}
var objgv = document.getElementById("%= GvCutterType.ClientID %>");
var rc = objgv.rows.length;
var y = 0;
for (var i = 0; i rc; i++) {
var getInput = objgv.rows[i].cells[0].getElementsByTagName("input");
if (getInput[0].type == "checkbox") {
if (getInput[0].checked) {
y = y + 1;
}
}
}
if (y = 0) {
alert("首先選擇想要?jiǎng)h除的記錄。");
return false;
}
if (confirm("以下選擇的記錄將被刪除。") == true)
return true;
else
return false;
}
您可能感興趣的文章:
  • GridView使用CommandField刪除列實(shí)現(xiàn)刪除時(shí)提示確認(rèn)框
  • VB.NET 中刪除DataGridView中所選行的小例子
  • Gridview的鏈接和刪除點(diǎn)擊提示的問題探討
  • asp.net 不用GridView自帶刪除功能,刪除一行數(shù)據(jù)
  • asp.net GridView的刪除對話框的兩種方法
  • GridView自定義刪除操作的具體方法

標(biāo)簽:南京 淄博 海南 揚(yáng)州 南京 南昌 嘉興 臺(tái)州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《GridView選擇記錄同時(shí)confirm用戶確認(rèn)刪除》,本文關(guān)鍵詞  GridView,選擇,記錄,同時(shí),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《GridView選擇記錄同時(shí)confirm用戶確認(rèn)刪除》相關(guān)的同類信息!
  • 本頁收集關(guān)于GridView選擇記錄同時(shí)confirm用戶確認(rèn)刪除的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章