Hi @FC_13279586
You are correct that AutoFocus and focusOnLoad are not available in 9.3.9. Here are some other possibilities:
JavaScript Approach: You can use JavaScript to programmatically set the focus on the desired text field. This can be done by adding a script to the main Mashup that targets the contained Mashup's text field. For example:
var containedTextField = document.getElementById('yourContainedTextFieldId'); if (containedTextField) { containedTextField.focus(); }
Event Handling: Consider using event handlers to trigger the focus change. For instance, you can set up an event on the main Mashup that, when triggered (like a button click), will execute the JavaScript to focus on the text field in the contained Mashup.
Legacy Focus Options: Investigate any legacy focus options or other widget properties that might be available in your version. While specific attributes may not be present, there could be other ways to manipulate focus through custom scripts or event handling.
For further insights and documentation, you can refer to the following resources:
Regards.
--Sharon