Skip to main content

ILLiad 9.2 Default Web Pages Point Release Staging (January 27, 2025)

DD Month YYYY Default Web Page Release

A new version of the default web pages has been released to improve the user experience on the ILLiad web interface.

The new default web pages are available for download on the **ILLiad Downloads**page. To implement these changes:

  • **Download**the new web pages and replace your existing pages.
  • If you have customizations, find and replace the code changes in Implementing x.x Web Page Changes (insert link).
FixedFixed various issues on the default web pages. The list of changes can be found below. For more information on implementing each fix, see Implementing x.x Web Page Changes (insert link).


  • Fixed a bug regarding the screen reader accessibility of the search bar within the navigation menu of include_nav_search.html. It has now been correctly nested within the navigation list HTML, improving the screen reader experience.


    The search bar in the Lending pages (Lending/include_nav_search.html) has also been updated to look and behave more consistent with the search bar in the Borrowing pages. It will now be located directly adjacent to the other navigation options and will now hide itself along with the other options when the menu collapses on smaller screen widths.



DD Month YYYY Web Pages Release

Improve Accessibility of Search Bar| Change 3

warning

To improve the accessibility of the search bar on the Borrowing and Lending web pages and to make the Lending web pages' search bar look and behave consistently with the Borrowing search bar, please overwrite your Lending\include_nav_search.html and include_nav_search.html files with the updated files or make the following changes manually:

Lending\include_nav_search.html

Change this (default lines 65-74):



<br></ul></br></div><form action="illiadlending.dll" name="Search" method="post" class="form-inline my-2 my-lg-0"><input type="hidden" name="ILLiadForm" value="Search"><input type="hidden" name="SearchType" value="Active"><input id="SearchCriteria" class="form-control mr-sm-2" type="search" value="" name="SearchCriteria" title="Search criteria" placeholder="Search" aria-label="Search"> <button class="btn btn-outline-primary my-2 my-sm-0 fas fa-search fa-1x" name="SubmitButton" value="Search" title="Search" type="submit"></button></form> <br>
To this:



<br> <li class="ml-0"><form action="illiadlending.dll" name="Search" method="post" class="form-inline my-2 my-lg-0"><input type="hidden" name="ILLiadForm" value="Search"><input type="hidden" name="SearchType" value="Active"><input id="SearchCriteria" class="form-control mr-sm-2" type="search" value="" name="SearchCriteria" title="Search criteria" placeholder="Search" aria-label="Search"> <button class="btn btn-outline-primary my-2 my-sm-0 fas fa-search " name="SubmitButton" value="Search" title="Search" type="submit"></button></form></li></ul></br></div><br>

include_nav_search.html

Change this (default lines 70-78):



<br> <form action="illiad.dll" name="Search" method="post" class="form-inline my-2 my-lg-0"><input type="hidden" name="ILLiadForm" value="Search"><input type="hidden" name="SearchType" value="Active"><input id="SearchCriteria" class="form-control mr-sm-2" type="search" value="" name="SearchCriteria" title="Search criteria" placeholder="Search" aria-label="Search"> <button class="btn btn-outline-primary my-2 my-sm-0 fas fa-search fa-1x" name="SubmitButton" value="Search" title="Search" type="submit"></button></form> </ul></br></div><br>
To this:



<br><li class="ml-0"><form action="illiad.dll" name="Search" method="post" class="form-inline my-2 my-lg-0"><input type="hidden" name="ILLiadForm" value="Search"><input type="hidden" name="SearchType" value="Active"><input id="SearchCriteria" class="form-control mr-sm-2" type="search" value="" name="SearchCriteria" title="Search criteria" placeholder="Search" aria-label="Search"> <button class="btn btn-outline-primary my-2 my-sm-0 fas fa-search " name="SubmitButton" value="Search" title="Search" type="submit"></button></form></li></ul></br></div><br>

Change 3 (Multiple files with the same change in each)

To <description of change>, please overwrite the files listed below with the new default files or make the changes on each page manually following the example below:

Example - <filename>

Change this (default lines x-x):



<br>Existing Code<br>
To this:



<br>New Code<br>
info

On the following web page files at the specified default lines:

  • <filename> (default lines x-x)
  • <filename> (default lines x-x)
  • etc