Skip to content

Commit

Permalink
chore: add search hints (#120)
Browse files Browse the repository at this point in the history
Signed-off-by: Kathurima Kimathi <[email protected]>
  • Loading branch information
KathurimaKimathi authored Sep 19, 2023
1 parent b73ba97 commit c38fdb9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion omod/src/main/webapp/fragments/appointmentRequests.gsp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="ke-panel-frame" ng-controller="AppointmentRequestsCtrl" ng-init="init()">
<div class="ke-panel-heading">Appointment Requests
<input type="text" name="appointmentsSearchString" ng-model="appointmentsSearchString"
ng-change="searchAppointments()" style="width: 260px;margin-left:50px" placeholder="Search ..."/>
ng-change="searchAppointments()" style="width: 300px;margin-left:50px" placeholder="Search using CCC, client name, client contact, appointment reason or status."/>
</div>
<div class="ke-panel-content">
<table class="ke-table-vertical">
Expand Down
4 changes: 2 additions & 2 deletions omod/src/main/webapp/fragments/healthDiary.gsp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="ke-panel-frame" ng-controller="HealthDiaryCtrl" ng-init="init()">
<div class="ke-panel-heading">Health Diary
<input type="text" name="healthDiarySearchString" ng-model="healthDiarySearchString"
ng-change="loadHealthDiaries()" style="width: 260px;margin-left:50px" placeholder="Search ..."/>
<input type="text" name="healthDiarySearchString" ng-model="healthDiarySearchString"
ng-change="loadHealthDiaries()" style="width: 300px;margin-left:50px" placeholder="Search using CCC, mood or note."/>
</div>
<div class="ke-panel-content">
<table class="ke-table-vertical">
Expand Down
2 changes: 1 addition & 1 deletion omod/src/main/webapp/fragments/redFlags.gsp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="ke-panel-frame" ng-controller="RedFlagsCtrl" ng-init="init()">
<div class="ke-panel-heading">Red Flags
<input type="text" name="redFlagsSearchString" ng-model="redFlagsSearchString"
ng-change="loadRedFlags()" style="width: 260px;margin-left:50px" placeholder="Search ..."/>
ng-change="loadRedFlags()" style="width: 300px;margin-left:50px" placeholder="Search using CCC, client name, client contact and status."/>
</div>
<div class="ke-panel-content">
<table class="ke-table-vertical">
Expand Down
2 changes: 1 addition & 1 deletion omod/src/main/webapp/fragments/screeningTool.gsp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="ke-panel-frame" ng-controller="ScreeningToolCtrl" ng-init="init()">
<div class="ke-panel-heading">Screening Tool Red Flags
<input type="text" name="screeningToolRedFlagSearchString" ng-model="screeningToolRedFlagSearchString"
ng-change="loadScreeningToolRedFlags()" style="width: 260px;margin-left:50px" placeholder="Search ..."/>
ng-change="loadScreeningToolRedFlags()" style="width: 300px;margin-left:50px" placeholder="Search using CCC, client name, client contact, request, screening tool name and status."/>
</div>
<div class="ke-panel-content">
<table class="ke-table-vertical">
Expand Down

0 comments on commit c38fdb9

Please sign in to comment.