标签:
相关的连接一:https://search.devexpress.com/?q=aspxgridview%20get%20value%20from%20EditItem&m=SupportCenter
该链接汇总了所有如何从EditForm中获得值的问题的解决方法,但太过于广泛。
相关连接二:https://www.devexpress.com/Support/Center/Example/Details/E1174
通过该程序你可以在后台获得EditForm中aspxcheckbox的值,主要程序为:
private string GetCategoriesFromList() { string categories = string.Empty;
//主要是通过改代码获得EditForm中其他控件的属性,第一个参数为控件的列,第二个为所取控件ID, CheckBoxList list = (CheckBoxList)Grid.FindEditRowCellTemplateControl((GridViewDataColumn)Grid.Columns[2], "List"); // workaround if(Grid.IsCallback) LoadListControlPostDataOnCallback(list); foreach(ListItem item in list.Items)
{
//获取CheckBoxList控件的多个选中值
if(item.Selected) categories += item.Value + CategorySeparator;
}
if(categories.EndsWith(CategorySeparator))
categories = categories.Substring(0, categories.Length - CategorySeparator.Length);
return categories;
}
相关连接三:https://www.devexpress.com/Support/Center/Example/Details/E1264
该程序讲述了如何对EditForm中的行进行验证,并且错误提示。其中ASPxTextBox在行初始化的时候便提示不能为空的验证。
相关连接三:https://www.devexpress.com/Support/Center/Example/Details/E25
运行后:http://codecentral.devexpress.com/E25/
改程序是一个很好的EditForm样例,它可以包含许多的其他控件。值得一看。
DEV-aspxgridview EditForm的使用、验证
标签:
原文地址:http://www.cnblogs.com/sizhizhiyue/p/4613616.html