Hi guys,
I am facing an issue on setting the start date on date picker.As expected, once the earliest date that was selected then all earlier dates will be disabled. However, it’s not working as following
<pf-form-group-apq
ng-if="param.name=='pEndDate'" ng-init="param.index = $index"
pf-label="Quotation End Date" required
pf-label-class="col-sm-3"
pf-input-class="col-sm-9"
pf-info="{{$ctrl.finalParameters[$index].info}}">
<input type="date" class="form-control" data-date-start-date="{{$ctrl.finalParameters[10].value}}"
ng-model="$ctrl.finalParameters[param.index].value">
</pf-form-group-apq>
I think I am pretty close to it but not sure what’s wrong. Wondering if there’s any suggestions? Thanks a lot.