Hello Guys,
I have a scenario to access QuickView form and get the value from the timer control which is present in the quick view form.
I tried with the below code and it is not working. Please give your suggestion on this.
var quickviewControl = formContext.ui.quickForms.get("quickview_name");
{
if(quickviewControl.isLoaded())
{
var myValue = quickviewControl.getControl("timercontrol_name").getAttribute().getValue();// not working in this line
}
}