Methods
These are the available methods for use in Ruby Views.
Get data
Example: Get active customers
Method
table
table namecriteria
Add criteria as needed e.g.: school:”fro”, class:”3a”, year:”2001”- if conflict with built in parameters, wrap them in one pair of curly braces {} as parameter 2
fields
comma separated string of fields to retrive, e.g. fields:”first_name, last_name”filter
optional filter with solr syntax. same as tag “filter”rows
default is 20 rows. Increase to improve sorting, or download more files at once. Set ‘MAX_ROWS’ if needed, but check performance when using large values.- Returns empty array [] if no hits
Lookup data
Lookup data in another table. This is similar to using the tag “lookup” in xml
Example: Lookup address_id to find the city
table customers will be updated with the new data
Method
main
existing variable that you want to extend with more dataforeignkey
the foreign key in the main documentprimarykey
the primary key in the lookup tabletable
the lookup table that has more info