//This code will dynamically increase/decrease the height of the Multiline text field - [Wizard 3]
var textArea = fd.field('Reason_For_Difference').$refs.textarea;
function recalcHeight() {
textArea.style.height = (textArea.scrollHeight > textArea.clientHeight) ? (textArea.scrollHeight) + "px" : "120px";
}
recalcHeight();
$(textArea).keyup(recalcHeight);
*remember to change the "Reason_For_Difference" field name to your field name.
Dear @itapps,
You're using SharePoint Online, right? Strange, it should auto-update and the latest version is v2.0.3
You can always download both the app package and the desktop editor from the Plumsail Account - Plumsail Account
To check app package version, you need to open the app catalog in SharePoint Admin Center:
Go to More features in the SharePoint admin center, and sign in with an account that has admin permissions for your organization.
Hi,
I do not know if it is the same in SHP on-prem and online, but do not you need to have the syntax like: fd.spRendered(function() {
}
I only see "fd.rendered".
Steve