extjs

Window in extjs problem in reopening ( a unique and basic problem of extjs )

Hi all , I had a problem ,widow ones closed is not opening due to items extjs desktop system i created shortcut on the destop and when i click on the link first time window opens is working and if i close the subwindow and click on the same link again not opening not working /*****this is the code till now *******/ Ext.Window{ /****...

form submission in ExtJS and spring

Hi, I am trying to submit a Ext form on click of a link. By clicking on link I call a javascript function and submit the form there. I am also using spring, so when I submit the form it goes to the controller and process the request and hit the database and i return a modelandview object where i set the view name and an arraylist. but ...

ExtJS Tab Panels

So I'm adding a tab panel to a child window. A lot of our controls here are user defined but this looks like an ExtJS issue. When I add a tab panel, and then try and add controls and stuff to that panel, everything is cut off on that panel. Here is the code I am using: Using ViewDetailsWin As New Pages.ChildWindow With ViewDeta...

Wanted: Directions/ideas for a custom tree-to-tree drag'n'drop implementation in ExtJS

I need some combined functionality regarding drag'n'drop between two trees in ExtJS. The first required feature is very simple and is just the builtin drag'n'drop features isolated to a single tree only. The second required feature is that I wan't the user to be able to drag a node from the left tree and drop it at any node in the ri...

ext js 2.0 mimic igoogle interface

Hi, I would like to mimic the igoogle like interface in extjs. Any starters ? or any alternatives ? ...

create Custom Component and re use it

hi all, i am new to ext, i want to create a custom component containing a form and use it by registering it as a xtype, where i want: MyComponent = Ext.extend(Ext.FormPanel, { initComponent: function () { Ext.apply(this, { labelWidth: 50, // label settings here cascade unless overridden items: [{ ...

Open multiple child windows and keep track of them all

So here is the situation. I have a button on one of my extjs pages. This button opens a child window as a pop-up. This child window has a .method attribute as well as a .ref attribute, and also a .id. I need the functionality to open another window with the SAME template, everytime I click that button. I was thinking set the childwindow...

TreeLoader: Not firing ajax request for child nodes?

Ok so, i have this site that i am putting together in the play framework. It basically connects to an FTP site on the back end, retrieves a list of folders/files and sends that to a basic ExtJS front-end as JSON. I have it working so that the Tree Panel gets populated correctly, but it doesn't seem to be doing anything special when i e...

Need a jquery plugin similar to extplorer

Can someone pls point me to any jquery plugin for a file/folder browser similar to the extplorer ub ExtJS with tree hierarchy along with the grid and list view in the right pane: http://extplorer.sourceforge.net/extplorer.png ...

Ext.JS Store Record is undefined

var debtProtectionId = 0 // get the selected id of debt protection dropdown if (mainPanel.generalPanel.calculationsFieldSet.debtProtection.getValue() != '') { debtProtectionId = mainPanel.generalPanel.calculationsFieldSet.debtProtection.getValue(); } // get the store record with this id var storeRecord = planC...

Ext is not defined IN Firefox ? (urgent help)

hi ! i have a urgent question about Ext JS (error message) explanation : i had a code that was running fin in all browsers but yesterday noon i tried to modify de css and i think mest something up without knowing... after saving my document et uploading to my server ! i incounter the error : "Ext is not defined" and "illegal chara...

EXT JS:password can be seen from firebug

Using extjs text field with input type='password' The username and password can be seen from firebug when click login button. Is there any way to make it safe and invisible? ...

How to handle scroll events on Ext.Panels in Ext Touch (Sencha Touch) ?

I have two Ext.Panels, one the scrollingContent, inside another, called wrapper. Wrapper is less large than scrollingContent, so the latter scrolls horizontaly inside his wrapper. I would like to handle scroll events and the position of scrollingContent inside wrapper after each scroll. I did not find any solution for this. Any help wo...

Adding custom records to a JSON data store for a combobox (ExtJS)

Hello all, I have a JSON data store used for a combobox selection which is working fine, however I wish to add a custom record to the combobox and it isn't working. Here is my code: Note: I removed some of the code to make it easier to read. var ds = new Ext.data.Store({ proxy: new Ext.data.ScriptTagProxy({ url: 'a...

In ExtJS, How Can You Loop Through Menu Items?

All, Using Ext JS, if you have a panel with a toolbar that has a menu with several items in it, how can you loop through all items within that menu to, say, remove the respective items icons (i.e. change setIconClass to '')? Many thanks in advance for the response! ...

What is different between asynctreenode and treenode?

What is different between asynctreenode and treenode in Extjs? When should I one or another? Thanks. ...

Firing events on a popup window (ExtJS)

Hello, we're currently developing an application that makes extensive use of popup windows(*) and have run into an issue on IE (this has been reported before but I couldn't find any solution). The problem is this: our main window M opens a popup window P and keeps a reference to it. P then registers an event handler on an object in M. ...

How to make my U_store.load() waiting infinitely in extjs

how to make my U_store.load() waiting infinitely var U_store = new Ext.data.JsonStore({ id:'jfields', totalProperty:'totalcount', root:'rows', url: 'first-utility/index_json.php', }); my index_json.php returns result in 10 min but the load() in extjs does not wait so much it return immediately , can somebody he...

Remembering Selections in ExtJS Grid with Paging On

I have the following example available: Ext.onReady(function(){ var myData = [ ['3m Co',71.72,0.02,0.03,'9/1 12:00am'], ['Alcoa Inc',29.01,0.42,1.47,'9/1 12:00am'], ['Altria Group Inc',83.81,0.28,0.34,'9/1 12:00am'], ['American Express Company',52.55,0.01,0.02,'9/1 12:00am'], ['American Inter...

Is there an ExtJS DataWriter that can write all changes to all stores at once?

I have a master detail form (think Invoice and InvoiceDetail). I have two data stores to go along with them both. The Ext JsonWriter object that comes standard with ExtJS is great if I want to send my insert, update, and delete statements back to the server in 6 separate calls (3 for each store). But what if I want to send all six at onc...