protected void CarePlanInterventionGrid_OnItemCreated(Object sender, Telerik.Web.UI.GridItemEventArgs e) { if ((e.Item is Telerik.Web.UI.GridEditableItem) && (e.Item.IsInEditMode)) { if (MemberCaseCarePlan == null) { return; } Telerik.Web.UI.GridEditableItem item = (Telerik.Web.UI.GridEditableItem)e.Item; Telerik.Web.UI.RadComboBox AddCarePlanInterventionExistingSelection = (Telerik.Web.UI.RadComboBox)item.FindControl("AddCarePlanInterventionExistingSelection"); if (AddCarePlanInterventionExistingSelection == null) { return; } AddCarePlanInterventionExistingSelection.DataSource = MercuryApplication.CareInterventionsAvailable(true); AddCarePlanInterventionExistingSelection.DataTextField = "Name"; AddCarePlanInterventionExistingSelection.DataValueField = "Id"; Telerik.Web.UI.RadComboBox AddCarePlanInterventionCareMeasureSelection = (Telerik.Web.UI.RadComboBox)item.FindControl("AddCarePlanInterventionCareMeasureSelection"); if (AddCarePlanInterventionCareMeasureSelection == null) { return; } AddCarePlanInterventionCareMeasureSelection.DataSource = MercuryApplication.CareMeasuresAvailableEnabledVisible(true); AddCarePlanInterventionCareMeasureSelection.DataTextField = "Name"; AddCarePlanInterventionCareMeasureSelection.DataValueField = "Id"; } return; }