Telerik - grid in asp.net
-
@dovid
תודה
אני מנסה ליצור טבלה עם מסננים - אני משתשמשת בזה בצורה הזאת בקובץ ה- aspx בתוך columns<telerik:GridBoundColumn FilterDelay="200" FilterCheckListWebServiceMethod="LoadCityCode" DataField="CityCode" HeaderText="City Code"> </telerik:GridBoundColumn>
איפה אני בעצם רושמת את LoadCityCode ?
אני עובדת ע"פ מודל שלושת השכבות כך שהנתונים מגיעים לי מהdb לתוך קובץ ה - aspx.vb
אשמח להסבר - תודה רבה!! -
@ממ אני מבין שאת לא עובדת עם WebService.
אם אני צודק, אל תשתמשי בFilterCheckListWebServiceMethod.
שימי באלמנט הRadGrid אירוע של OnFilterCheckListItemsRequested, זה יפעל לכל העמודות ביחד.
את הקוד תכתבי בקוד של הדף. בדוגמה שלהם האירוע נראה ככה:Protected Sub RadGrid1_FilterCheckListItemsRequested(sender As Object, e As GridFilterCheckListItemsRequestedEventArgs) Dim DataField As String = TryCast(e.Column, IGridDataColumn).GetActiveDataField() e.ListBox.DataSource = {"A", "B", "C"} e.ListBox.DataKeyField = DataField e.ListBox.DataTextField = DataField e.ListBox.DataValueField = DataField e.ListBox.DataBind() End Sub