modified date input field to support dynamic entry.

This commit is contained in:
Safiyu 2013-12-26 11:15:49 +05:30
parent 016cf6aa7e
commit 847fb2adb2
34 changed files with 52 additions and 52 deletions

View File

@ -80,7 +80,7 @@
<div class="control-group">
<label class="control-label" for="transferDate">{{ 'label.input.transactiondate' | translate }}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly type="text" id="transferDate" datepicker-pop="dd MMMM yyyy" ng-model="formData.transferDate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input type="text" id="transferDate" datepicker-pop="dd MMMM yyyy" ng-model="formData.transferDate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
<div class="control-group">

View File

@ -44,7 +44,7 @@
<div class="control-group" data-ng-switch-when="1">
<label class="control-label">{{'label.input.activationdate' | translate}}</label>
<div class="controls">
<input class="date-disable" readonly id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
</div>

View File

@ -5,7 +5,7 @@
<div class="control-group">
<label class="control-label">{{'label.input.meetingdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="'2020-06-22'"/>Next Meeting on:{{meeting.nextTenRecurringDates[0] | DateFormat}}
<input type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="'2020-06-22'"/>Next Meeting on:{{meeting.nextTenRecurringDates[0] | DateFormat}}
</div>
</div>
<table class="table table-striped" width="100%">

View File

@ -4,7 +4,7 @@
<h3><strong>{{ 'label.heading.confirm' | translate }}</strong></h3>
<div>
<label class="control-label">{{ 'label.input.closuredate' | translate }}<span class="required">*</span></label>
<input class="date-disable" readonly id="closureDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="closureDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
<div>
<label class="control-label">{{ 'label.input.closurereason' | translate }}<span class="required">*</span></label>

View File

@ -41,7 +41,7 @@
<div class="control-group" data-ng-switch-when="1">
<label class="control-label">{{'label.input.activationdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
</div>
@ -54,7 +54,7 @@
<div class="control-group">
<label class="control-label">{{'label.input.submittedon' | translate}}:</label>
<div class="controls">
<input class="date-disable" readonly id="submittedon" type="text" name="submittedon" datepicker-pop="dd MMMM yyyy" ng-model="first.submitondate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="submittedon" type="text" name="submittedon" datepicker-pop="dd MMMM yyyy" ng-model="first.submitondate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
<div class="offset2 paddedleft120">

View File

@ -35,7 +35,7 @@
<div data-ng-hide="edit.status.value=='Pending'" class="control-group">
<label class="control-label">{{'label.input.activationdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
<div class="offset2 paddedleft120">
@ -48,7 +48,7 @@
<div class="paddedleft">
<div>
<label class="control-label">{{ 'label.input.enteractivationdate' | translate }}<span class="required">*</span></label>
<input class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
<br/>
<a id="cancel" href="#/viewgroup/{{edit.id}}" class="btn">{{'label.button.cancel' | translate}}</a>

View File

@ -11,13 +11,13 @@
<div class="control-group" ng-show="showDateField">
<label class="control-label">{{labelName | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly type="date" datepicker-pop="dd MMMM yyyy" id="{{modelName}}" name="modelName" ng-model="formData[modelName]" min="'2000-01-01'" max="restrictDate"/>
<input type="date" datepicker-pop="dd MMMM yyyy" id="{{modelName}}" name="modelName" ng-model="formData[modelName]" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
<div class="control-group" ng-show="showActivationDateField">
<label class="control-label">{{labelName | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly type="date" datepicker-pop="dd MMMM yyyy" id="{{modelName}}" name="modelName" ng-model="formData[modelName]" min="mindate" max="restrictDate"/>
<input type="date" datepicker-pop="dd MMMM yyyy" id="{{modelName}}" name="modelName" ng-model="formData[modelName]" min="mindate" max="restrictDate"/>
</div>
</div>
<div class="control-group" ng-show="closureReasonField">

View File

@ -56,14 +56,14 @@
<div class="control-group" data-ng-switch-when="1">
<label class="control-label">{{'label.input.activationdate' | translate}}:<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="activationDate" type="text" name="activationdate" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="activationDate" type="text" name="activationdate" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
</div>
<div class="control-group">
<label class="control-label">{{'label.input.submittedon' | translate}}:</label>
<div class="controls">
<input class="date-disable" readonly id="submittedon" type="text" name="submittedon" datepicker-pop="dd MMMM yyyy" ng-model="first.submitondate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="submittedon" type="text" name="submittedon" datepicker-pop="dd MMMM yyyy" ng-model="first.submitondate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
<div class="offset3">

View File

@ -88,7 +88,7 @@
<div class="control-group" data-ng-switch-when="1">
<label class="control-label">{{'label.input.activationdate' | translate}}:<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.activationDate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.activationDate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
</div>

View File

@ -47,7 +47,7 @@
<div class="control-group" data-ng-switch-when="1">
<label class="control-label">{{'label.input.activationdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
</div>

View File

@ -18,7 +18,7 @@
<label class="control-label">{{'label.input.meetingstartdate' | translate}}<span class="required">*</span></label>
</td>
<td width="20%">
<input class="date-disable" readonly id="startDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="'2050-01-01'"/>
<input id="startDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="'2050-01-01'"/>
</td>
<td width="20%"></td>
<td width="20%"></td>

View File

@ -59,7 +59,7 @@
<div class="control-group" data-ng-switch-when="1">
<label class="control-label">{{'label.input.activationdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
</div>
@ -73,7 +73,7 @@
<div class="control-group">
<label class="control-label">{{'label.input.submittedon' | translate}}:</label>
<div class="controls">
<input class="date-disable" readonly id="submittedon" type="text" name="submittedon" datepicker-pop="dd MMMM yyyy" ng-model="first.submitondate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="submittedon" type="text" name="submittedon" datepicker-pop="dd MMMM yyyy" ng-model="first.submitondate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
<div class="offset2 paddedleft120">

View File

@ -29,7 +29,7 @@
<div class="control-group">
<label class="control-label">{{'label.input.activationdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
</div>
@ -43,7 +43,7 @@
<div class="paddedleft">
<div>
<label class="control-label">{{ 'label.input.enteractivationdate' | translate }}<span class="required">*</span></label>
<input class="date-disable" readonly id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="mindate" max="restrictDate" required/>
<input id="activationDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="mindate" max="restrictDate" required/>
</div>
<br/>
<a id="cancel" href="#/viewgroup/{{editGroup.id}}" class="btn">{{'label.button.cancel' | translate}}</a>

View File

@ -18,7 +18,7 @@
<label class="control-label">{{'label.input.meetingstartdate' | translate}}<span class="required">*</span></label>
</td>
<td width="20%">
<input class="date-disable" readonly id="startDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="startDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</td>
<td width="20%"></td>
<td width="20%"></td>

View File

@ -6,7 +6,7 @@
<div class="control-group">
<label class="control-label">{{'label.input.meetingdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="'2020-06-22'"/>{{'label.nextmettingon' | translate}}:{{meeting.nextTenRecurringDates[0] | DateFormat}}
<input type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="'2020-06-22'"/>{{'label.nextmettingon' | translate}}:{{meeting.nextTenRecurringDates[0] | DateFormat}}
</div>
</div>
<table class="table table-striped" width="100%">

View File

@ -45,7 +45,7 @@
<div class="control-group" ng-show="chargeData.chargeTimeType.id==2">
<label class="control-label">{{ 'label.input.dueon' | translate }}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="dueDate" type="text" datepicker-pop="dd MMMM yyyy" placeholder="{{'label.input.duedate' | translate}}" ng-model="formData.dueDate" is-open="opened" min="minDate" max="'2020-06-22'"/>
<input id="dueDate" type="text" datepicker-pop="dd MMMM yyyy" placeholder="{{'label.input.duedate' | translate}}" ng-model="formData.dueDate" is-open="opened" min="minDate" max="'2020-06-22'"/>
</div>
</div>
</div>

View File

@ -18,7 +18,7 @@
<div class="control-group">
<label class="control-label" for="assignmentDate">{{ 'label.input.assignmentdate' | translate }}<span class="required">*</span></label>
<div class="controls">
<input class="date-disable" readonly id="assignmentDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.assignmentDate" is-open="opened" min="minDate" max="'2020-06-22'"/>
<input sort id="assignmentDate" type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.assignmentDate" is-open="opened" min="minDate" max="'2020-06-22'"/>
</div>
</div>
<div class="offset3">

View File

@ -27,7 +27,7 @@
<div class="control-group">
<label class="control-label">{{ 'label.input.dob' | translate }}</label>
<div class="controls">
<input id="dob" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDate" max="restrictDate"/>
<input id="dob" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDate" max="restrictDate"/>
</div>
</div>
<div class="control-group">

View File

@ -32,7 +32,7 @@
</td>
<td width="44%">
<label class="control-label">{{ 'label.input.submittedon' | translate }}&nbsp;<span class="required">*</span></label>
<input id="submittedOnDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.submittedOnDate" is-open="opened" min="'2000-01-01'" max="restrictDate" />
<input id="submittedOnDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.submittedOnDate" is-open="opened" min="'2000-01-01'" max="restrictDate" />
</td>
</tr>
<tr class="control-group">

View File

@ -52,7 +52,7 @@
<div class="control-group">
<label class="control-label">{{ 'label.input.dob' | translate }}</label>
<div class="controls">
<input id="dob" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDate" max="restrictDate"/>
<input id="dob" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDate" max="restrictDate"/>
</div>
</div>
<div class="control-group">

View File

@ -13,7 +13,7 @@
<div class="control-group" ng-show="showDateField">
<label class="control-label" for="modelName">{{labelName | translate}}<span class="required">*</span></label>
<div class="controls">
<input id="{{modelName}}" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData[modelName]" min="'2000-01-01'" max="restrictDate"/>
<input id="{{modelName}}" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData[modelName]" min="'2000-01-01'" max="restrictDate"/>
</div>
</div>
@ -90,7 +90,7 @@
<div class="control-group" ng-show="paymentDatefield">
<label class="control-label" for="modelName">{{'label.input.paymentdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input id="{{modelName}}" type="text" class="date-disable" readonly datepicker-pop="dd MMMM yyyy" ng-model="formData.transactionDate" is-open="opened"/>
<input id="{{modelName}}" type="text" sort datepicker-pop="dd MMMM yyyy" ng-model="formData.transactionDate" is-open="opened"/>
</div>
</div>
<div class="control-group" ng-show="showEditChargeAmount">
@ -102,7 +102,7 @@
<div class="control-group" ng-show="showEditChargeDueDate">
<label class="control-label" for="modelName">{{'label.input.dueforcollectedon' | translate}}<span class="required">*</span></label>
<div class="controls">
<input id="{{modelName}}" type="text" class="date-disable" readonly datepicker-pop="dd MMMM yyyy" ng-model="formData.dueDate" is-open="opened"/>
<input id="{{modelName}}" type="text" sort datepicker-pop="dd MMMM yyyy" ng-model="formData.dueDate" is-open="opened"/>
</div>
</div>
<div class="control-group" ng-show="showDelete || showwaiveforspecicficduedate">

View File

@ -70,7 +70,7 @@
</td>
<td width="30%">
<label class="control-label">{{ 'label.input.submittedon' | translate }}&nbsp;<span class="required">*</span></label>
<input id="submittedOnDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.submittedOnDate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
<input id="submittedOnDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.submittedOnDate" is-open="opened" min="'2000-01-01'" max="restrictDate"/>
</td>
</tr>
<tr class="control-group">

View File

@ -121,7 +121,7 @@
</td>
<td>
<label class="control-label">{{ 'label.input.expecteddisbursementon' | translate }}&nbsp;<span class="required">*</span></label>
<input id="expectedDisbursementDate" class="date-disable" readonly type="text" name="expecteddisbursementon" datepicker-pop="dd MMMM yyyy" ng-model="date.second" is-open="opened1" min="minDate" max="'2020-06-22'"/>
<input id="expectedDisbursementDate" sort type="text" name="expecteddisbursementon" datepicker-pop="dd MMMM yyyy" ng-model="date.second" is-open="opened1" min="minDate" max="'2020-06-22'"/>
</td>
</tr>
<tr>

View File

@ -41,12 +41,12 @@
<div>
<label class="control-label">{{ 'label.input.fromdate' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="fromDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDat" max="'2050-06-22'"/>
<input id="fromDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDat" max="'2050-06-22'"/>
</div></div>
<div>
<label class="control-label">{{ 'label.input.todate' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="toDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.second" is-open="opened1" min="minDate" max="'2020-06-22'"/>
<input id="toDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.second" is-open="opened1" min="minDate" max="'2020-06-22'"/>
</div>
</div>
</div>
@ -58,7 +58,7 @@
<div class="control-group">
<label class="control-label">{{ 'label.input.repaymentsheduleto' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="repaymentsRescheduledTo" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.third" is-open="opened2" min="minDate" max="'2020-06-22'"/>
<input id="repaymentsRescheduledTo" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.third" is-open="opened2" min="minDate" max="'2020-06-22'"/>
</div>
</div>
</td>

View File

@ -36,7 +36,7 @@
<div class="control-group">
<label class="control-label">{{ 'label.input.openedon' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="openingDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="restrictDate"/>
<input id="openingDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="restrictDate"/>
</div>
</div>
</td>

View File

@ -30,12 +30,12 @@
<div>
<label class="control-label">{{ 'label.input.fromdate' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="fromDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.fromDate" is-open="opened" min="minDat" max="'2050-06-22'"/>
<input id="fromDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.fromDate" is-open="opened" min="minDat" max="'2050-06-22'"/>
</div></div>
<div>
<label class="control-label">{{ 'label.input.todate' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="toDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.toDate" is-open="opened1" min="minDate" max="'2020-06-22'"/>
<input id="toDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.toDate" is-open="opened1" min="minDate" max="'2020-06-22'"/>
</div>
</div>
</div>
@ -47,7 +47,7 @@
<div class="control-group" ng-hide="holidayStatusActiveDeleted">
<label class="control-label">{{ 'label.input.repaymentsheduleto' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="repaymentsRescheduledTo" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.repaymentsRescheduledTo" is-open="opened2" min="minDate" max="'2020-06-22'"/>
<input id="repaymentsRescheduledTo" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.repaymentsRescheduledTo" is-open="opened2" min="minDate" max="'2020-06-22'"/>
</div>
</div>
</td>

View File

@ -26,7 +26,7 @@
<div class="control-group">
<label class="control-label">{{ 'label.input.openedon' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="openingDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="restrictDate"/>
<input id="openingDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="first.date" is-open="opened" min="minDate" max="restrictDate"/>
</div>
</div>
</td>

View File

@ -49,13 +49,13 @@
<tr>
<td width="40%">
<label class="control-label">{{ 'label.input.startdate' | translate }}&nbsp;</label>
<input id="startDate" class="date-disable" readonly type="text"
<input id="startDate" sort type="text"
datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDate"
max="'2020-06-22'"/>
</td>
<td width="40%">
<label class="control-label">{{ 'label.input.closedate' | translate }}&nbsp;</label>
<input id="closeDate" class="date-disable" readonly type="text"
<input id="closeDate" sort type="text"
datepicker-pop="dd MMMM yyyy" ng-model="date.second" is-open="opened1" min="minDate"
max="'2020-06-22'"/>
</td>

View File

@ -44,13 +44,13 @@
<div class="control-group" ng-show="!withDrawCharge && !chargeTimeTypeAnnualOrMonth">
<label class="control-label">{{ 'label.input.dueforcollectedon' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="feeOnAnnualMonthDay" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.specificduedate" is-open="opened"/>
<input id="feeOnAnnualMonthDay" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.specificduedate" is-open="opened"/>
</div>
</div>
<div class="control-group" ng-show="!withDrawCharge && chargeTimeTypeAnnualOrMonth">
<label class="control-label">{{ 'label.input.dueon' | translate }}<span class="required">*</span></label>
<div class="controls">
<input id="feeOnMonthDay" class="date-disable" readonly type="text" datepicker-pop="dd MMMM" ng-model="date.due" is-open="opened"/>
<input id="feeOnMonthDay" sort type="text" datepicker-pop="dd MMMM" ng-model="date.due" is-open="opened"/>
</div>
</div>
<div class="control-group" ng-show="chargeTimeType.value == 'Monthly Fee' ">

View File

@ -36,7 +36,7 @@
</td>
<td width="44%">
<label class="control-label">{{ 'label.input.submittedon' | translate }}&nbsp;<span class="required">*</span></label>
<input id="submittedOnDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.submittedOnDate" is-open="opened" min="minDate" max="restrictDate"/>
<input id="submittedOnDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.submittedOnDate" is-open="opened" min="minDate" max="restrictDate"/>
</td>
</tr>
<tr class="span2"></tr>

View File

@ -40,7 +40,7 @@
</td>
<td width="44%">
<label class="control-label">{{ 'label.input.submittedon' | translate }}&nbsp;<span class="required">*</span></label>
<input id="submittedOnDate" class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.submittedOnDate" is-open="opened" min="minDate" max="restrictDate"/>
<input id="submittedOnDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.submittedOnDate" is-open="opened" min="minDate" max="restrictDate"/>
</td>
</tr>
<tr class="span2"></tr>

View File

@ -13,7 +13,7 @@
<div class="control-group" ng-show="showDateField">
<label class="control-label" for="modelName">{{labelName | translate}}<span class="required">*</span></label>
<div class="controls">
<input id="{{modelName}}" type="text" class="date-disable" readonly datepicker-pop="dd MMMM yyyy" ng-model="formData[modelName]" is-open="opened" min="minDate" max="restrictDate"/>
<input id="{{modelName}}" type="text" sort datepicker-pop="dd MMMM yyyy" ng-model="formData[modelName]" is-open="opened" min="minDate" max="restrictDate"/>
</div>
</div>
@ -103,7 +103,7 @@
<div class="control-group" ng-show="paymentDatefield">
<label class="control-label" for="modelName">{{'label.input.paymentdate' | translate}}<span class="required">*</span></label>
<div class="controls">
<input id="{{modelName}}" type="text" class="date-disable" readonly datepicker-pop="dd MMMM yyyy" ng-model="formData[modelName]" is-open="opened"/>
<input id="{{modelName}}" type="text" sort datepicker-pop="dd MMMM yyyy" ng-model="formData[modelName]" is-open="opened"/>
</div>
</div>

View File

@ -21,13 +21,13 @@
<div class="control-group">
<label class="control-label"></label>
<div class="controls">
<input type="text" class="date-disable" readonly placeholder="{{'label.input.fromdate' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDate" max="'2020-06-22'"/>
<input type="text" sort placeholder="{{'label.input.fromdate' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.first" is-open="opened" min="minDate" max="'2020-06-22'"/>
</div>
</div>
<div class="control-group">
<label class="control-label"></label>
<div class="controls">
<input type="text" class="date-disable" readonly placeholder="{{'label.input.todate' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.second" is-open="opened1" min="minDate" max="'2020-06-22'"/>
<input type="text" sort placeholder="{{'label.input.todate' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.second" is-open="opened1" min="minDate" max="'2020-06-22'"/>
</div>
</div>
<div class="control-group">
@ -65,12 +65,12 @@
</div>
<div class="control-group">
<div class="controls">
<input type="text" class="date-disable" readonly placeholder="{{'label.input.checkedfrom' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.third" is-open="opened2" min="minDate" max="'2020-06-22'"/>
<input type="text" sort placeholder="{{'label.input.checkedfrom' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.third" is-open="opened2" min="minDate" max="'2020-06-22'"/>
</div>
</div>
<div class="control-group">
<div class="controls">
<input type="text" class="date-disable" readonly placeholder="{{'label.input.checkedto' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.fourth" is-open="opened3" min="minDate" max="'2020-06-22'"/>
<input type="text" sort placeholder="{{'label.input.checkedto' | translate}}" datepicker-pop="dd MMMM yyyy" ng-model="date.fourth" is-open="opened3" min="minDate" max="'2020-06-22'"/>
</div>
</div>
<span><a ng-click="search()" class="btn btn-primary control"><i class="icon-search icon-white"></i>{{'label.button.advancesearch' | translate}}</a></span>

View File

@ -128,7 +128,7 @@
<h3 class="bolder">{{'label.heading.enterclientsactivationdate' | translate}}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h3>
</div>
<div class="modal-body modal-big">
<input class="date-disable" readonly type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.actDate" is-open="opened" min="restrictDate" max="restrictDate"/>
<input type="text" datepicker-pop="dd MMMM yyyy" ng-model="date.actDate" is-open="opened" min="restrictDate" max="restrictDate"/>
</div>
<div class="modal-footer">
<button class="btn btn-warning" ng-click="cancel()">{{'label.button.cancel' | translate}}</button>