extjs

IE7 Ext JS problem: Unspecified JS error on window.close()

I am using Ext JS to make a popup window, here is the code: function popupImage(term, imageNumber){ if(currentPopupWindow!=null){ currentPopupWindow.close(); } currentPopupWindow = new Ext.Window({ layout : 'fit', closeAction :'hide', plain : true, ...

Handling events from HTML anchor tags in ExtJS

I have a large application built in ExtJS and am looking for the best way to handle custom events from anywhere in the application. For example I might want to put an anchor tag in some text in the application which will open a custom component in my app. At the moment I listen to clicks on the body and if the target has a css class appl...

ASP.NET chat client

What's my best bet for implementing a simple chat client (2-person) in an ASP.NET 1.1 application? I'm using ExtJS for the front-end so if it integrates well with that it would be great. ...

Non-Java DocBook WebHelp output

Hi, Has anyone managed to get DocBook content output to webhelp that does not use a java applet? We are currently designing a web application that uses Ext JS and want to output the DocBook XML content into a format that can be used in parallel with our app (i.e. no Java applets). It is the desire of our management that we stick with D...

Ajax and Browser history using YUI Browser History Class.

I have an Ajax rich application that displays a grid with 100 urls. When u click on any row of the grid it loads the preview of that URL in the grid. Also on the onload event of the grid I perform several operation which fire many AJAX queries. I use YUI browser history class to enable browser back button. It works fine with FF3 but i...

ExtJS with a .NET backend

What's my best option (using the latest in the .NET framework) for creating a webapp with with a complete ExtJS frontend (all server interaction happens through AJAX with XML or JSON)? Are there any problems with using WCF? The following (fake, but funny) O'Reilly book cover seems to imply so. http://www.oreillymaker.com/link/14746/extj...

Extjs SetEditor - Query Builder

Hi, I am trying to add an editor to a cell, depending on the combo value selected in another cell. consider there are 2 columns, with one column a combo editor applied. If I select index 1, the column 2 adds a date editor, else a string editor. Basically I am building a Query Builder, so | | | Thanks in advance! ...

Can't set height on extJS Window

Regardless of what height argument I use, my window keeps a steady height of about 250px. The console.log statement outputs 600 when I pass 600 to show, e.g. getIFrameWindow().show({height: 600}), so I know my height argument is being passed and received correctly, but my window doesn't render with it's correct height. getIframeWindow ...

Extjs History class and iframes

Take the sample history example from Extjs framework. It works fine in Safari. Now add the following lines to the history.html page <iframe src='http://google.com'&gt;&lt;/iframe&gt; Now test the same example in Mac Safari. It just doesn't work. Any solution to this problem? ...

VS2008 Removes my Indentation in .js file

I'm working with ExtJs framework and so have to code a lot of JS in vs2008, however, VS2008 keeps removing my indentation and its driving me nuts. How do I remove the "auto-indent" feature? Thanks ...

Best looking administration panels for web applications

Please post a couple links to screenshots or demos to best looking administration interfaces for web applications and why do you think so. Personally, I like what 37signals produces, also extJS based panels, though they tend to be rather slow. ...

How to re-render the panel to different div when panel already render to some other div

I have created a Ext.Panel object, it rendered properly to specified div element on my page. I want to replace the panel object underlying element(previously rendered div element) to another div which will be identified dynamically. Here I don't want to create the Panel object once again by specifying identified div element, I need to...

How to re-render the panel to different div when panel already render to some other div

I have created a Ext.Panel object, it rendered properly to specified div element on my page. I want to replace the panel object underlying element(previously rendered div element) to another div which will be identified dynamically. Here I don't want to create the Panel object once again by specifying identified div element, I need to...

Readability of nested AJAX callback functions

Please help me to refactore this Javascript code. There is big form for scheduled message sending(send date, reccurence type, end by date/qauntity, credits system - need to count total cost of scheduled sending plan in runtime). I'm writing Javascript validator for this form. There is an validation algorithm 1) check if send date time i...

Where can I find documentation for extjs 2.02, the last LPGL version?

If I understand correctly, extjs 2.02 is the last LPGL version. But I think it's a little difficult to use without the API documentation as extjs.com no longer carry it. Did you face this very same issue? ...

Extjs Custom TriggerField implementation

hi, this is my first question here.. I hope I can contribute with answers too.. My need is to build an Extjs TriggerField implementation which open on trigger click a Panel with a custom loaded page inside... example: When I click the trigger button I what to open a panel specifying an url as '/Views/Test/Blabla.aspx' and then storing t...

i18n in ExtJS & Spring MVC

I've searched a bit on the web but haven't really found a concrete solution to internationalize an application running ExtJS & Spring MVC. Currently (for testing), I define global javascript variables in the JSP's & assign the string literals using JSTL tags. Has anyone had any success in coming up w/ a clear/clean/flexible solution on ...

display image in a grid using extjs

I am new to extjs. I want to display icon images for each grid elements. can you please healp me anybody? i am getting the image path from an xml file. my code is below. here i am displaying image path. i have to replace it by displaying image. Ext.onReady(function(){ var store = new Ext.data.Store({ url: 'new_frm.xml', ...

this[a] has no properties in ext js

I am new to extjs. I have to display a form and and a grid in one page. Grid is showing properly. and the form field are not displaying. In script error it is showing error in ext-all.js. what may be the problem when showing "this[a] has no properties" in firefox script errors? please help me to complete this task. ...

refresh a page in extjs

How can i refresh grid data when new data added in exts? ...