call track changes done
This commit is contained in:
parent
7c25c5eafc
commit
61259b5783
@ -83,12 +83,24 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td>University</td>
|
||||
<td>{{followupDetails.UniversityName}}</td>
|
||||
<td ng-class="{'has-error':Form.editUniversity.$dirty && Form.editUniversity.$invalid, 'has-success':Form.editUniversity.$valid}">
|
||||
<input type="text" placeholder="Enter University"
|
||||
autofocus tabindex="2" class="form-control" name="editUniversity" id="editUniversity" ng-maxlength="50"
|
||||
ng-model="followupDetails.UniversityName" ng-pattern="/^[a-zA-Z.,/\-\s]*$/" >
|
||||
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.editUniversity.$error.maxlength || Form.editUniversity.$error.pattern">Enter a valid university name</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Course</td>
|
||||
<td>
|
||||
{{followupDetails.CourseName}}
|
||||
<td ng-class="{'has-error':Form.editCourse.$dirty && Form.editCourse.$invalid, 'has-success':Form.editCourse.$valid}">
|
||||
<input type="text" placeholder="Enter Course"
|
||||
autofocus tabindex="3" class="form-control" name="editCourse" id="editCourse" ng-maxlength="50"
|
||||
ng-model="followupDetails.CourseName" ng-pattern="/^[a-zA-Z.,/\-\s]*$/" >
|
||||
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.editCourse.$error.maxlength || Form.editCourse.$error.pattern">Enter a valid course name</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@ -235,6 +247,7 @@
|
||||
<!-- <option value="">Select Status</option>-->
|
||||
|
||||
</select>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user