Discuz!NT控件剖析之DataGrid(数据列表)
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-04-11
} 16 17 public void BindData() 18 { 19 if ((this.SqlText != null) && (this.SqlText != "")) 20 { 21 BindData(this.SqlText); 22 } 23 24 } 25 26 2.加载编辑列和删除列按钮的方法如下: 1public void LoadEditColumn() 2 { 3 EditCommandColumn ecc = new EditCommandColumn();//更新按钮列 4 ecc.SortExpression = "desc"; 5 ecc.ButtonType = ButtonColumnType.LinkButton;//链接按钮 6 ecc.EditText = "编辑"; 7 ecc.UpdateText = "更新"; 8 ecc.CancelText = "取消"; 9 ecc.ItemStyle.Width = 70; 10 this.Columns.AddAt(0, ecc);//增加按钮列 11 } 12 13 public void LoadDeleteColumn() 14 { 15 ButtonColumn bc = new ButtonColumn(); 16 bc.SortExpression = "desc"; 17 bc.CommandName = "Delete"; 18 bc.Text = "删除"; 19 bc.ItemStyle.Width = 70; 20 this.Columns.AddAt(1, bc);//增加按钮列 21 } 22 23 3.在点击编辑,取消和跳转指定分页上也进行了封装如下: 1 public void EditByItemIndex(int itemindex) 2 { 3 this.EditItemIndex = itemindex; 4 BindDa |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于Discuz!NT控件剖析之DataGrid(数据列表)的所有评论