Tagged Questions
The lowpro tag has no wiki summary.
5
votes
4answers
3k views
Downloading CSV via AJAX
Can you use AJAX to download a generated csv file from a web application? If so does anyone have any kind of reference that I could be pointed towards?
EDIT: Sorry I should have mentioned I am using ...
1
vote
1answer
106 views
Click event not processed when using prototype (with lowpro)
I have JS code that uses lowpro (prototype extension) to reorder a set of dynamically generated questions. So when I click a.move-up I want to move that element's parent up. And a.move-down suppose to ...
0
votes
0answers
42 views
Is there an easy way to get Lowpro working with IE9?
We have a lot of legacy code that relies on Lowpro and Prototype. The plan is to port this code into jQuery at some point, but in the mean time, is there an easy way to get these two libraries to work ...
0
votes
1answer
154 views
Using prototype/lowpro to reorder items on screen. JS not working
Have the following JS included in my HTML:
document.observe('dom:loaded', function() {
Event.addBehavior( {
'a.move-up:click': function(event) {
moveUp(this);
event.stop();
...
0
votes
1answer
31 views
Problems using prototype with lowpro through firefox…
Seems there's nothing to do… using the combo prototype/lowpro, no problems at all with safari + chrome (webkit based), but firefox does take it at all. Any clues on how to go through this ?
big ...
0
votes
3answers
1k views
Ruby on Rails, Low Pro, and JQuery (through JRails)
I am using JRails with Ruby on Rails so that I can simply use jQuery since I am more familiar with it. I am also attempting to use Low Pro to submit some of my forms remotely.
I am currently running ...