using System; using System.Data; using System.Collections; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using CMS.GlobalHelper; using CMS.SettingsProvider; using CMS.SiteProvider; using CMS.UIControls; using CMS.ExtendedControls; public partial class CMSModules_FormControls_Pages_Development_List : SiteManagerPage { protected void Page_Load(object sender, EventArgs e) { CurrentMaster.Title.TitleText = GetString("Development-FormUserControl_List.Title"); CurrentMaster.Title.TitleImage = GetImageUrl("Objects/CMS_FormControl/object.png"); CurrentMaster.Title.HelpTopicName = "form_controls_list"; CurrentMaster.Title.HelpName = "helpTopic"; // New item link string[,] actions = new string[1,6]; actions[0, 0] = HeaderActions.TYPE_HYPERLINK; actions[0, 1] = GetString("Development-FormUserControl_List.New"); actions[0, 2] = null; actions[0, 3] = ResolveUrl("New.aspx"); actions[0, 4] = null; actions[0, 5] = GetImageUrl("Objects/CMS_FormControl/add.png"); CurrentMaster.HeaderActions.Actions = actions; grdList.ZeroRowsText = GetString("general.nodatafound"); grdList.OnAction += new OnActionEventHandler(grdList_OnAction); grdList.OnExternalDataBound += new OnExternalDataBoundEventHandler(grdList_OnExternalDataBound); } #region "Unigrid events" protected object grdList_OnExternalDataBound(object sender, string sourceName, object parameter) { if (sourceName.ToLowerCSafe() == "controltype") { if ((parameter != null) && (parameter != DBNull.Value)) { return GetString("formcontrolstype." + FormUserControlInfoProvider.GetTypeEnum(ValidationHelper.GetInteger(parameter, 0)).ToString()); } } return null; } /// /// Handles the UniGrid's OnAction event. /// /// Name of item (button) that threw event /// ID (value of Primary key) of corresponding data row protected void grdList_OnAction(string actionName, object actionArgument) { switch (actionName) { case "edit": URLHelper.Redirect("Frameset.aspx?controlid=" + actionArgument.ToString()); break; case "delete": FormUserControlInfoProvider.DeleteFormUserControlInfo(ValidationHelper.GetInteger(actionArgument, 0)); break; } } #endregion }