allow AddModuleMessage to support displaying the message at the bottom of the module instance
This commit is contained in:
@ -261,7 +261,12 @@ namespace Oqtane.Modules
|
||||
// UI methods
|
||||
public void AddModuleMessage(string message, MessageType type)
|
||||
{
|
||||
ModuleInstance.AddModuleMessage(message, type);
|
||||
AddModuleMessage(message, type, "top");
|
||||
}
|
||||
|
||||
public void AddModuleMessage(string message, MessageType type, string position)
|
||||
{
|
||||
ModuleInstance.AddModuleMessage(message, type, position);
|
||||
}
|
||||
|
||||
public void ClearModuleMessage()
|
||||
|
Reference in New Issue
Block a user