0
나는 웹 페이지 마녀를 개발하고 있는데 AspxTreelist와 ASPxGridView가 있습니다. 내가 treelist에 대한 일부 노드를 선택한 후 데이터로 표를 채우기 싶습니다. 내가 그리드Devxpress 웹 Gridview 요청시 데이터로드
if (Categories!= null && Categories.Count > 0)
{
DGEmails.DataSource = Manager.GetBySubTree(Categories);
DGEmails.DataBind();
}
를 작성하고있어 여기에
내가 갖는 선택된 노드
Categories = new List<int>();
foreach (TreeListNode node in categs)
{
Categories.Add(int.Parse(node["Key"].ToString()));
}
그리고 여기에 다음 treelist 노드는 다음
내 코드 샘플입니다 그리드 데이터를 필터링하는문제는 내가 범주를 얻고 그리드의 데이터 소스를 채우면 (이 부분은 잘 작동 함) 그리드에 데이터가 표시되지 않는다는 것입니다.