Displaying 20 results from an estimated 3000 matches similar to: "Store Javascript variable''s value into Rails variable"
2006 Jul 18
5
Right-click popup menu?
Hi,
I have a partial frame on the side of a page which shows the current
users logged in (as text). Now, I would like to be able to right-click
on each user''s name, and get a menu containing links such as "View
Profile", "Send Message", etc. These links could open in a new window.
Is this possible? Any help would be greatly appreciated.
Thanks,
Aditya Rajgarhia
2006 Aug 10
7
Radio Button events
Hi,
I have observers for a group of radio buttons, an observe_field for each
radio button (I think its not possible to have one observe_field for a
group of radio buttons).
Now, the problem is that when I click on one radio button, all the
observers get trigerred, so the method which the observe_field calls
gets the wrong result. I just want that method to get the radio button
that is
2006 Aug 18
4
Button on view
Hi,
I have a page containing 3 views (2 are partials). One of the partials
needs to have a button that will clear a table called "messages" in the
database.
I can put a button like this "<%= button_to "Clear Messages", :action =>
''clear_messages'' %>" and have the controller do "Message.delete_all".
But the problem is that the
2006 Jun 02
3
Chat Room development
Hi,
I was wondering if it is possible to create a chat room using Ruby/Rails
(similar to the Java ones used by Talkcity, Yahoo, etc).
Not many people will be using it since it''s just for an educational
experiment. If possible, will it be able to insert the text immediately?
I mean, I don''t know of any techniques besides Java applets that can do
that, which is why I ask
2006 Aug 04
2
observe_field for radio_button
Hi,
I need to observe a set of radio buttons but am having great trouble. My
observe_field looks like this:
<%= observe_field :user_select, :frequency => 0, :url => { :action =>
:admin_control } %>
Now it works fine if I use a text_field like this:
<%= text_field :user, :select, "size" => 20, "maxlength" => 16 %>
But I want a radio button, and
2006 Jul 25
2
Page doesn''t have scroll bar :/
I have a page with a form that is longer than the page view. Yet there
is no scroll bar. How can I get one?
Thanks,
Aditya
--
Posted via http://www.ruby-forum.com/.
2018 May 06
2
How to log querystring values?
Dear Philipp,
Thanks for you reply.
My goal is to show in our analytics page segmented data (official apps,
partner apps, third-party apps, demographic and geo). To do so each app
pass some values in the query string (ie: app id, user id, lat, lng). And I
need to know those values in order to do that.
Today we are using nginx as a reverse proxy to Icecast to get those data
but it
2005 Oct 27
3
String.protoype.toQueryParams
Hi, I am trying to play with all the methods in the Array Object.
Just wanted to check with you guys if this is the correct explanation of toQueryParams().
If yes, then I''ll add it to the documentation as well.
Works for me (but I am not sure if it''s the correct way to use it).
/* String.prototype.toQueryParams takes a query string, i.e, string with
name value pairs
2018 May 07
1
How to log querystring values?
Philipp,
Thanks so much for your time and relpy.
This dawn, before read your email, I worked to implement the URL authentication and it worked like a charm. I am still using querystring instead of custom header field because I have no control over the player. But, the excelent news is, no more rproxy! =)
And you were right, this way I have more possibilities than before!
Again,
2015 Feb 02
1
RFC: Handle query strings for http and https (RHBZ#1092583)
Parse the query string from URLs, and pass it as new add_drive optarg;
use it when building the file= URL for qemu.
Accept query string only for http and https protocols, for now.
---
Possibly it looks like an ad-hoc solution for http(s), although I'm not
sure how it could possibly be generalized somehow (maybe "extra params"
which would be the query string for http(s)?).
2008 Jul 10
2
Need Browser to Not Cache Ajax Image
I am banging my head against the wall here. I have a gd-generated image that
keeps being changed via ajax on my page. Since the image is generated based
on querystring parameters (which don''t change) but is based on a model (that
is constantly changing), the browser caches the image and you have to do a
page refresh to update the image. I have hacked around it by appending a
random number
2005 May 18
1
Mysql cmd with Asterisk Problems
Hello all:
I am trying to use the mysql command to retrieve information from a mysql
database.
my example here was formed from using the wiki reference to using the
mysql command.
The problem is with the fetch command.
Here is the macro code:
Mysql(QueryString=SELECT\ ivr-password\ from\ users\ where\ ivr-id=${userid})
Mysql(Query r ${connid} ${QueryString})
Mysql(Fetch fetchid ${r} dbuserpass)
2005 Jul 26
2
Dial using URI(web) or using FORM(web)
Hello!
I have an Asterisk@home instalation with 7 users working OK, and I'ld like
to implement either a
-- Web dial feature, where the user would fill one form field with a phone
number and a connection would be created between his extention and the
entered number.
OR
-- Dial using an URI (callto:xxxxx link in a web page), having AstTapi
installed and configured in all workstations.
2018 May 06
9
How to log querystring values?
Hello,
I need to get some values passed in the querystring request in the log
file.
Something like that bellow:
ie: "GET /radio?id=1 HTTP/1.1" instead of only "GET /radio HTTP/1.1"
Do I need to change something in the source and compile? Or there is
another way?
Best,
Thiago
-------------- next part --------------
An HTML attachment was scrubbed...
2006 Feb 17
1
A unique 'click to call' project - Could use some advice <--one thing I forgot
In the example I posted previous, there is an obvious gaping security hole,
it would be trivial for someone to read the querystring and exploit it to
make free phone calls, spoof caller ID (if you allow the CallerID to be set
with a QueryString value), etc. You want to make damn sure that the URL is
not publicly accessible or somehow obsfucate the querystring, or use POST.
In my case, I
2006 May 16
2
Dynamically choosing schema using one Model
Hi all,
is there a way in RoR to dynamically set the table to which the Model
must refer to? I''d like to create a sorta "dispatcher" that chooses the
table for the Model based on an HTTP/GET var. To put it in another way
my Model would be fed with data coming from different tables based on
this var passed from the querystring.
Thanks,
Lorenzo
--
Posted via
2015 Dec 02
2
RFC: arbitrary parameters for add_drive
Hi,
one of the bugs we have (#1092583) is about the lack of query string
for http/https URLs: there were patches about that (not merged yet),
whose solution was to add a new optional argument "querystring".
Another bug that I'm looking at (#1118305) is about setting initiator
IQNs for iSCSI drives; a good solution IMHO would be add a new
initiator-name parameter for this.
Thinking
2006 May 01
4
URL encoding in Rails?
Simple question:
How does one do URL encoding in Ruby/Rails?
Thanks,
Wes
--
Posted via http://www.ruby-forum.com/.
2005 Aug 03
2
Ajax in prototype.js
Can someone please explain to me what I need to do to create an Ajax
class using the prototype lib.
Thanks,
Jon Whitcraft
Web Application Developer
Online Services - Indianapolis Motor Speedway
(317) 492-8623
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20050803/2f662bb3/attachment.html
2007 Apr 18
10
customizing global request handler
what is the cleanest way to do something for every request of a particular type (Verb, and Content-Type header)? i''m trying to figure out if shipping a custom camping.rb is avoidable, and if, how i should structure a patch
my app http://whats-your.name/yard/ uses exclusively JSON based messaging between server and client. this means POST bodies are JSON, and not querystring.. camping