Displaying 9 results from an estimated 9 matches for "psethi".
Did you mean:
sethi
2006 May 02
0
RE: Rails Digest, Vol 20, Issue 39
...___________________
> > Rails mailing list
> > Rails@lists.rubyonrails.org
> > http://lists.rubyonrails.org/mailman/listinfo/rails
> >
>
>
> ------------------------------
>
> Message: 3
> Date: Tue, 2 May 2006 17:37:55 +0200
> From: Pradeep Sethi <psethi@gmail.com>
> Subject: [Rails] Re: web services on the client side
> To: rails@lists.rubyonrails.org
> Message-ID: <993b91e9f064e9a32ccdaa544c5737dd@ruby-forum.com>
> Content-Type: text/plain; charset=utf-8
>
> yes, you need apis/user_api.rb and you''d provide the...
2006 May 01
5
Adding classes without script\generate
Can I add classes to a rails application manually i.e without using
script generate Model/Controller?
The reason I am asking, I added a class by putting it in the controller
class. I can access the class and its method from command-line (irb),
but when I try to instantiate it in another controller, I get
"uninitialized constant" error.
If I try using script\generate Model
2006 May 01
3
Using Classes in Rails
I am a beginner so please excuse me, if i am doing something totally
wrong.
I have created a class using "wsdl2ruby.rb" and here is what it looks
like:
class ServiceSoap < ::SOAP::RPC::Driver
DefaultEndpointUrl =
"http://balrog/services/SearchWorker/service.asmx"
MappingRegistry = ::SOAP::Mapping::Registry.new
Methods = [
...
--
Posted via
2006 May 01
7
where should I put my hand-coded classes
I have a class that is hand-coded (not generated using generator).
Is there a preferred location for the file.
app/components ?
does it matter?
Thanks,
--
Posted via http://www.ruby-forum.com/.
2006 Apr 11
5
[OT] RailsConf Tickets ?
Just in case -- if anybody has got a spare ticket for RailsConf, i''d
be very happy to buy it... I live in Chicago, so i can do this on
very short notice as well, should anybody not be able to attend... :)
Otherwise - this being Chicago - no question there''ll be scalpers... :)
Thanks,
Sebastian
2006 May 02
4
passing data from controller to rjs and then to partial
Hello Experts,
I am fetching data in my controller from a web service
def search
response = @@api.DoSearch()
end
and in my .rjs template, I am doing
page.replace_html ''fields_chooser'', :partial => ''fields_chooser''
,:locals =>{:response => response}
page.visual_effect(:Appear, ''fields_chooser'')
and in _fields_chooser.rhtml, I
2006 Apr 21
2
Passing Variables to a sub template
Hi,
I must be missing something very basic here.
I have a parent template and I am calling a sub template like...
<%= render( :partial => "window_title_bar", {"heading" => "Product
Details"}) %>
and in the sub template (_window_title_bar.rhtml), i am doing
Heading: <%= heading %>
but I am getting syntax error in the master template at line
2006 Apr 22
3
Ajax call not being made on a Sortable list
Hi,
I am creating a sortable list using this code:
<%= sortable_element("fields_list",
:url => { :action => "order", :id => @fields_list })
%>
it creates a sortable and I can move elements up and down, but it is not
making any call to the "order" method.
I do not see any log activity in the development log nor do I see any
errors there. The
2006 Apr 22
0
Checkboxes get reset in sortable element in IE
Hi,
I am creating a list of checkboxes and text using this code:
<% count = 0 %>
<ul id="fields_list">
<% fields_ary.length.times do %>
<%= "<li id=''item" %> <%= count %> <%= "''><span class=''chkBox''> <input
type=''checkbox''></span><span