So i got this working for loading a saved survey
JavaScriptconst localStorageName = "SaveLoadSurveyCreatorExample";
const savedFile = window.localStorage.getItem(localStorageName);
if (savedFile !== null){
const savedData = JSON.parse(savedFile);
creator.JSON = savedData;
}
How can I get the survey creator to focus on the first loaded question? Because right now the focus is on the design surface and the property grid shows the property of the survey itself.
I want the property grid to show the property of the first loaded question.