Jump to content

Dashboard.alert equivilent in c#?


Recommended Posts

Posted

Is there a "quick and easy" way to pop up a notification dialog from the Plugin API (which is not using the PluginUi at this moment)?


 

Posted
1 hour ago, Luke said:

Hi, you mean from the server side?

Learning the proper terms.

From a plugin, running on the server side, but a plugin that is not running the new PluginUI architecture

Posted

the best you can do is send a remote control command to a session to display a message.

Posted
1 minute ago, Luke said:

the best you can do is send a remote control command to a session to display a message.

Thanks.  thats kind of what I figured.

Are there any plans to recreate the "Dashboard" class API for the server side (not just the JS system)?

Posted

I'm sure the features will get richer as time goes on. @softworkz

This one is just a little trickier because you're in a different context.

Posted
On 8/31/2026 at 8:54 PM, HawkXP71 said:

Thanks.  thats kind of what I figured.

Are there any plans to recreate the "Dashboard" class API for the server side (not just the JS system)?

The reason why this doesn't exist for the Plugin UI is that it gives you something much better:

You can update any part of the UI at any time from the server-side. There is just no practical use case for showing a toast message.

Showing toast messages is about showing a message to a user at any point in time and no matter what the user is currently viewing. 
A plugin which wants to show a message to the user must always go through the session mechanism.
I see no point in showing a toast that is specific to a certain plugin configuration page (other than "Settings saved" maybe).

Which case is yours about?

HawkXP71
Posted
17 minutes ago, softworkz said:

The reason why this doesn't exist for the Plugin UI is that it gives you something much better:

You can update any part of the UI at any time from the server-side. There is just no practical use case for showing a toast message.

Showing toast messages is about showing a message to a user at any point in time and no matter what the user is currently viewing. 
A plugin which wants to show a message to the user must always go through the session mechanism.
I see no point in showing a toast that is specific to a certain plugin configuration page (other than "Settings saved" maybe).

Which case is yours about?

The problem I have, is I am not (yet) using the PluginUI system. 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...