rameshp0233
03-18-2022Data Storage
Regarding manipulating a text in widget.
We have a scenario that we had a label plugin where it declare all the label item whatever we give in panel .The output displayed is in label form ,So our scenario is to change the label content irre...
- 03-23-2022
Hi,
You can use a standard Text widget, and add the following code:
widget.on("ready",function(se,ev){
document.getElementById("editor-3").innerHTML = "whatever";
})Best,
Ronen