Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * @author Alidad Soleimani
  3.  */
  4.  
  5. VIEWS (GSP):
  6. ...
  7. <g:javascript src="jquery/jquery-1.6.2.min.js" />
  8. ...
  9.  
  10. <style type="text/css">
  11. .ui-autocomplete-loading {
  12.     background: white   url(${ resource(dir :       'images', file : 'ajax-loader.gif')}) right center no-repeat }
  13. </style>
  14. ...
  15.  
  16. <label>Author Name:</label>
  17. <g:autoComplete id="authorId"
  18.         action='autocompleteAction'
  19.         controller='AnyController '
  20.         domain='Author'
  21.         searchField='name'
  22.         value=''
  23. />
  24.  
  25. <label>Book ISBN:</label>
  26. <g:autoComplete id="bookId"
  27.         action='autocompleteAction'
  28.         controller='AnyController'
  29.         domain='Book'
  30.         searchField='isbn'
  31.         value=''
  32. />