Activiti-AngularApp
Activiti-AngularApp copied to clipboard
Missing ng-checked for booleans in form
There is an issue with the checkboxes in form.html.
< input ng-if="item.type=='boolean'" ng-visible="item.readable" ng-enabled="item.writable" type="checkbox" class="form-control" placeholder="{{item.name}}" ng-model="taskDetailed.propertyForSaving[item.id].value" style="width:16px;">
with ng-checked it will show when true or false:
< input ng-if="item.type=='boolean'" ng-visible="item.readable" ng-enabled="item.writable" type="checkbox" class="form-control" placeholder="{{item.name}}" ng-model="taskDetailed.propertyForSaving[item.id].value" style="width:16px;" ng-checked="{{item.value}}">
Awesome, than you for this! I will add it in the code.