AdminSara Juel
(Access Services Product Manager, Atlas Systems, Inc.)
My feedback
-
0 votes
An error occurred while saving the comment AdminSara Juel (Access Services Product Manager, Atlas Systems, Inc.) shared this idea ·
Hello Terry,
Unfortunately, voting is turned off for bugs. The ILLiad product team is currently discussing what fixes are going to be added in the next major version release. I will post an update here once I have more information. In the meantime, we do have a workaround that allows you to still see the details within the request form in the client.
Workaround:
The workaround will still leave the DocumentType as Multimedia; however, the format type (e.g., CD, Blu Ray) will be added to the Loan Info tab of the request Details. See attached images for examples.
To implement this workaround, replace the following (defaultlines 88-101):
<label for="Format">
<span class="field">
<span class="<#ERROR name='ERRORFormat'>">
Format
</span>
</span>
</label>
<select id="Format" name="Format" size="1" class="custom-select mr-sm-2" data-persistedValue="<#PARAM name='Format'>">
<option>CD</option>
<option>Blu Ray</option>
<option>Cassette</option>
<option>DVD</option>
</select>
</div>
With this:
<label for="LoanEdition">
<span class="<#ERROR name='ERRORLoanEdition'>">
Format
<span class="req">(required)</span>
</span>
</label>
<select id="LoanEdition" name="LoanEdition" size="1" class="custom-select mr-sm-2" required>
<option selected disabled><#PARAM name='LoanEdition'></option>
<option value="CD">CD</option>
<option value="Blu Ray">Blu Ray</option>
<option value="Cassette">Cassette</option>
<option value="DVD">DVD</option>
</select>
</div>