I want to use a value from one widget as a parameter to open another widget I currently have a widget, 'InfoTemplate' (a popup) that has a button that launches another widget, `TaskManager`, when clicked:
<SPAN class="" style="color: var(--black-750); border: 0px; font-weight: inherit; font-size: 13px;">createSubprojectDropdown function. My initial idea is to simple add
something to check and see if there is a subproject value from InfoTemplate, and if so, send that to the loadData
function</SPAN><SPAN class="" style="color: var(--black-750); border: 0px; font-weight: inherit; font-size: 13px;">.
var subproj_name = updateFeatureOriginal.attributes.projectname;
if (subproj_name != undefined) {
thisWidget.loadData(subproj_name, proj_type_obj);
};
Is there an easier way to do this? Should I be using `FeatureAction` or some other methodology?
</SPAN>