Skip to content

Instantly share code, notes, and snippets.

@cgillis-aras
Created June 29, 2018 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cgillis-aras/b53c79bfe11cc43d946ace9fd4a7973d to your computer and use it in GitHub Desktop.
Save cgillis-aras/b53c79bfe11cc43d946ace9fd4a7973d to your computer and use it in GitHub Desktop.
Sample code demonstrating how to disable an item field in Aras Innovator
var input = getFieldByName("owned_by_id");
setTimeout(function() {
input.getElementsByTagName("input")[0].disabled = true;
input.getElementsByTagName("button")[0].disabled = true;
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment