Custom Workitem forms by template
Best Answers
-
Joe_Burrows Cireson Devops Super IT Monkey ✭✭✭✭✭Hi David
Its possible with some customization. A similar concept of dynamic forms is described below, where a custom form is exposed based on form ID.
https://player.vimeo.com/video/151592151
sethcoussens.com/2016/01/24/cireson-portal-dynamic-forms-by-template-id/
sethcoussens.com/2016/01/24/cireson-portal-dynamic-forms-by-template-id-part-2/
sethcoussens.com/2016/02/10/cireson-portal-dynamic-forms-by-template-id-part-3/
Hope that helps!5 -
Konstantin_Slavin-Bo Customer Ninja IT Monkey ✭✭✭✭You could use the answer from this thread: https://community.cireson.com/discussion/comment/7209/#Comment_7209
To remove:
$("elementselectors").removeAttr('required');
To add:
$("elementselectors").prop('required', true);
5
Answers
Its possible with some customization. A similar concept of dynamic forms is described below, where a custom form is exposed based on form ID.
https://player.vimeo.com/video/151592151
sethcoussens.com/2016/01/24/cireson-portal-dynamic-forms-by-template-id/
sethcoussens.com/2016/01/24/cireson-portal-dynamic-forms-by-template-id-part-2/
sethcoussens.com/2016/02/10/cireson-portal-dynamic-forms-by-template-id-part-3/
Hope that helps!
yes this is great, the only thing i'm getting stuck on is dynamically turning the required flag on and off with the hidden field as when the field is hidden i no longer want it to be required as it flags as not filled out and stops the workitem from being saved
To remove:
$("elementselectors").removeAttr('required');
To add:
$("elementselectors").prop('required', true);