<table class='table table-head table-hover table-bordered table-title-left table-margin'> <thead> <tr> <th class='row3 custom-th'>Exam ID</th> <th class='row3 custom-th'>Examination name</th> <th class='row3 custom-th'>Examination detail</th> <th class='row3 custom-th'>Selected</th> </tr> </thead> <tbody> <tr ng-repeat='ex in examlist | orderBy: "examid"'> <td class='custom-td center'>{{ ex.examid }}</td> <td class='custom-td'>{{ ex.examdata.topic.eng }}</td> <td class='custom-td'>{{ ex.examdata.description.eng }}</td> <td class='custom-td center'> <a class='btn-icon' ng-click='selectExam(ex)' ng-show='checkList(ex.examid)'><i class='fa fa-plus-square'></i></a> </td> </tr> </tbody> </table> <center> <a class='btn btn-danger btn-spacebot' ng-click='close()'>Close</a> </center>