Using Ext JS with Rubies on Rails

I am new to Ext JS, but I want to use Ext JS with rubies on rails. Can someone tell me what should i do? Do I need any plugins? Thank you in advance.

+4
source share
3 answers

I am using Ext js with Php and the Java network, all you have to do is import the library and use it. do what you want with ext js and call GET / POST on your uri site as usual and pass the data via xml or json (I prefer json because it is easier).

Eg. pressing the capture button → GET / POST - uri controller process → -> do anything in the model → send json data back → ext decode json-> show to user

+1
source

I have never tried, but take a look at http://netzke.org/ .

+2
source

You can get some basics from http://www.extjswithrails.com/ . I am sure this will help you get started. Here is also an old Sencha tutorial: Using Ext Grid with Ruby on Rails

But other than that, you'll have to go through ExtJS API documentation and examples. Reading the Sencha example code will really help you in coding.

+2
source

Source: https://habr.com/ru/post/1345045/


All Articles