Hello Camunda team!
I’d like to ask is it possible to remove this search box (red color) for Start Process window?
Hello Camunda team!
I’d like to ask is it possible to remove this search box (red color) for Start Process window?
What frontend are you using exactly?
I use AnglularJS, change files and adding scripts into camunda\app\tasklist folder. So I have a couple of AngularJS controllers and custom forms.
I’ve found a simple solution, just to override CSS file and hide this box using css. So as I have my custom CSS file (tasklist.css) I’ve just added:
.form-group.has-feedback.ng-scope{
display: none;
}
Works fine for me.
Thanks for posting your solution!