...
Code Block |
---|
|
<div class="input-group" data-ex-bind="field" data-ex-fieldid="HideCompletedChildren">
<input id="vehicleCheckComplete" type="checkbox" data-ex-attribute="value" />
<label for="vehicleCheckComplete" class="form-control" data-ex-attribute="label">Hide Pixed up Pax</label>
</div> |
T To get list of hotels, we need to fetch data using data-ex-bind="data" data-ex-populatemethod="listHotelPickups" data-ex-autopopulate="1", and display data in table.
...
Code Block |
---|
|
<div class="row" data-ex-bind="activity" data-ex-activityname="ERP.TourRun" data-ex-activitystyle="ReturnManifest">
</div> |
Please note that Return Manifest app is still in-progress. But still we will explain the fields that are displayed in Return Manifest app. We will explain how these data fields are bound.
To get list of drop-off locations, we need to fetch data using bindings as follows and display data in table.
Code Block |
---|
|
<div class="table-responsive">
<table class="table" id="finalDropoffList" data-ex-bind="data" data-ex-populatemethod="listFinalDropoffs"></table>
</div> |
To hide drop-off location, we can add checkbox Hide Dropped Off so user can hide or show drop-off location.
Code Block |
---|
|
<div data-ex-bind="field" data-ex-fieldid="HideCompletedChildren">
<input id="vehicleCheckComplete" type="checkbox" data-ex-attribute="value" />
<label for="vehicleCheckComplete" class="form-control" data-ex-attribute="label">Hide Dropped Off</label>
</div> |
Then driver can finish day by pressing button Finished for day and entering ODO meter reading.
Code Block |
---|
|
<div data-ex-bind="field" data-ex-fieldid="HideCompletedChildren">
<input id="vehicleCheckComplete" type="checkbox" data-ex-attribute="value" />
<label for="vehicleCheckComplete" class="form-control" data-ex-attribute="label">Hide Dropped Off</label>
</div>
<div data-ex-bind="field" data-ex-fieldid="ODO.Finish">
<span data-ex-attribute="label" class="input-group-addon"></span>
<input data-ex-attribute="value" type="number" class="form-control" min="0">
</div> |
Menu app is used for Meal selections. Who would be supplier? How many guests are there? What are the selections of menu items?
...