Category: ExtJS
-
DevFest Building Scalable JavaScript Apps Slide Deck and Demos | .NET Zone
DevFest Building Scalable JavaScript Apps Slide Deck and Demos | .NET Zone – http://dotnet.dzone.com/articles/devfest-building-scalable-0?utm_medium=referral&utm_source=pulsenews
-
ExtJS 4.0: Keeping a row at the top position in a GridPanel
I’ve had the need for a grid I am working on keep a row representing the user currently logged in as the top row in the grid. Mind you there is no paging on this grid. I am using a slightly outdated version of ExtJS, i.e 4.0. I tried listening to the viewready event on…
-
An Overview of the new ExtJS 4 Javascript framework
Having worked with ExtJS 3.1, it’s a real pleasure to see them keep pushing forward today with the release of version 4. ExtJS is a great framework for doing specific types of UI, and it takes a minute to wrap your mind around the mainly class system configuration programming style required to get things rolling…
-
How to POST cross domain and access the returned data using ExtJS
Please refer to my earlier post for background on this project. Here is how to post data to a server on a different domain and receive data back using ExtJS (with inspiration from the GWT implementation). First the FormPanel. The fields are standard and in the JS file we define two variables that are critical…
-
ExtJS: Printing Panels and Grids
One of the features i had to implement in one of the ExtJS application I’ve worked on is printing. I was surprised to find out that there was no official print stylesheet for ExtJS. Overall, my strategy was to bring up the print layout within a popup window and call the window.print() command once rendering…
-
Cross Domain Form Post (XDM) in ExtJS with returned data
I’ve helped a colleague of mine work on a cross domain widget we are building for our applications that allows a user from an application to add information to another application through a pop up widget. Implementation wise, we used a a simple form implemented using ExtJS FormPanel class. Some of the form fields like…
-
Invalid Argument Error using ScriptTagProxy and IE6
As explained in my earlier post, i used Ext.data.ScriptTag proxy for some cross-domain AJAX data retrieval. Testing in IE6, I kept getting an “Invalid Argument” error in IE traced to this line in the code. A search on the Sencha forum turned up only this post, with no good solution posted. I traced the problem…
-
Of ExtJS’s ScriptTagProxy, Spring Actions, TreePanels and JsonStores
I recently had to implement an Organization lookup (backed by a LDAP repository) widget that will be used by some of the web applications I developed and this in a cross-domain environment. The data displayed within the widget is broken down in Organization->Group->Person hierarchy and on selection of a Person and click of a button,…
-
ExtJS: Reloading a Combobox’s Store using OnTriggerClick
I am working on an application where i use a grid and have a combobox outside the grid whose selections are based on the selected rows within the grid. Basically the content of the combobox is dynamically updated based on the selection of rows. I’ve tried many ways of going about solving this problem since…