meta-search Questions
5
Solved
I've a table with an integer column called "map_id", I want to add an activeadmin filter to filter if this column IS NULL or IS NOT NULL.
How could this be implemented ?
I tried the following fil...
Exegesis asked 20/8, 2012 at 12:57
2
Solved
I have a Model with :birthday attribute and I want to filter out those dates by month specified in the form (ActiveAdmin's DSL :select).
This is an example of simple scope that extract only the mo...
Catlaina asked 20/8, 2012 at 18:45
2
I have belongs_to and has_many assotiations between two models. By default, activeadmin using select input for it. But in my case, it's imposible - because I have a thousands items.
When I trying ...
Waterlog asked 2/4, 2013 at 23:12
2
Running into this issue while deploying Rails 3.2 project to Weblogic 10.3 and was looking for an easy answer.
org.jruby.exceptions.RaiseException: (NameError) ActiveRecord is not missing constant...
Telson asked 1/2, 2013 at 18:32
1
I have a Rails 3 application where my model includes Owners and Properties, each Owner representing a person or institution that owns one or more properties.
I would like to be able to search my d...
Colpin asked 30/4, 2011 at 22:32
1
Solved
In my Widget model I have the following:
scope :accessible_to, lambda { |user|
if user.has_role?('admin')
self.all
else
roles = user.roles
role_ids = []
roles.each { |r| role_ids << r....
Quartered asked 10/1, 2012 at 15:6
2
Solved
I've run into a small problem with some search-functionality for a Rails 3 website I'm developing. I have a simple Post model that looks like this:
class Post < ActiveRecord::Base
acts_as_tagg...
Undergraduate asked 23/4, 2011 at 19:36
2
Solved
I'm using meta_search to sort columns in a table. One of my table columns is a count of the associated records for a particular model.
Basically it's this:
class Shop < ActiveRecord::Base
has...
Copier asked 28/12, 2010 at 18:20
5
Solved
The question wasn't clear enough, I think; here's an updated straight to the point question:
What are the common architectures used in building a meta search engine and is there any libraries avai...
Realpolitik asked 17/5, 2010 at 15:8
1
© 2022 - 2024 — McMap. All rights reserved.