HI allI used to use the following generic code in prior versions to automatically expand the master detail views when needed.
//wait untill document has loaded
$(document).ready(function() {
//wait a few milli seconds just in case
setTimeout(function(){
//click all those buttons
$('[class="ew-preview-btn ew-icon icon-expand"]').click()
},300);//adjust time
});
I have been looking and trying to figure out what needs to change when it come to converting to 2022 but have had no luck. (or my head is not working)Can anyone help with this?
There is no change and it works fine as before. Make sure your preview type is “row”. Press F12 in your browser and go to the Console to check for JavaScript errors.