Guest User

Untitled

a guest
Dec 13th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <cfcomponent extends="Controller" output="false">
  2.  
  3. <cffunction name = "init">
  4. <cfset Super.init() />
  5. </cffunction>
  6.  
  7. <cffunction name = "remotesearch">
  8. <cfsetting showdebugoutput="false">
  9. <cfset provides("json")>
  10. <cfif IsDefined("params.term") and Len(Trim(params.term)) GT 0>
  11. <cfset locations = model("Location").findAll(where="zipcode LIKE '#params.term#%'", order="zipcode DESC", include="state")>
  12. </cfif>
  13. <cfset renderWith(locations)>
  14. </cffunction>
  15.  
  16. </cfcomponent>
Add Comment
Please, Sign In to add comment