or
| List<int> originList = new List<int>(); |
| originList.Add(24); |
| originList.Add(328); |
| myDataContext dc = new myDataContext(); |
| List<Leg_ListResult> legList = (from l in dc.Leg_List() |
| // where originList.Contains((int)l.OriginWaypointID) |
| select l).ToList(); |
| gridLegs.DataSource = legList; |
| List<int> originList = new List<int>(); |
| originList.Add(24); |
| originList.Add(328); |
| myDataContext dc = new myDataContext(); |
| List<Leg_ListResult> legList = (from l in dc.Leg_List() |
| where originList.Contains((int)l.OriginWaypointID) |
| select l).ToList(); |
| gridLegs.DataSource = legList; |
| <div id="divPlaceHolder" runat="server" > |
| <asp:PlaceHolder ID="myPlaceHolder" runat="server"></asp:PlaceHolder> |
| </div> |
| <telerik:AjaxSetting AjaxControlID="mnuFunction"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="divPlaceHolder" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
Hi, I'm new using Telerik controls (mainly RadGrid), so I need a doc that describes properties, methods and events to keep go on.
I'd appreciate any help.
Thanks in advance.