Displaying 20 results from an estimated 21 matches for "extj".
Did you mean:
ext
2008 Jun 09
4
YUI vs GWT vs ExtJS vs ????
I would like y''all''s opinions on ease of implementation into Rails,
quality and quantity of widgets etc between Yahoo User Interface and
Google Web toolkit and ExtJS. I am just getting ready to invest a
huge amount of effort into one of them and I would like to know what
the community''s experience has been with these toolsets. OR.. is there
a better open source set of tools for grids and windows and treevews.
Thanks in advance
--~--~---------~--~-...
2008 Apr 04
8
Updatable "datagrid" with ajax support? Is there any code/approach I can leverage?
Hi,
I want to have a page in my Ruby on Rails application that is like a
dynamic / updateable data grid. Like a matrix or spreadsheet segment
(x rows, y columns) which one can click in any of the cells and make
an update, which triggers some AJAX code to fire off the update, and
then the responses come back and update whatever else needs updating
based on this change.
Is there a prototype
2007 Nov 07
6
Rich (or any) GUI Components for Rails
...want to switch to framework
which works for me, not me for framework.
ok, everything seems to be easy with rails, but there must be rich
components set to let web developers build something really
competitive to other framework like asp or gwt.
have a look at mygwt.net, they adopted widgets from extjs framework
(extjs.com).
i wonder why theres no attempts for rails
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh...
2009 Sep 22
0
EXTJS + drag and drop
Hello friends
I need to configure the extjs drag and drop but somehow i am not able to
display it.
my controller contains the following code
def index
respond_to do |format|
format.html
format.ext_json { render :json => User.all.to_ext_json }
end
end
and in the index.erb
<div id="layout"></div&...
2011 Apr 14
1
a little problem with extJS & log in form
..._field("userform", "username",:size=>"20" ) %>
Password:
<%= password_field("userform", "password",:size=>"20" )
%>
<input type="submit" value=" LOGIN " />
SO, question is.
Without extJS (login,js) everything looks nice. Sessions works and so
on. But i want make form in extJs, i made it, but when i put my right
data (user:test,pw:test) i get in console:
Processing UserController#authenticate (for 127.0.0.1 at
2011-04-14 13:21:19) [POST]
Parameters: {"username"...
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 &q...
2009 Oct 11
6
A simple editable grid for Rails
Hi All,
I''ve been posting some queries about an editable grid but did not get
any response.
I''ve started writing my own - http://github.com/ckkashyap/rails_editable_grid
I''d appreciate it very much if someone could comment on it!
--
Regards,
Kashyap
2008 Feb 29
0
RJS and EXTjs component update (RAILS 1.2.3)
I want to use an RJS view to update EXT Panel bodies. But since the
panel bodies
have generated element ids, I can''t see how to use
''page.replace_html''.
So instead I wrote a javascript function ''updateBody''.
In the RJS view, I want to say something like:
page.call ''updateBody'', ''some_panel'', :partial =>
2008 Jun 09
3
Is there a Rails portlet like plugin/framework? (i.e. just basic to allow users to move windows around)
Hi,
Just wondering if there is a Rails Plugin/GEM/Framework to aid in letting
users move around (adjust) where the main page windows are. Perhaps
maximize and minimize. I guess this pretty much sounds like a portlet,
however I''m not asking the Rails true portlet integration question here, but
rather if there is something in the Rails world that just satisfies the
basics of a portlet
2007 May 20
1
Jack Slocum's Ext library in Rails
If anyone is familiar with Jack Slocum''s revolutionary Ext javascript
library (http://www.extjs.com) and wishes to use it with Rails (instead
of the traditional Prototype / Scriptaculous duo), I''ve create a
combination vendor/plugin and javascript library to help you.
If ye be brave and know how to use SVN:
Ext on Rails: http://www.extonrails.com
--
Posted via http://www.ruby-fo...
2008 May 24
5
TypeError : transport.responseText has no properties
Hello all,
I''m using prototype in conjunction with Extjs to build out an Ajax-
driven app. I''m noticing that occasionally there will be Ajax
Requests that will occasionally not complete. After some
investigation, I found that when I made a call to String#evalJSON, it
would throw a TypeError with the following message :
transport.responseTex...
2008 Jun 27
2
building/editing topology diagrams - any ideas/advice?
...tinsider.com/files/planning/planningtopology.png. So
the model basically consists of nodes and relationships.
Any ideas/advice on how best to do this, e.g.:
Q1. Any open-source project that does something similar?
Q2. Best way of handling the graphical aspect of the application? (e.g.
prototype, extjs, etc?)
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from t...
2007 Aug 26
0
How can I return a json packet?
I used extjs and ror,this is the part of my ror code:
def create
@enterprise = Enterprise.new(@params[:enterprise])
p @enterprise
if @enterprise.save
flash[:note] = ''Enterprise unit was successfully created.''
p "michael"
redirect_to(:action=>ind...
2008 Feb 25
6
Event Calendar/Scheduler Implementation
Hi there.
I am a RoR newbie and come from the Java/C# perspective. After digging
into Rails I would like to convert an ASP.NET project -that served as
a protoype- to RoR.
The only thing that I havenĀ“t got a good solution for is handling
calendar events. With that I specifically mean creating, moving an
event or a set of events as well as recurrence handling - similar to
Google Calendar if you
2008 Jun 26
7
Strange readyStates in prototype Ajax
Hi,
I''ve never posted here before so please forgive me if I''m not
observing proper decorum, yadda yadda yadda :-)
I''ve ran into a very, very strange bug with Prototype I wanted to
share and see if anyone else has seen this. In a few of my projects
involving Ext JS, I''m using the TreePanel control, which uses AJAX to
load child nodes asynchronously. Because I
2009 Oct 06
0
How to create editable data grid using rails?
Hi All,
I need to work with an editable data grid. I have not found anything
yet - Extjs seems good. But I want to make sure if
Rails does not already have something built in or something more rails
like already available.
--
Regards,
Kashyap
2011 Apr 21
0
Get data from 2 tables
...(relationship)
def index
question_id = params[:id].to_i
question = Question.find(question_id)
@answers = question.answers
respond_to do |format|
format.ext_json { render :json => @answers.to_ext_json(:class =>
Answer) }
end
end
I have several scaffold in extjs, when I click on row, i get answers on
question that i just selected, COOL. But i need paste in this info email
of people (emails stores in users table). Now i have this:
| id | answer |
1 | lala
2 | lalala2
but i need this:
| id | answer | email
1 | lala | alal-l85rjibHVTE@pub...
2012 Feb 08
2
Session values
Hello Everyone,
I am new to Ruby. My application revolves around the user having a
"Customer" object and having that customer id in the session. Right now
I have a customer service which creates the customer or finds one that
has been created and adds the id to the session. However, I can''t
guarantee that the customer service will be the first one hit when my
application
2007 Oct 05
9
Rearchitect the new :cache feature of javascript_include_tag, similar to ToolbawksPacker
I have done some work with the javascript and stylesheet helpers for
ToolbawksPacker..
http://svn.toolbawks.com/toolbawks_packer/trunk/
Which more/less takes all executed javascript_include_tags and
stylesheet_link_tag on any converged view (combines all partials and such)
and builds a list of js and css files respectively and uses that to form a
cache. In additon, it also minifies the JS using
2011 Oct 21
20
How to transform my html form into a rails 3 form
Hi,
I have the following code working in a rails 3 view, but it is
unfortunately not pure rails code!
<% @filter1 = "tr.show1,tr.show2" %>
<% @filter2 = "tr.show1" %>
<% @filter3 = "tr.show2" %>
<form>
<p>
<input type="checkbox" value=<%=@filter1%> onclick="$
(this).is('':checked'')