ControllerStandardDataItemClassIndexGetToolbarItem Method |
Namespace: SOWIWeb.Helper
[Missing <returns> documentation for "M:SOWIWeb.Helper.ControllerStandard`1.IndexGetToolbarItem"]
protected override List<SOWIWeb.Helper.ToolbarButton> IndexGetToolbarItem() { var lToolbarItem = base.IndexGetToolbarItem(); lToolbarItem.Add(new SOWIWeb.Helper.ToolbarButton(SOWIWeb.Helper.ButtonType.Action) { MVCController = "TicketEmail", MVCAction = "Index", Icon = "glyphicon glyphicon-envelope", TooltipText = "Ticket Emails", Disabled = !SOWIApp.Administrator.ClientModuleConfig.IsActive(this.AppTicket.ClientID, "TicketEmail", SOWIData.Management.ModuleTypes.Option) }); lToolbarItem.Add(new SOWIWeb.Helper.ToolbarButton(SOWIWeb.Helper.ButtonType.Action) { MVCController = "TicketReport", MVCAction = "Index", Icon = "glyphicon glyphicon-bishop", TooltipText = "Ticket Reports", Disabled = !SOWIApp.Administrator.ClientModuleConfig.IsActive(this.AppTicket.ClientID, "TicketReport", SOWIData.Management.ModuleTypes.Option) }); lToolbarItem.Add(new SOWIWeb.Helper.ToolbarButton(SOWIWeb.Helper.ButtonType.Action) { MVCController = "TicketFileContent", MVCAction = "Index", Icon = "glyphicon glyphicon-file", TooltipText = "Ticket Attachment", Disabled = !SOWIApp.Administrator.ClientModuleConfig.IsActive(this.AppTicket.ClientID, "TicketFileContent", SOWIData.Management.ModuleTypes.Option) }); return lToolbarItem; }