You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been using growl 2 and it is wonderful; however, I have a case where it would be nice to be able to control the referenceId from server side notifications.
In order for me to do this, I had to modify growl 2 (angular-growl.js line#275) and add a simple assignment such as:
config.referenceId = message['referenceId'];
It's a bit hacky, but seems to work.
In ASP.NET MVC, my model looks such as:
public class GrowlMessages
{
public List<GrowlMessage> growlmessages;
public GrowlMessages()
{
growlmessages = new List<GrowlMessage>();
}
}
public class GrowlMessage
{
public string growltext { get; set; }
public string growlseverity { get; set; }
public string growltitle { get; set; }
public int referenceId { get; set; }
public GrowlMessage()
{
referenceId = 0;
}
}
Hello,
I have been using growl 2 and it is wonderful; however, I have a case where it would be nice to be able to control the referenceId from server side notifications.
In order for me to do this, I had to modify growl 2 (angular-growl.js line#275) and add a simple assignment such as:
config.referenceId = message['referenceId'];
It's a bit hacky, but seems to work.
In ASP.NET MVC, my model looks such as:
and my app.js sets it up as:
Would be great to be able to define a growlProvider.messageId in the app to integrate better with your schema.
maybe this is a feature request? :D
The text was updated successfully, but these errors were encountered: