similar to: Is Ext js compatible with Rauils 2.0.2?

Displaying 20 results from an estimated 40000 matches similar to: "Is Ext js compatible with Rauils 2.0.2?"

2007 Dec 27
1
Do any one have success stories using ExtJS with rails
Do any one have success stories using ExtJS with rails? Its open to discuss about Ext-Js plugin''s features, success stories and drawbacks.. Cheers, Ratnavel -- 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 this
2007 Dec 06
8
Default value for country_select
Using Country_select how to have default valur set to United States. I have a select drop down in my Ui to display the Country names. But i need United tates to be selected as default value. I use country_select to populate the country names. This is how i use <%= f.country_select :country, :selected=>''United States'' %> i also tried <%= f.country_select :country,
2008 Mar 03
4
To use JS in RedBox Plugin
Hi All, I''m using redbox plugin in my app. Redbox plugin is working properly.But when i try to change text box values using js its not working. The Code is <input type="text" name="playlist" id="playlist_name"> <input type="radio" name="playlist"
2008 Apr 15
1
How to call a java applet in rails application?
HI, I have a applet file named "Scanner.class" which will scan and upload image to the web server from Scanners. I have couple of doubts in accessing that applet file. 1. How to call this applet from rhtml file, and where should i place this file. 2. I also use some external jar files which i imported in my applet file, where should i place these jars? Thanks, Ratnavel -- Posted
2008 Jan 07
3
Rails check for a .js template instead of .rjs?
respond_to do |format| format.html format.js { render :template => "login" } end Whenever I send an AJAX request to the action that has that code it says it cant find the template login.js. Why isnt it looking for login.rjs? Also when I take out the render it serves up the rhtml template instead of the rjs template. Any idea why this is? I am using edge rails and the latest
2007 Nov 29
5
Dynamic JS or RJS ?
Hi, while I search the net for hints I leave this here, probably you will be faster than me finding an answer. The next: I have a static site where I embed a player using an external js The html: <script type="text/javascript" src="http://www.mysite.com/scripts/player.js"></script> The JS: if(navigator.userAgent.indexOf("Opera")!=-1){
2007 Dec 07
2
Pagination using will_paginate
Hi, I use will_paginate plugin to paginate the records in my view file.. I implement the same in 2 of my modules.. Its working fine in one module where i perform only the basic CRUD operation. In the other module i do have search option. This plugin behaves different for that method.. Normally if one click the page number links the request will be posted back to the same action or method
2009 Feb 26
7
javascript using jQuery.js and prototype.js doesnt work 2get
Hi........ M hving javascript "scripts.js" which uses jQuery.js in rails application. bt when it is used along with prototype.js, one of the javascripts which hs been included first in my application.rhtml fails... Do some1 hv any solution how to make both the scripts work 2gether... I tried using <script> jQuery.noConflict(); </script> bt of no use. problem
2007 Dec 11
0
Rails 2 doesn't include builder.js, scriptaculous.js, slider.js, and sound.js. Should I add them?
I''m upgrading the Scriptaculous files in my Rails 2 project to version 1.8. Rails 2 doesn''t produce builder.js, scriptaculous.js, slider.js, and sound.js in the Javascript folder by default, and the files it produces (controls.js, dragdrop.js, effects.js) don''t have a version number in them. If I''m replacing the default files with the Scriptaculous 1.8
2007 Jun 20
4
Remove session string from css and js file?
How do you remove the session string from the css and js file? I have already set the ApplicationController session :disabled => true Any suggestions or a site that already has this solution? Thank you, Nickmenow -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups
2008 Dec 24
5
Odd js behavior in Chrome & Safari
View file has a js function "confirm_result()" in <head> section: <script type="text/javascript"> function confirm_action() { result = confirm("Please select OK or Cancel") if (result == true) document.write("You selected OK.") else document.write("You selected Cancel.") } </script>
2005 Dec 25
2
scriptaculous-js-1.5.0
I''m not a JavaScript guy, so please help me out. It''s my understanding that Rails 1.0 includes scriptaculous-js-1.5.0 But it seems to contain portions of, but not the complete library. Rails 1.0 includes 4 .js files, scriptaculous-js-1.5.0 includes 8. What am I missing? > tmornini$ rails --version > Rails 1.0.0 > > tmornini$ rails test | grep
2012 Nov 21
0
What to use //= require_tree or js,css incude tag in application.erb ?
Hi , We are using reqiure_tree in our application.js and application.css. As per i know require_tree include all js and css in application.js and application.css . We include application file of both .js and .css in our application.erb. Q . We include both .js and .css application file in application.erb . Is including in application.erb, did all .js and .css file are included in
2007 Sep 12
2
Prototype.js and Coremetrics eluminate.js issues
Hi, I am trying to use prototype.js on a JSP that also contains some javascript from Coremetrics (eluminate.js). Coremetrics is used for tracking marketing clicks. When I have both of these javascript imports on the page I get javascript errors in the eluminate.js file. I get javascript errors that say "Undeterminate string constant." It looks like the prototype.js file is somehow
2008 Jul 11
1
prototype.js breaks treemenus from pear HTML_TreeMenu in safari
hi all i see a very strange behavior in safari when using prototype.js and the pear HTML_TreeMenu to reproduce get prototype.js (http://www.prototypejs.org/assets/ 2008/1/25/prototype-1.6.0.2.js) and treemenu.js (http://cvs.php.net/ viewvc.cgi/pear/HTML_TreeMenu/TreeMenu.js?revision=1.22). and test the following html with safari on mac or windows (http:// www.apple.com/safari/download/)
2006 Jun 07
3
Including scriptaculous.js causes page to "hang"
When I say hang, I mean the browsers spinner keeps spinning and Firefox''s info bar at the bottom says "Transfering data from ...... " I''m just including the js like this: <script src="/js/prototype.js" type="text/javascript"></script> <script src="/js/scriptaculous.js" type="text/javascript"></script>
2006 Sep 12
2
Generate JS from RoR - strange delay with send_data
Hi! I need to generate some JS from Ruby. This is no AJAX related stuff so RJS templates are not help to me. Also I want to not mix JS with HTML, so putting JS in .rhtml templates is no go for me. Currently I made some action in controller, prepared JS code and I''m sending it via send_data as ''text/javascript''. In .rhtml templates I use <script> tag with src
2012 Jan 01
3
'require_tree .' does not seem to be including the available *.js files as expected. Why?
Hi, all, Happy new year :) Referring to http://guides.rubyonrails.org/asset_pipeline.html, it seems that ''require_tree .'' in myapp/app/assets/javascripts/ application.js will include all *.js files in the myapp/app/assets/ javascripts/. I have a few other *.js files in this directory : parts.js, makes.js and categories.js. Here''s an extract from the html file I
2016 Dec 27
0
Proper attribution in Authors@R for the d3.js library by Mike Bostock
I have a couple of packages that use the d3.js library developed (and copyrighted) by Mike Bostock. One package uses it extensively, another only for one function. I use R to piece together parts files containing JavaScript that I have written, which use d3.js functions and eventually the d3 library is called from a temporary web page. To date, I have pointed to Bostock's library in the Rd
2008 Jan 07
2
rendering js
Hi all, Just been working on a new app and I''ve hit a problem. I am trying to render some js back to the page and have tried the following: render_js render :js => true render :js => "alert(''test'');" And I always seem to get my js returned as text. I have also added in: provides :js I''m sure this is very simple but any pointers would be most