Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Basically am looking out for dynamic message box popup functionality where I can display any dynamic message externally.
There should not be any dependency on script/code changes from backend or front end in app.
I am trying to make changes in .txt or .xlsx external file which will be directly visible into app.
If i enter and dynamic message in .txt file and enable show option then it will show popup message on dashboard homepage and if i disable show option then popup message will be disappeared.
Regards,
KK
@Karim_Khan fmc4mewrote:
Hi All,
Basically am looking out for dynamic message box popup functionality where I can display any dynamic message externally.
There should not be any dependency on script/code changes from backend or front end in app.
I am trying to make changes in .txt or .xlsx external file which will be directly visible into app.
If i enter and dynamic message in .txt file and enable show option then it will show popup message on dashboard homepage and if i disable show option then popup message will be disappeared.
Regards,
KK
Yes, this functionality is achievable by building a system that reads from an external configuration file, such as a **JSON file**, at runtime. Your application needs a one-time setup to read this file, which contains a boolean value to control visibility and a text field for the message. Once this code is deployed, you can change the popup's content and show/hide status simply by editing the external file, without ever needing to modify the application's code.
@Karim_Khan fmc4mewrote:
Hi All,
Basically am looking out for dynamic message box popup functionality where I can display any dynamic message externally.
There should not be any dependency on script/code changes from backend or front end in app.
I am trying to make changes in .txt or .xlsx external file which will be directly visible into app.
If i enter and dynamic message in .txt file and enable show option then it will show popup message on dashboard homepage and if i disable show option then popup message will be disappeared.
Regards,
KK
Yes, this functionality is achievable by building a system that reads from an external configuration file, such as a **JSON file**, at runtime. Your application needs a one-time setup to read this file, which contains a boolean value to control visibility and a text field for the message. Once this code is deployed, you can change the popup's content and show/hide status simply by editing the external file, without ever needing to modify the application's code.