Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2018-08-29 01:51 PM
The following works to trigger an action, when the user permission field is a Dropdown format. I'm having trouble getting it to work with a Values Popup box. I've tried a few different variations using span and such, but nothing seems to work.
Thanks in advance for any suggestions!
<script type="text/javascript">
var userPermField = 20936;
Sys.Application.add_load(function() {
$('div[id*="f' + userPermField + 'c"]').change(function() {
alert("This is an alert");
});
});
</script>
2018-09-06 11:15 AM
Refreshing this... anyone have any thoughts on what I might be able to try?
2018-12-10 11:33 AM
$('div[id*="f' + userPermField + 'c_s"]')