使用 Infragistics WebDataGrid v11.2 ,我如何从 C# 代码隐藏中获取用户输入到过滤器框中的值?
说出列的 Key="LastName" 。在 webDataGrid 对输入的值执行搜索后,我想在下一个 PostBack 上使用 C# 获取在过滤器框中输入的字符串。
例如:
string ln = wdgNames.Columns.FindItemByKey("LastName").FilterValue ;
或者
string ln = wdgNames.Rows[0]Items.FindItemByKey("LastName").FilterValue ;