...
Prior to OpenMRS version 1.8, the search widgets were written with dojo which involved writing a separate javascript file that extended where you would have to extended the parent openmrsSearch OpenmrsSearch for each Openmrs Object if it were to be searchable on w web page, the dojo widgets in the webapp. The widgets would fetch all hits in one ajax query which would take sometime a while to return all the hits in case there are many making the widgets slow. In 1.8, this was changed by introducing a single and more generic search widget written with jquery, the widget is expected to be faster from a user's stand point in that it fetches just the exact amount of results to display on the first page and then continue to query the server for the rest in the background while updating the table until all results are returned. The reason behind this is that it should take way less time to display the first N results to display on the first page rather waiting for all the hits to be returned in one call in case there are many. The objective is to increase the perceived speed from a user's point of view since they get some results returned in nick of time even if it isn't all.
How to include a search widget for a domain object in a jsp
This can be relatively trivial simple if the domain object already has objects to search already have the required methods in the API. Currently the required methods for the search widgets to work as expectedhave been added for Concepts, Encounters, Patients, Users, Locations, Providers, Drugs and ConceptReferenceTerms. Let's assume you wish to add an encounter search widget to you your jsp, below is what how you need to can do it.
Code Block |
---|
<openmrs:htmlInclude file="/dwr/interface/DWREncounterService.js"/> <openmrs:htmlInclude file="/scripts/jquery/dataTables/css/dataTables_jui.css"/> <openmrs:htmlInclude file="/scripts/jquery/dataTables/js/jquery.dataTables.min.js"/> <openmrs:htmlInclude file="/scripts/jquery-ui/js/openmrsSearch.js" /> <script type="text/javascript"> var lastSearch; $j(document).ready(function() { new OpenmrsSearch("findEncounter", true, doEncounterSearch, doSelectionHandler, [ {fieldName:"personName", header:"Patient Name}, {fieldName:"encounterType", header:"Encounter Type}, {fieldName:"formName", header:"Encounter Form}, {fieldName:"providerName", header:"Encounter Provider}, {fieldName:"location", header:"Encounter Location}, {fieldName:"encounterDateString", header:"Encounter Date} ], { searchLabel: '<spring:message code="Encounter.search" javaScriptEscape="true"/>', searchPlaceholder:'<spring:message code="Encounter.search.placeholder" javaScriptEscape="true"/>' }); }); //The action to take when the user selects an item from the hits in the widget function doSelectionHandler(index, data) { document.location = "encounter.form?encounterId=" + data.encounterId + "&phrase=" + lastSearch; } //Contains the logic that fetches the results from the server function doEncounterSearch(text, resultHandler, getMatchCount, opts) { lastSearch = text; DWREncounterService.findCountAndEncounters(text, opts.includeVoided, opts.start, opts.length, getMatchCount, resultHandler); } </script> |
The first four html includes are required because they contain the necessary scripts used by the widgets and the css file for improved styling via datatables' support for jquery-ui themes so that the widgets match the active theme on the page.
Next thing is to initialize the widget and there are 2 ways to do it, the one used above is the one of them which uses delegates to a helper function that takes in 4 arguments. Below is the other way:
...
The arguments passed to the widgets are to used to customize the widget properties, in the example above, 'searchLabel' specifies the label that appears to the left of the search input box, 'searchPlaceHolder' specifies the text to to display inside the input box as a place holder, 'searchHandler' specifies the javascript function to be called to fetch the hits from the server, and 'fieldsAndHeaders' specifies the properties of the returned objects to display in the table of results along with their respective column headers See , see below for the full list of the widget properties. 'SelectionHandler' specifies the function to be called when the user clicks on an item from the widgetselects a row in the table, in our example above, we open the encounter form and the encounter to edit becomes the selected one.
'SearchHandler' specifies the function that will get called by the script to fetch results from the server, the function gets called at least once once the search is triggered, the . The first call is expected to return a map with 2 key-value pairs i.e the expected total count of results and results to display on the first page. Typically, you should have methods logic on the server that get called by this function via ajax and it is important to make them behave as expectedsure it returns the expected map. The keys in the returned map are 'count' and 'objectList' and their values should be the total count of expected results and the results to display on the first page respectively. Any subsequent calls to the search handler after the first call don't require that the count gets returned.
The implementation of the server side logic should call the API methods that return the count and the appropriate search method that supports paging for the given domain object, in this case they would be EncounterService.getCountOfEncounters(String, boolean) and EncounterService.getEncounters(String, Integer, Integer, boolean). In the DAO layer, it's highly recommended that these methods use the same criteria object and the difference should be that the one that gets the count sets a row count projection while the other should return the actual hits, implying objects matching the criteria. This implies that the total number of hits fetched when the search is done should always match the value returned by the get Count method otherwise the scripts in the widgets will fail with the assumption that there is either more hits to fetch or some will get left out. For an example implementation of the methods in the DAO layer, you can look at HibernateEncounterDAO.getCountOfEncounters(String, boolean) and HibernateEncounterDAO.getEncounters(String, Integer, Integer, boolean).
...