2012-10-30 85 views
3

默認情況下filter :foo其中foo是一個整數字段將產生相等過濾器。有沒有什麼內置的方法可以使它像日期過濾器一樣工作:繪製兩個可以像範圍一樣工作的輸入?使用範圍過濾整數字段

回答

4

不,沒有這樣的默認設置,但是自己創建它非常容易。

請參閱我的例子ghist https://gist.github.com/3995659

把它初始化目錄

使用它像

filter :id , :as => :numeric_range 
+2

謝謝。這裏還有一些CSS規則可以使這個輸入看起來像日期過濾器一樣:https://gist.github.com/4015588 – inossidabile

+0

很好用。謝謝。並感謝@inossidabile的造型。 –

+0

如果使用更高版本的ActiveAdmin,請將''#{method} _gte「'和'」#{method} _lte「'改爲'」#{method} _gteq「'和'」#{method} _lteq「 –