EXAM ATTENDANCE PDF ISSUE FIXED
This commit is contained in:
parent
7170e02e25
commit
379c395e0f
@ -151,6 +151,8 @@ $scope.isLoaderTxt = "Loading...";
|
|||||||
{
|
{
|
||||||
$scope.studentInfoPM.push(value);
|
$scope.studentInfoPM.push(value);
|
||||||
}
|
}
|
||||||
|
$rootScope.studentInfoAM_Length = $scope.studentInfoAM.length;
|
||||||
|
$rootScope.studentInfoPM_Length = $scope.studentInfoPM.length;
|
||||||
});
|
});
|
||||||
//console.log($scope.studentInfo);
|
//console.log($scope.studentInfo);
|
||||||
$scope.open($scope.myModel.universityName['universityName'],$scope.studentInfoAM,$scope.studentInfoPM,myModel.centerName,$scope.selectedBatchName, myModel.examDate);
|
$scope.open($scope.myModel.universityName['universityName'],$scope.studentInfoAM,$scope.studentInfoPM,myModel.centerName,$scope.selectedBatchName, myModel.examDate);
|
||||||
|
|||||||
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div id="student_list_AM">
|
<div id="student_list_AM">
|
||||||
<table width="100%" border="1" id = "attendanceTableAM" style="background-color:#fff;">
|
<table width="100%" border="1" id = "attendanceTableAM" style="background-color:#fff;" ng-if="studentInfoAM_Length != 0">
|
||||||
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
|
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="student in dataForExamAttendanceAM" >
|
<tr ng-repeat="student in dataForExamAttendanceAM" >
|
||||||
@ -42,7 +42,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="student_list_PM">
|
<div id="student_list_PM">
|
||||||
<table width="100%" border="1" id = "attendanceTablePM" style="background-color:#fff;">
|
<table width="100%" border="1" id = "attendanceTablePM" style="background-color:#fff;" ng-if="studentInfoPM_Length != 0">
|
||||||
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
|
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="student in dataForExamAttendancePM" >
|
<tr ng-repeat="student in dataForExamAttendancePM" >
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user