similar to: Integrating Ajax IM in rails

Displaying 20 results from an estimated 50000 matches similar to: "Integrating Ajax IM in rails"

2006 Jun 09
1
Ajax chat (lace) && Ruby on Rails?
Has anyone been able to get the Lace (ajax chatroom) ported over to Ruby for a Ruby on Rails implemention? (The current version is PHP-based) ... or is there a ROR-chatroom distribution that exists? Thanks! -- Posted via http://www.ruby-forum.com/.
2006 Jul 08
3
Make AJAX form do multiple actions?
I have a form that I want to do a few things. -do an Effect.SlideOut on a div -replace the text in a div with different text -update the database and add a new div later in the document. How do call all of these (there is only one :complete or :update) Thanks in advance. -- Posted via http://www.ruby-forum.com/.
2006 Jun 29
0
Ajax Scaffold for a application started using win32-process module.
Hi, I have an RoR application(parent) which is use to kick off other RoR applications(ajax scaffold based). I use win32-process Open4.popen4() to start the RoR applications. Untill recently I was using normal scaffold feature of Rails, and recently I migrated to Ajax Scaffold; After moving on to Ajax scaffold, when I try to start a RoR from my parent RoR, the application do get started, when I
2006 Jun 26
2
Prototype Ajax event handlers
I''ve been trying to use the prototype.js Ajax obect''s event handlers (onCreate, onComplete) inside the options tags as below: function updateCalendar(today, id){ new Ajax.Updater("calendars", "calendar.inc.php", {asynchronous: true, onCreate: function(){ showBusy }, onComplete: function(){ hideBusy }, method: "get",
2006 May 24
2
Which JS/Ajax library to use with RoR
Hello, I am beginning to soak myself into JS/Ajax stuff and I am quite confused because of the myriad of AJAX books/frameworks - Its even worse than RoR in this sense (i.e. in the case of RoR, half of the people are writing books on it, and i believe this value is even higher with AJAX ;-) Of course this is not a bad thing, but if a newbie has to choose something it can be really hard. So my
2006 Feb 21
6
What do I need to learn Ruby, Rails, JavaScript, AJAX?
So I''ve sort of come to the conclusion that if I wanna get stuff done, I need to either A) Find some dang money and pay people to do it or B) Do it myself. I''m opting for B. Soooo...now I''ve got some programming/technologies to learn. I''m self-employed and I can afford to take a month (or 2) off to totally immerse myself in this and learn how to do it.
2006 Jun 21
5
Ok, its time. AJAX Games via Rails....
A couple of years ago I was building an online multiplayer game doing the frontend in Flash MX 2004 and using Colin Moock''s Unity server (http://moock.org/unity/) for the backend. This was to be along the lines of JungleWar and the Hidden and Dangerous mini games for those whom remember these: http://moock.org/unity/showcase/screenshots/hiddenanddangerous.gif
2006 Feb 11
4
Timesheet application for Rails
Hi all, I am looking for some time tracking software for our small company. Does anyone knows if such project on rails exists? I need simple functionality such as recording spent time for employees and managing projects or tasks. Ideally, it would be possible to integrate it into Instiki and to some existing database. There are some other solutions, but it seems to me that RoR would be ideal
2006 Jul 28
0
[CONTRACTING JOB] We are looking for RoR developers, preferably with JavaScript knowledge
Hi My company is looking for one or more web application developers to develop modules to be integrated in one of our projects. You need to be available for the coming two months, this one is on a tight deadline but should be great fun to do. Currently, I can''t tell a lot about the project itself as we are under NDA. Our freelancers and employees all work from their own home,
2006 Mar 15
4
Ruby - Feed Generators
Hi All, Can anyone help me in making feed[xml/rss] generator for a webpage based on ruby/ruby on rails. Tell me if any ruby code is already available, to generate feeds for a webpage. Thanks in Advance. Sumanth. -- Posted via http://www.ruby-forum.com/.
2006 Mar 09
2
EXTREME Newbie Qestion - Is RoR the right tool?
So, the question for you who are RoR Gurus: is RoR the way to go? Here''s the challenge... A community service site (application?) that includes: * Community Forum * Blog (kind of - more like an editoral comment section) * Weather Forecasts by locale * Road Conditions * real time weather data * Searchable, by category & locale, Business Directory * Live Camera feeds *
2005 Sep 19
0
AJAX update_method support
Hello everyone, I ran across http://www.mattmccray.com/archives/2005/03/25/the-right-way/ as a possible solution for a bug I''ve been having with IE 6 with Prototype 1.3.1. He submitted this patch to RoR http://dev.rubyonrails.com/ticket/941 and it seems it was fixed in RoR and works correctly. I''m not a RoR user, but use Prototype with Perl and wondered if there were any
2006 Jun 02
1
Is AJAX/RJS secure enough for enterprise data hanling?
Sure, AJAX and RJS provide snappier performance by reducing the hits on the server. But, is it easily hacked in a RoR application? Can it be made as secure as a non-ajax web -app? -- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Feb 23
1
Ajax, validation, flash messages & redirects...
Hi everyone, I''m working on an file upload page that uses an ajax progress bar (http://sean.treadway.info/demo/upload/). I''ve also got validation on the uploads (must be a certain file size/mime type etc). When uploads pass validation - all is dandy. But when they fail - I can''t work out how to redisplay the form with the flash error messages (that normally appear
2006 Aug 10
0
Ajax In place edit with Struts
Hi All, First of all my apologies if this is not a correct place to post it. Please direct me to correct place. I am using scripataculous inplace edit with struts framework. I am having some text with double quotes and single quote. If the user types it normally then in the callback function i am doing encodeURIComponent before doing a post and everything works fine. I have the encoding set
2006 Mar 28
3
AJAX/CSS issue (more UI focused)
All, This isn''t strictly a problem or issue with RoR but I wondered if someone might have some insight. I have a DIV on a page which I am using to "preview" the contents of a URL provided by the user. Basically, when the user clicks on a link, I do an AJAX call to an action which uses Net::HTTP to request the URL in question and then update the DIVs innerHTML attribute
2006 Aug 09
8
AJAX image manipulation
I have this code in a controller that returns images to my browser...with ROR. def index @products = Product.find_all_ pictures end ....this is the .rhtml.. <% for photo in @pic -%> <div class="entry"> <img src="<%= photo.image_url %>"/> <h3><%= h(photo.title) %></h3> <%= photo.description %>
2006 Mar 13
2
Prototype ajax/javascript q
I''m trying to send to my application the coords x,y on an "input type image" in a html form, but x,y variables are not present in the POST_DATA (are not submitted). Any other field (hidden inputs) are being sent when I click on the image input form field. I use rails 1.0 and prototype 1.4, browsers Seamonkey 2.0, Firefox 1.x and Konqueror, Linux, and I''m just a
2012 Jul 09
0
Hiring RoR / PHP / Java Web Developers to work on RoR Development and Mid Management at Chennai
Hi – We have immediate requirement for 50+ RoR developers and Mid management professionals for our customer at Chennai. Please send your CVs to deepak.j-u/jeiSQQFGzBGafMEABhkUSAudeF6Ab9@public.gmane.org at the earliest. Below are the details of the requirement: Developer Level Qualification: B.E / B.Tech / MCA [Computer Science/IT background Preferred] Experience: 2-5 years experience in RoR, PHP
2007 Jan 25
0
Full-Dulpex Ajax module for Lighttpd
Hello, Full-Dulpex Ajax module v 0.5 for Lighttpd released. Designed for RoR. http://www.refwell.com/blog/index.php/2007/01/25/full-dulpex-ajax-module-for-lighttpd/ Regards, -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to