extjs

What are the options to replace Java Swing GUI?

We have a desktop client application developed in Swing. This application interacts with backend server using Servlet. The new requirement is to make a web based client. I have read about JavaFX, Flex, ExtJS, etc. I would like to know which solution is best fit to replace a swing application? Does anyone have any experience of doing th...

ExtJS Toolbar with multiple rows

Is it possible to have an ExtJsToolBar with multiple lines? I want a few controls on the first line and 3 ExtJsButtons on the 2nd. The toolbar is the top toolbar of a Panel. ...

How different is Ext JS from others like jQuery and Mootools

When looking at Ext JS, I don't get the feeling that it's meant for the same things as jQuery and Mootools. Whilst jQuery and Mootools help with the general workings of a site, Ext JS seems to be focussed on tables and storing data, plus manipulating it. So, is this observation correct, or is Ext Js fit for the same work as jQuery and ...

Needed help automating Extjs grid using webaii

We are extensively using webaii as our functional automation tool with great success, but we are now facing problems automating extjs grid types using webaii. Could anyone who has overcome this issue in webaii or watin or watir provide inputs on this. ...

Loading extJS Combo Remotely not Working

This is my first bash at using extJS, and after a few hours of struggling, some things are working OK, except I have combo lists that I can't filter down to less than 2000 items in edge cases, so I'm trying to page the lists through remotely, but I must be doing something wrong. My data store and combo look as follows: var remoteStore ...

ExtJS Gridfilter values to PHP

Hello. I'm using ExtJS v2.0 . I would like to grab the gridfilter values and pass them to a PHP page as $_POST, $_GET, $variable or any possible method that would work to be inserted in PHP query using this backend code: http://www.vinylfox.com/grid-filter-php-backend-code/ I will use those queryes to print one table with the results an...

extjs for application (with embedded http server as well).

Hi, Is there a framework which allows easy adding of ExtJS to a normal .Net application. This way I only have to create a GUI once, which is then accessible through an embedded webserver. This is great since I then can remote access the server/service/application as well as fiddle with it locally. My dreamsolution would be: - The fram...

Clear extJS combo value when text is cleared or doesn't match.

How do I get an extJS combo field to clear its 'value' when the display text is blank or doesn't match a list value, i.e. custom text not in the data store? I'm sure there must be something I'm missing, because such a simple feature can't make an otherwise impressive combo useless. ...

Extjs Training

Our company is starting a major re factor of its front end Javascript code. We have decided to use Extjs as a framework and would like to invest in some training for several of our employees. We are mostly looking for Extjs specific material, but some advanced architecture wouldn't hurt. We are happy to fly our employees on location.The ...

extjsGirdPanel.getView().getRowClass does not work 2nd time.

The handler of an extjsAction button calls a function with following code. Add: function() { var window = Ext.getCmp('wndAdd'); window.items.items[0].getStore().reload; var Grid1 = Ext.getCmp('grdAll'); var grdStore2 = Ext.getCmp('grid2').getStore(); var i = 0; var IDList = new Array();...

I am using rails appln with Ext-JS as frontend and require help for compression

I have a rails appln which uses ext-js for front end. I have no problem in running the application. But since ext-all.js is bulky, it takes more time to load. I tried to build a custom ext-js but did not make much of a difference in size of the ext js script. I was trying with rails cache since i use rails 2.x. For normal js files, it...

Experience using extjs with grails?

Has anyone built a grails app using extjs as the frontend? Are there any pitfalls or gotchas that you'd care to share? It looks like the JSON format output by grails by default it quite different from what extjs expects, but is it just a matter of customizing the JSON on the grails side? ...

ExtJS grab JSON result

Hello. I'm generating JSON response from PHP witch looks like this: { done:'1', options: [{ message:'Example message'},{message:'This is the 2nd example message'}]} I want to grab these results using ExtJS. This is what I have so far: Ext.Ajax.request({ loadMask: true, url: 'myfile.php', params: {id: "1"} }); What d...

ExtJS - using a custom TriggerField as a GridEditor

So I posted this last week to the ExtJS forums, but no one has responded and I'm going a bit crazy trying to figure it out: I'm fairly new to ExtJS (just learned it last week for work), but I've been working with other JavaScript libraries for quite some time now. I'm making a custom control for editing a list of attributes (currently p...

Select all inputs that contain a custom attribute

I have a DataView with an XTemplate setup. The XTemplate looks like this tpl = new Ext.XTemplate( '<table>', '<tpl for=".">', '<tr>', '<td>{task}</td>', '<td>{notes}</td>', '<td>{cancomplete}</td>', ...

[ExtJs] Vs [Ext GWT] Vs [SmartGWT]

Hi, I am going to start a new application which mainly consist NavigationPane, Grid, Toolbar. Layout should look like this demo page http://www.gwt-ext.com/demo/ I am quite confused which one to use in terms of writing less code, more performant, etc.. Could someone tell the pros and cons of all these technologies. All the while I cod...

Are There Memory Issues with Ext.js

The UI for an application I work on was recently redone with Ext.js and I have noticed the memory usage of IE seems very large when viewing it. Are there known memory issues with Ext.js when using IE? ...

How do a get buttons not to take the focus?

I want my (ExtJS) toolbar buttons not to grab the focus on the web page when they are clicked, but to do their "thing" while leaving the focus in the form that had it when they were clicked. How do I do that? ...

How do I configure what effect I want on a Panel expand/collapse event?

In ExtJS 2.2.1, is there a way to configure what effect gets used when animCollapse=true on a Panel? ...

What does ExtJS ComboBox triggerAction: "all" really do?

I tried to create a simple ComboBox: var combo1 = new Ext.form.ComboBox({ store: [1,2,3], renderTo: document.body }); But written this way it acts strangely: When you first time pop open the dropdown, it offers three choices. You choose one. But when you after that try to change your selection, the dropdown only offers one choic...