I have an input, and I want to, when the user types a number on that
input and exits it (the onBlur event), to search a table on that number
and return a value to that input.
Thanks in advance.
I have an input, and I want to, when the user types a number on that
input and exits it (the onBlur event), to search a table on that number
and return a value to that input.
Thanks in advance.
[email protected] wrote:
I have an input, and I want to, when the user types a number on that
input and exits it (the onBlur event), to search a table on that number
and return a value to that input.
Had you considered the idea of using the user’s entered number as an
index
into an array?
But my problem is not how to find the value, but the AJAX
implementation in the onBlur event and how to return the value found
back to the input.
Paul L. escreveu:
[email protected] wrote:
But my problem is not how to find the value, but the AJAX
implementation in the onBlur event and how to return the value found
back to the input.
It would be very helpful if you were to post your code and ask specific
questions about problems you are having with your code.
Paul L. wrote:
[email protected] wrote:
But my problem is not how to find the value, but the AJAX
implementation in the onBlur event and how to return the value found
back to the input.It would be very helpful if you were to post your code and ask specific
questions about problems you are having with your code.
onblur() needs to invoke a javascript function. That function should:
do an HttpXmlRequest call to the server, see if it gets a usable
response, and set the input field’s ‘value’ property to the returned
value if good.
Give your input elements unique id attributes. Makes it easier to
locate them. Then (assuming the use of prototype.js) you can do
$(theInputID).value = theReturnedGoodValue in the callback method.
Hand-coding the javascript for this is pretty straightforward, but if
you get stuck, ask for help on a JavaScript list. It’s off-topic for
the main Ruby list.
If you are looking to use Rails helper methods or RJS, you would do
better to ask for help on the Rails list.
–
James B.
“Programs must be written for people to read, and only incidentally
for machines to execute.”
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs