Displaying 10 results from an estimated 10 matches for "leikind".
2008 Jan 02
3
Submitted a patch, got pluses, what now?
...to get rid of an annoying exception raised when
an AR
object is created - http://dev.rubyonrails.org/ticket/10556 , had some
people review it,
got some pluses... What am I supposed to do now?
Can anybody advise or just review the patch and take care of the issue?
Thanks!
--
Best regards,
Yuri Leikind
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com
To unsubscribe from this group, send email to rubyonrails-co...
2004 Jul 20
7
radiobuttons are weird in 1.2.x series
...o alpha versions and
click the radiobutton in the upper right group box (those named Hilvesum 1,
Hilversum 2, etc). You''ll notice that once a radiobutton is checked,
it remains checked when some other radiobutton is checked.
What''s the reason?
Thank you.
--
Best regards,
Yuri Leikind
2009 Oct 05
11
Unable to install plugins from github
Hi All,
My operating system is FC11...I tried to install will_paginate from
github directly like this -
script/plugin install git://github.com/mislav/will_paginate.git
But I get an error saying
[ckkashyap@KingCobra test_plugin]$ script/plugin install
git://github.com/mislav/will_paginate.git
Plugin not found: ["git://github.com/mislav/will_paginate.git"]
I have git on my machine - I
2006 Sep 25
1
ActiveRecord instead of direct sql execution
Hi all,
I have 2 tables and a standard one-to-many association.
How do I substitute the following sql with ActiveRecord calls so that
it uses just one sql statement:
update geo_entities set terminal_id = 3 where id = 10 or id = 23
or id = 87;
Thank you!
Regards,
Yuri Leikind
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send...
2007 May 10
5
Pagination has many through problems
I have searched for days for an example that demonstrates what i would
like to do, and this morning i thought i''d worked it out, but
no....here''s what i have:
Controller
==========
class ProfilesController < ApplicationController
def friends
current_user.profile.friends
end
def list_friends
@profile_pages, @profiles = paginate( friends, :per_page => 10)
end
end
2008 May 08
1
Eager loading of association extensions
..._pricing_rules :conditions => ''appliccable is true''
and then use it:
cat = ProductCategory.find(:first, :include => :applicable_pricing_rules)
cat.applicable_pricing_rules
But maybe there''s a way to eagerly load an association extension?
--
Best regards,
Yuri Leikind
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send...
2007 May 10
2
Dynamic counter?
Hi,
In a form I have a text area T and a disable text field C (for
counter).
C must show dynamically how many characters have been typed in T.
Should
I go in for a Javascript solution (or Ajax) or is there any other
way?
Thanks,
Ram.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2009 Jul 06
0
WiceGrid Plugin version 0.4
...ers are added automatically according to the type of the
underlying DB column, or can be customized. Filtering by more than one
column at the same time is possible. More than one such grid can
appear on a page, and manipulations with one grid do not have any
impact on the other.
Best regards,
Yuri Leikind
2007 May 20
2
Newbie question - self.var OR @var in ActiveRecord
I started learning rails by following the agile way. It comes to the
point where it puzzles me.
class Puzzle < ActiveRecord::Base
# virtual var, not existing in the database
def var
@var
end
def var=(foo)
@var= foo
@var_in_database = @var + 1 # var_in_database exists in database
end
end
Then when I do a save of this model it does nothing. I know that if I
instead put
2007 May 08
5
Which version of Ubuntu to use with Rails
Hello,
This is a question for folks who are using Ubuntu to host your Rails
apps. Which version of Ubuntu do you use?
Do you use the ''Dapper'' release (6.0.6) perhaps due to the long term
support (LTS), or are you using the latest release ''Feisty'' (7.0.4)?
Or maybe a better way to ask the question is, is there a preferred
version of Ubuntu to use with Ruby