主頁 > 知識庫 > GridView的CheckBox列選擇及多參數(shù)傳遞三步搞定

GridView的CheckBox列選擇及多參數(shù)傳遞三步搞定

熱門標(biāo)簽:百度ai地圖標(biāo)注 蘋果手機(jī)凱立德地圖標(biāo)注 合肥電銷外呼系統(tǒng)哪家公司做的好 預(yù)測式外呼系統(tǒng)使用說明 南陽外呼系統(tǒng)定制化 申請400電話手續(xù) 電話機(jī)器人軟件銷售工作 玉林市機(jī)器人外呼系統(tǒng)哪家好 同安公安400電話怎么申請流程
1、GridView的列設(shè)置
復(fù)制代碼 代碼如下:

asp:TemplateField HeaderStyle-CssClass="check" ItemStyle-CssClass="check">
HeaderTemplate>
input type="checkbox" onclick="selectAll(this)" />
全選
/HeaderTemplate>
ItemTemplate>
input name="chkIDCardNum" type="checkbox"
value="%# Eval("PID") %>$%# Eval("IdentityCard")%>$%# Eval("PName")%>"
%# "1" == Eval("IsCouldDelete").ToString()?"disabled='disabled'":""%> />
/ItemTemplate>
/asp:TemplateField>
asp:TemplateField Visible="true" HeaderText="刪除">
ItemTemplate>
asp:LinkButton id="lbtnDelete" CommandName="lbtnDelete" runat="server" Text="刪除檔案"
CommandArgument='%# Eval("PID") +"$"+ Eval("IdentityCard")%>'
OnClientClick="return confirm('確認(rèn)刪除?');"
Visible='%# Eval("Termination").ToString()=="1" ? false : true %>' />
/ItemTemplate>
/asp:TemplateField>

2、全選的Js處理
復(fù)制代碼 代碼如下:

function selectAll(myself) {
var oState = myself.checked;
var checkboxes = document.getElementsByName("chkIDCardNum"); //獲取input組
for (var i = 0; i checkboxes.length; i++) {
if (checkboxes[i].disabled) {
} else {
checkboxes[i].checked = oState; //選擇值
}
}
}

3、后臺對所選值的獲取
復(fù)制代碼 代碼如下:

var selectedIds = Request.Params["chkIDCardNum"].Split(',');
if (selectedIds.Length == 0)
return;
//int[] msgIds = Array.ConvertAllstring, int>(selectedIds, s => int.Parse(s));
int[] ids = selectedIds.Select(t => int.Parse(t.Split('$')[0])).ToArray();
string[] cards = selectedIds.Select(t => t.Split('$')[1]).ToArray();
您可能感興趣的文章:
  • DataGridView中CheckBox實(shí)現(xiàn)某一列單選
  • Gridview使用CheckBox全選與單選采用js實(shí)現(xiàn)同時(shí)高亮顯示選擇行
  • GridView中加上CheckBox 的全選功能的代碼
  • gridview和checkboxlist的嵌套相關(guān)應(yīng)用
  • ASP.NET Gridview與checkbox全選、全不選實(shí)現(xiàn)代碼
  • asp.net GridView控件中模板列CheckBox全選、反選、取消
  • asp.net checkbox 動態(tài)綁定id GridView刪除提示
  • Asp.net 中使用GridView控件實(shí)現(xiàn)Checkbox單選

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

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《GridView的CheckBox列選擇及多參數(shù)傳遞三步搞定》,本文關(guān)鍵詞  GridView,的,CheckBox,列,選擇,;如發(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的CheckBox列選擇及多參數(shù)傳遞三步搞定》相關(guān)的同類信息!
  • 本頁收集關(guān)于GridView的CheckBox列選擇及多參數(shù)傳遞三步搞定的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章