のフィルターのコンボボックスをデータバインドしようとしていますradgrid
。以下を試してみると、フィルターコントロールが見つからないようですが、何も起こりません。
foreach (GridFilteringItem filterItem in InitAlerts.MasterTableView.GetItems(GridItemType.FilteringItem))
{
RadComboBox initLoans = (RadComboBox)filterItem.FindControl("InitLoan");
var loannumber = (from DataRow dRow in initTable.Rows
select new { loan_number = dRow["loan_loan_number"] }).Distinct().ToList();
initLoans.DataSource = loannumber;
initLoans.DataBind();
Label1.Text = initLoans.ID.ToString();
}
また、それが違いを生むのであれば、これはただ実行されPage_Load
ています...