public NotyMessage AddNotyMessage(NotyMessage message) { NotyMessages.Add(message); return message; }
public static void NotySuccess(this ControllerBase controller, string message, bool isSticky = false) { var notyMessage = new NotyMessage { Type = AlertType.success, IsSticky = isSticky, Message = message, CloseWith = MessageCloseType.click, Location = MessageLocation.topLeft, CloseAnimation = AnimationTypes.bounceOut, OpenAnimation = AnimationTypes.bounce, IsModal = true }; controller.AddNotyAlert(notyMessage); }
public static void NotyAlert(this ControllerBase controller,string message, bool isSticky = false) { var notyMessage = new NotyMessage { Type = AlertType.alert, IsSticky = isSticky, Message = message }; controller.AddNotyAlert(notyMessage); }
private static void AddNotyAlert(this ControllerBase controller, NotyMessage message) { var noty = controller.TempData.ContainsKey(Noty.TempDataKey) ? (Noty)controller.TempData[Noty.TempDataKey] : new Noty(); noty.AddNotyMessage(message); controller.TempData[Noty.TempDataKey] = noty; }