search for: product4

Displaying 3 results from an estimated 3 matches for "product4".

Did you mean: products
2008 Mar 31
0
Advice on queue setup needed please.
Hello, I have two sites. Both the sites will require queues for their own reason, own campaigns, etc. Like site1 would handle product1, product2, product3, while site2 can do product4, but can also do customer support for product1 and if anything, can transfer to site1's product1 queue (usually via SIP) Also, a few of these queues will require AgentLogin() type logging in, and some might not (and they can use regular either AQM or just be statically logged in cases where...
2010 Apr 24
0
'geepack' and 'gee' package outputs
...data, id = subject, corstr = "independence") Coefficients: Estimate Std.err Wald Pr(>|W|) (Intercept) 3.14e+16 5.05e+14 3864 <2e-16 *** data$product2 3.69e+16 8.12e+14 2062 <2e-16 *** data$product3 -2.67e+16 4.67e+14 3267 <2e-16 *** data$product4 -2.59e+16 5.04e+14 2642 <2e-16 *** data$product5 -1.41e+16 5.30e+14 710 <2e-16 *** data$product6 -2.59e+16 4.96e+14 2722 <2e-16 *** data$product7 1.55e+17 2.07e+15 5646 <2e-16 *** data$product8 2.90e+16 7.87e+14 1362 <2e-16 *** data$product9 -2.43e+16 4.79e+1...
2010 May 25
2
Site Navigation With Polymorphic Has Many Through
...siblings, where the parent and the child were polymorphic. Then a given childable object can find it''s parentable by going through the menu_items table. I want my nav to be able to do things like this: --Category1 ----SubCategory1 ------Product1 ------Product2 ----Product3 --Category2 ----Product4 --Page1 --Page2 --Page3 This is the current setup: MODELS class MenuItem < ActiveRecord::Base belongs_to :childable , :polymorphic => true belongs_to :parentable , :polymorphic => true acts_as_list :scope => :parentable_id end class Category < ActiveRecord::Base has_on...