Hi Rob,
Thanks for using Syncfusion products. We have analyzed your query and prepared the sample based on your requirement .Please get the sample from below location
Sample
In this sample, we have maintained the dropdown list in page2.html which will load in main page using ng-include. The page will load when you click on the button in main page.
To set the focus to control, we have used ‘$includeContentLoaded’ event which will trigger after the ng-include src page loaded success fully.
Please refer the below code snippet
$scope.$on("$includeContentLoaded", function (event, templateName) {
if (($(".e-dropdownlist").length > 0))
$($(".e-dropdownlist")[0]).focus();
});
|
Please check with the provided samples and let us know if it helps. If we misunderstood your queries, please provide more details about the requirement that will be easy for us to provide the exact solution
Regards,
HariKrishnan