Hi Everyone,
I am trying to learn Experience Builder Custom Widget. I am trying to use existing Map Layer Widget. Was able to add one more custom actions by adding one more .ts file in actions folder.
Now, I want to Open a Dailog box From where I want to get the symbology and apply to the layer.
execute = (layerItem😞 void => {
  console.log("Change Symbology", layerItem)
 Â
  layerItem.layer.renderer = symbology;
 }
Please suggest on how to open a Dialog box when Layer Action is clicked.
Â