Hi,
Is it possible to disable/lock activity timeline or the notescontrol in the timeline?
In the UI you can set "Lock the field on the form" but it does not seem to have any effect. I have also tried to lock the section with "Lock the section on the Form" but that also has no effect.
I have tried this code to disable t notescontrol in the timeline.(Works with mot other controls) It runs without any problemes but has no effect:
function sectionDisable(formContext, name, disableStatus) { var controls = formContext.getControl(); for (var i in controls) { if (controls[i]._controlName == name) { controls[i].setDisabled(disableStatus); } } }
/Frode