No commit activity in last 3 years
No release in over 3 years
simple column filtering and sorting.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

Make It Searchable

간단한 칼럼 filtering, sorting 기능, 아직 마무리 안됨.

Filtering

  ActiveRecordModel.custom_filter({:column_name => "query_string", :another_column => 'another_query_string'})

Sorting

  ActiveRecordModel.custom_order("#{column_name}_asc")
  ActiveRecordModel.custom_order("#{column_name}_desc")

Filtering and Sorting

  ActiveRecordModel.custom_query({:column_name => "query_string"}, "#{column_name}_desc")