Skip to content

Commit

Permalink
+ (Check-in) Updated the En Route block to correctly list Schedules, …
Browse files Browse the repository at this point in the history
…Locations and Groups available for moving en-route individuals within the check-in manager.
  • Loading branch information
jasonhendee committed Dec 19, 2023
1 parent 926117e commit 27f6627
Show file tree
Hide file tree
Showing 2 changed files with 547 additions and 147 deletions.
6 changes: 3 additions & 3 deletions RockWeb/Blocks/CheckIn/Manager/EnRoute.ascx
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@

<div class="row">
<div class="col-md-4">
<Rock:RockDropDownList ID="ddlMovePersonSchedule" runat="server" Label="Service" AutoPostBack="false" />
<Rock:RockDropDownList ID="ddlMovePersonSchedule" runat="server" Label="Schedule" AutoPostBack="true" Required="true" OnSelectedIndexChanged="ddlMovePersonSchedule_SelectedIndexChanged" />
</div>
<div class="col-md-4">
<Rock:LocationItemPicker ID="lpMovePersonLocation" runat="server" Label="Location" OnSelectItem="lpMovePersonLocation_SelectItem" EnableFullWidth="true" />
<Rock:RockDropDownList ID="ddlMovePersonLocation" runat="server" Label="Location" AutoPostBack="true" Required="true" OnSelectedIndexChanged="ddlMovePersonLocation_SelectedIndexChanged" />
</div>
<div class="col-md-4">
<Rock:RockDropDownList ID="ddlMovePersonGroup" runat="server" Label="Group" AutoPostBack="true" OnSelectedIndexChanged="ddlMovePersonGroup_SelectedIndexChanged" />
<Rock:RockDropDownList ID="ddlMovePersonGroup" runat="server" Label="Group" AutoPostBack="true" Required="true" OnSelectedIndexChanged="ddlMovePersonGroup_SelectedIndexChanged" />
</div>
</div>

Expand Down

0 comments on commit 27f6627

Please sign in to comment.