extjs

How can I shift Ext.Window together with its shadow using getEl().shift()?

Hi, I was trying to do a shift using Ext.Fx on the Ext.Window. text: 'move right', handler: function() { startx+=100; var el = thewindow.getEl(); el.shift({ x: startx, }); } What happen was, the window shift but the shadow didn't... Any idea? Cheers, Mickey ...

extjs: what is xtype good for

I see there are lot's of examples in extjs where instead of actually creating extjs objects, an object literal with an xtype property is passed in. What is this good for? Where is the performance gain (if that's the reason) if the object is going to be created anyway? ...

extjs and wicket

i have problem related with wicket and extjs i have one textfield in extjs and i want to add wicket:id to it how i can add it? because in ext textfield has limitted properties. ...

Client side library or AJAX Control toolkit? - ASP.NET

For a slick UI, I am deciding between using a client side library (JQuery or ExtJS) or go with the AJAX Control toolkit. I understand that the widgets supported by ExtJS rich library does not match what's there in the toolkit. What are the pros of cons of using one over the other? ...

ExtJS Window show markup already on page - ASP.NET

The page markup: <table style="display: none" id="myTable" runat="server"> <tr> <td>First Name</td> <td><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td> </tr> <tr> <td>Last Name</td> <td><asp:TextBox ID="TextBox2" runat="server"></asp:TextBox></td> </tr> </table> I need to s...

grid resize issue

How do i resize the grid panel accoring to the window size. I have given viewconfig{ forcefit:true} but in internet explorer grid panel does not scale with the window size. Please help me in this issue var grid = new Ext.grid.GridPanel({ store: store, colModel: colModel, view: gv, stateId: 'myGridid', stateful: true, ...

How do I destroy an ExtJS grid without affecting its store?

I have an ExtJS store like so: var dataStore = new Ext.data.JsonStore({...}); I'm using it with a factory to get a GridPanel: function CreateGrid(config) { return new Ext.grid.GridPanel({ store: dataStore, ... }) }; Now, when I run this code: new Ext.Window({ closable: true, items: CreateGrid(), })....

Combo boxes do not show records on 2nd load of window

been struggling with an issue now for a day or two. I have an Ext.Window that contains 2 combo-boxes. on the first load everything works fine, both stores are populated and the combo's work as they should. However, if I .show() the window a second time, the combo boxes do not "drop down" to display the lists. I have checked Firebug and ...

How do I get checkbox unchecked from rowselection in an ExtJS grid?

Hi I am using checkboxselectionmodel in ExtJS grid? when i clicked on the row the row get selected and the respective checkbox also checked .. But i need the checkbox to be checked only when i click the checkbox otherwise i want row only get selected ... Please help me out... Thanks & Regards, Ramanavel Selvaraju ...

Using the Extjs Framework

I am required to use the Extjs framework in my next project. So what features are available in it? There are so many javascript frameworks available in the market like the DOJO framework. ...

Delphi,VCL... rendering web components on form

Hi, how can I render a part of website to a bitmap using delphi? recently I've seen Raudus framework which is ExtJs binding/wrapper for delphi. However what is unique about that, it does render components to look exactly like in the browser. Simply, it works like kind of WYSIWYG designer for Javascript components in delphi IDE. I was un...

Extjs with google Ajax Language Api

can we use google AJAX Language API with EXTjs????? i have tried example for translitration i have one html file New Document Type in Hindi (Press Ctrl+g to toggle between English and Hindi) and typemarathi.js google.load("elements", "1", { packages: "transliteration" ...

Extjs AJAX Language Api

can we use google AJAX Language API with EXTjs????? i have tried example for translitration i have one html file and typemarathi.js google.load("elements", "1", { packages: "transliteration" }); function onLoad() { var options = { sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH, destinationLan...

Extjs checkColumn

I see the example in extjs but seems the checkColumn don't update the xml.The api also not so helpfull.What i wanted to do is something like this.When user click the checkbox in the grid it will send ajax request. ...

How to get server data from a remotely loaded store

I am using a GroupingStore to load data into a grid, data is loaded from server and read via a JSON reader. Here is the releveant code var reader = new Ext.data.JsonReader({ successProperty: 'success', idProperty: 'id', root: 'data', messageProperty: 'message' }, [ {name: 'id'}, {name: 'creator'}, {name: 'f...

ExtJs Framework with Flex

Hi, How to embed the Flex Grid in ExtJs framework. Thanks, Ravi ...

ExtJS TreePanel RESTful support

How I can modify that example http://www.extjs.com/deploy/dev/examples/tree/reorder.html for RESTful support? When we click on some node, it sends POST as "node=src/dd", but it doesn't work for RESTful. It should be for example as "node/src_dd", and GET will be nice. I found that ExtJS support RESTful for Store. http://www.extjs.com/de...

Is everything in Ext js blue?

Sure, the blue is nice and it has a nice office look but you wouldn't want all applications to have the same color. Is it easy customize the look in ext js? ...

How to disable browser context menu on Ext.menu.Menu's items?

Assume I have a menu (Ext.menu.Menu) with some items. When menu is shown user cat right-click on it's item and browser context menu will be shown (with elements like "Save link as..."). How can I disable that browser context menu? Globally in all Ext.menuMenu instances if possible. ...

Is there a UI builder for Ext Js?

Any good UI builder for Ext Js out there? ...