active questions tagged extjs - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T03:45:22Zhttp://stackoverflow.com/feeds/tag/extjshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1941461/how-to-get-the-value-of-checkbox1How to get the value of checkboxxrx2152009-12-21T17:29:34Z2009-12-22T15:31:14Z
<p>How to get the value of a check box?</p>
<pre><code>var tb = new Ext.Toolbar();
tb.add({
xtype: 'checkbox',
boxLabel: 'Expand Groups by Default',
id: 'GetChkBoxValue',
checked: true,
handler: function() {
alert(this.getValue())
}
});
</code></pre>
<p>Is it possible to get the value of the checkbox outside tb.I have done something like this but it is not firing</p>
<pre><code>Ext.getCmp('GetChkBoxValue').getValue();
</code></pre>
http://stackoverflow.com/questions/1945218/ext-js-javascript-execution0Ext Js Javascript executionJonnio2009-12-22T09:35:56Z2009-12-22T13:55:13Z
<p>I have a typical Ext Js style window with a left navigation, header and central region to display stuff. </p>
<p>The left navigation has a bunch of menu items that when clicked on load something via the Panel.Load() method from a specified url into the central panel. </p>
<p>My problem is that in IE if i click many menu items too fast i get various javascript errors, I believe dom elements are trying to be accessed that no longer exists as the updater is in the process updating the html. </p>
<p>Has anyone come across this or is there anyway to stop javascript executing once a new load request has started.</p>
<p>I have tried using this:</p>
<pre><code> if(Ext.isIE) {
window.document.execCommand('Stop');
}
else {
window.stop();
}
</code></pre>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1936327/ext-js-how-to-add-panel-to-tab-panel-dynamicaly-for-tree-node-click0 ext js how to add panel to tab panel dynamicaly for tree node click?Amila Thennakoon 2009-12-20T16:53:01Z2009-12-20T16:59:19Z
<p><strong>strong text</strong></p>
<p>dear all im created boder layout and add tree panel to west region ,
& add tab panel to center region </p>
<p>i want to know how can i add another tab in tab panel for tree node click?</p>
http://stackoverflow.com/questions/813123/usage-of-extjs-under-gpl-v30Usage of ExtJS under GPL v3mixedpickles2009-05-01T20:28:06Z2009-12-20T16:00:03Z
<p>If I decide to use ExtJS under GPL v3 instead of a commercial license model (Dual License Model), what exactly do I need to open source?</p>
<p>I do not modify the library in any other way than configuration. Do I nevertheless need to publish the source code of my application? And if so, do I have to publish all code, even server side code?</p>
http://stackoverflow.com/questions/1928821/reload-jsonstore-making-options-request0Reload JsonStore making OPTIONS requestUpper Stage2009-12-18T15:19:52Z2009-12-18T16:08:33Z
<p>Why is a call to the reload method of a JsonStore making an OPTIONS request to the server? When running under IE, the reload makes a POST request, but under FF an OPTIONS request.</p>
<p>Can I prevent FireFox (or ExtJS) from making an OPTIONS request?</p>
http://stackoverflow.com/questions/1927132/extjs-combo-box-binding-from-sql0Extjs combo box binding from SQl vineth2009-12-18T09:05:48Z2009-12-18T13:56:34Z
<p>Hi,
I am new to ExtJS,i used in asp.net,C# in VS2008.. i simply added comboBox control with static data in aspx page, </p>
<p>but i need to know how to bind the value from sql DB , can any one provide any sample application which explains, how to get the value from the control and bind to the controls</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1074445/extjs-find-a-trees-node-id-by-its-value0EXTJS: find a tree's node ID by its value.Craig2009-07-02T13:48:11Z2009-12-18T12:00:01Z
<p>Hello All,</p>
<p>I have an Asynch loaded tree that I am trying to have certain branches expanded when a user does a search. Now I have the data coming back from the server side, but how do I expand (and load if necessary) a specific node of a tree by the value (i don't have the node id) Is there anyway to lookup the node by value?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1790322/ext-js-how-to-tell-pagingtoolbar-to-use-parent-grid-storage0Ext JS how to tell PagingToolbar to use parent Grid storage?Nazariy2009-11-24T14:10:59Z2009-12-16T23:07:22Z
<p>I'm trying to build application that use single config passed by server as non native <strong>JSON</strong> (can contain functions). Everything works fine so far but I'm curious why <strong>PagingToolbar</strong> does not have an option to use parent <strong>Grid</strong> store? </p>
<p>I have tried to set store in my config like this, but without success:</p>
<pre><code>{...
store:Ext.StoreMgr.lookup('unique_store_id')
}
</code></pre>
<p>Is there any way to do so without writing tons of javascript for each view defining store, grid and other items in my application or at least extend functionality of <strong>PaginationToolbar</strong> that use options from parent object?</p>
<p>UPDATED,
Here is short example of server response (minified)</p>
<pre><code>{
"xtype":"viewport",
"layout":"border",
"renderTo":Ext.getBody(),
"autoShow":true,
"id":"mainFrame",
"defaults":{"split":true,"useSplitTips":true},
"items":[
{"region":"center",
"xtype":"panel",
"layout":"fit",
"id":"content-area",
"items":{
"id":"manager-panel",
"region":"center",
"xtype":"tabpanel",
"activeItem":0,
"items":[
{
"xtype":"grid",
"id":"domain-grid",
"title":"Manage Domains",
"store":{
"xtype":"arraystore",
"id":"domain-store",
"fields":[...],
"autoLoad":{"params":{"controller":"domain","view":"store"}},
"url":"index.php"
},
"tbar":[...],
"bbar":{
"xtype":"paging",
"id":"domain-paging-toolbar",
"store":Ext.StoreMgr.lookup('domain-store')
},
"columns":[...],
"selModel":new Ext.grid.RowSelectionModel({singleSelect:true}),
"stripeRows":true,
"height":350,
"loadMask":true,
"listeners":{
"cellclick":activateDisabledButtons
}
}
]
},
}
]
}
</code></pre>
http://stackoverflow.com/questions/1916919/french-characters-are-not-displaying-correctly-inside-javascript-grid0French characters are not displaying correctly inside javascript gridopenid_kenja2009-12-16T19:08:29Z2009-12-16T22:23:56Z
<p>We have translated one of our pages to french and all the html within the page displays flawlessly. That said, there is a javascript table (ext js) and the accented characters are not displaying correctly. The page is encoded UTF-8 in the HTML meta tags, but when I look inside FireBug, I see the following: </p>
<p>Accept-Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7</p>
<p>I'm guessing the problem is related to the ISO-8859-1 having worked its way back in. Does anyone know why the page itself would display fine, but the text inside the javascript component wouldn't? Do you somehow specify the encoding separately for the javascript files? </p>
http://stackoverflow.com/questions/1911903/jquery-or-extjs-plugins-for-creating-organization-chart0jquery or extjs plugins for creating organization charttsurahman2009-12-16T02:32:35Z2009-12-16T03:20:41Z
<p>I know we can create organization chart with <a href="http://code.google.com/apis/visualization/documentation/gallery/orgchart.html" rel="nofollow">http://code.google.com/apis/visualization/documentation/gallery/orgchart.html</a> but my clients server doesn't have internet connection.</p>
<p>is there any jquery or extjs plugins for creating it?</p>
<p>thanks</p>
<p>:D</p>
http://stackoverflow.com/questions/1904971/best-approach-to-creating-a-custom-extjs-of-pure-html0Best approach to creating a custom ExtJS of pure HTMLJamie Love2009-12-15T03:22:52Z2009-12-15T05:27:55Z
<p>So I have a need to create an ExtJS component (version 2.3.0). The component is simply plain HTML (styled) - it is a heading.</p>
<p>My current approach is to create a custom component as follows:</p>
<pre><code>/**
* A ExtJS component for a header for the application
*/
Ext.ux.AppHeader = Ext.extend(Ext.Component, {
height: 32,
tpl: new Ext.Template ('<div class="title-bar"><h1>My App</h1></div>'),
onRender: function(ct) {
this.el = this.tpl.append (ct);
Ext.ux.AppHeader.superclass.onRender.apply(this, arguments);
}
});
Ext.reg('AppHeader', Ext.ux.AppHeader);
</code></pre>
<p>This works fine, but I'm not convinced it is the "right" way to go about it. If anyone can share a more idiomatic way to do it, or a way that utilises some inner magic in ExtJS better, that would be great.</p>
<p>If on the other hand this is the "right" way to do it - let this be an example of how one can.</p>
http://stackoverflow.com/questions/1896902/ext-js-el-ownerdocument-createrange-errors-in-ie-80ext js - el.ownerDocument.createRange() errors in IE 8dwfresh2009-12-13T16:03:01Z2009-12-14T17:24:01Z
<p>HI,
I am trying to dynamically add a form to a tab in Ext-js. (the tab has already been rendered). fyi, i am using I am using Ext 2.2.</p>
<p>the error occurs when during the tab.add function:
ie:</p>
<pre><code>function tabactivate(tab) {
var newItem= new Ext.FormPanel(.....);
**tab.add(newItem)**; //ERRORS HERE
tab.doLayout();
}
</code></pre>
<p>I get this error on line 247 of ext-all-debug.js
which is </p>
<pre><code>range = el.ownerDocument.createRange();
</code></pre>
<p>the error is (Object doesn't support this property or method.)</p>
<p>This works fine in Firefox but breaks in IE8.
Does anyone know a workaround for this ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/673364/i18n-in-extjs-spring-mvc0i18n in ExtJS & Spring MVCGeekinfo2009-03-23T13:29:50Z2009-12-14T14:00:11Z
<p>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.</p>
<p>Has anyone had any success in coming up w/ a clear/clean/flexible solution on this?</p>
<p>Any thoughts are really appreciated. TIA.</p>
http://stackoverflow.com/questions/1783919/create-a-window-browser-inside-the-browser-with-extjs0Create a window browser inside the browser with extjsDisco2009-11-23T15:38:10Z2009-12-14T10:16:12Z
<p>I'm trying to create a mini browser inside a window using extJS.</p>
<p>Here's what i have so far : </p>
<pre><code>panelContent = new Ext.Panel({
region: 'center',
margins: '0 0 0 0',
autoScroll: true,
html: '<iframe style="overflow:auto;width:100%;height:100%;" frameborder="0" src="http://www.google.com"></iframe>'
});
var tb = new Ext.Toolbar();
var combo = new Ext.form.ComboBox({
width:435,
});
tb.addField(combo);
tb.doLayout();
browser = new Ext.Window({
title: 'Internet Browser',
tbar: tb,
closable: true,
closeAction: 'hide',
width: 600,
height: 600,
border:false,
plain: true,
layout: 'border',
items: [panelContent],
});
</code></pre>
<p>I'm trying to get the iframe load the content of what's typed inside the combobox, but i can't find out how to 'tell' him to load a page, and i could not even 'get' when the user hits 'enter'. Maybe replacing the combobox by inputbox ? don't know how to do this (starting with extjs).</p>
<p>Thank you for your help.</p>
http://stackoverflow.com/questions/1589027/what-is-extjs-philosophy-single-page-application3What is ExtJS philosophy? Single page application?stach2009-10-19T14:35:47Z2009-12-14T08:00:54Z
<p>I need to write my next project using ExtJs.
It's a nice Javascript lib but I don't fully understand the idea behind it.
Take the docs page for example:
<a href="http://www.extjs.com/deploy/dev/docs/" rel="nofollow">http://www.extjs.com/deploy/dev/docs/</a></p>
<p>Am I supposed to write my web applications with extjs like that?
One page that should never be refreshed,
and everything getting done by AJAX?</p>
<p>How do you debug such applications if getting to the right place
may take a lot of 'clicking' and working with it.
You cannot fix the bug and hit refresh in the browser to see the
results.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/730026/extjs-sortable-elements-list0ExtJs sortable elements listNikolai2009-04-08T13:33:45Z2009-12-14T00:00:01Z
<p>Is there any implementation of sortable list in ExtJs as JQuery UI .sortable has ?
Or how could I drop element using jQuery UI sortbale from eastern panel of ExtJs layout to droppable sortable element in central panel of layout ? Now dragging element hides under layout :(</p>
http://stackoverflow.com/questions/1885085/best-way-to-post-files-asynchronously-with-extjs1Best way to post files asynchronously with ExtJSTigrouMeow2009-12-11T00:31:56Z2009-12-13T16:15:09Z
<p>Hi,</p>
<p>I basically have a form that the users filled in, and in which it's also possible to attach files. It's really equivalent to gmail actually: the files are sent while you're still typing the information in the form, and when you click on the final submit button, it waits for the files to be all transferred and submit the final fields.</p>
<p>My issue here is to submit these files during the process. My first idea was to first create a new FormPanel for each added file in order to be able to send them using a POST Ext.Ajax.request. Unfortunately, we can't embed a form in a form (and somewhat I thought that ExtJS would handle this differently, but I tried and t it's not).</p>
<p>I've seen a few controls on Internet using some Flash to do this, but this is not the way I want to do it. I would like to do it the same way as Google made it! Except having a progress bar, it's a nice feature but it's not mandatory :)
Thank you for your help!</p>
http://stackoverflow.com/questions/1896785/ext-direct-login-form-question0Ext.Direct Login Form QuestionJamie2009-12-13T15:12:17Z2009-12-13T15:12:17Z
<p>Hello there! I have a problem with my ExtJS code.</p>
<pre><code>result is undefined
[Break on this error] if(result === true || result.success){
</code></pre>
<p>This is my ExtJS code:</p>
<pre><code>var login = new Ext.FormPanel({
draggable: false,
labelWidth:80,
frame:true,
title:'Please Login',
defaultType:'textfield',
monitorValid:true,
buttons:[{
text: 'Submit',
formBind: true,
handler: function(){
login.getForm().submit({
waitTitle:'Connecting',
waitMsg:'Logging in...',
success:function(btn, text)
{
var redirect = '/portal';
window.location = redirect;
}
});
}
}],
items:[{
fieldLabel:'Username',
name:'loginUsername',
allowBlank:false
},{
fieldLabel:'Password',
name:'loginPassword',
inputType:'password',
allowBlank:false
}],
api: {
submit: defero.portal.login
}
});
</code></pre>
<p>In Ext.Direct can I do </p>
<pre><code>login.getForm().submit({
waitTitle:'Connecting',
waitMsg:'Logging in...',
success:function(btn, text)
</code></pre>
<p>It seems 'success' isn't allowed as a callback in Ext.Direct.</p>
<p>Any help would be HUGELY aprpeciated. Thanks all! :-)</p>
http://stackoverflow.com/questions/1889397/extjs-loop-through-form-fields-that-got-a-specified-name0ExtJS loop through form fields that got a specified nameManny Calavera2009-12-11T17:00:54Z2009-12-11T18:55:13Z
<p>Hello. I'm using ExtJS 3. I have a formPanel with many "cloned" fields and I gave every field the name "price[]". After submit I would like to loop through every field that has the name "price[]" and get their values one at a time to be checked against something in the database.</p>
<p>Note: there are other fields in this form so that's why I need to specify witch items to get from it, by name. I know how to submit the form, I just need to loop through those field and get their values.</p>
<p>How can I do this ?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1874542/selenium-issues1Selenium IssuesGregT2009-12-09T15:15:18Z2009-12-11T14:49:29Z
<p>I have been using Selenium a lot lately (testing an ExtJs app) and while in many ways it is wonderful, there are three things that cause me a lot of grief:</p>
<ol>
<li><p><strong>Inability to directly click on elements</strong> other than buttons. This has led me to write a bunch of Robot code to move the mouse around. That works but is a bit fragile, plus if you touch your mouse while a test is running, you are screwed. I tried the Selenium forums to see if there was a better way, and got nowhere. I think (but am not sure) that this is a fundamental limitation of Selenium's JS injection technique.</p></li>
<li><p><strong>Inability in many cases to control what the 'id' attribute get sets to</strong>. This happens inside ExtJs and some elements let you set it, some don't, and some do but the attribute ends up where you don't expect it. You end up having to use XPath in some cases. Using XPath with ExtJs is kind of horrible as ExtJs creates massive levels of nested DIV's. You can also sometimes use CSS locators (which are also inconsistently controllable in ExtJs). (BTW, this is obviously not a Selenium problem per se).</p></li>
<li><p><strong>The time that Selenium takes to fire up FF is too long</strong>... way longer than a normal human FF startup, about 2 seconds per test, which translates into tests that last several minutes, way too long.</p></li>
</ol>
<p>I briefly looked at Watij, BadBoy and a couple of other web functional testing apps but none of them looked anywhere near as good as Selenium. (The way Selenium tests can be written in Java and run through jUnit is really, really sweet). There are also a few commercial alternatives but they are beyond my budget and there is no assurance that they would work any better anyway.</p>
<p>Any thoughts or suggestions appreciated.</p>
http://stackoverflow.com/questions/1881733/extjs-filter-editor0extjs filter editorhazimdikenli2009-12-10T15:26:24Z2009-12-11T09:25:55Z
<p>Hi,
does extJS have any kind of visual filtering tool for its grids.</p>
<p>there are three sample criterias in the next line which are added by the user, and an x button to remove the criteria.</p>
<p><em>Sample Filter:</em></p>
<p>[Business Unit=Accounting-x] [Name like 'Jo*'-x] [Age between 25-33-x]</p>
<p><strong>Personnel Grid</strong> (displaying the filtered data)</p>
<p><em>1 33 Josh Accounting</em></p>
<p><em>2 35 John Accounting</em>
<img src="http://img189.imageshack.us/img189/9879/searchresultsn.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1442374/ajax-framework-should-i-go-for-extjs-or-raxan0ajax framework should I go for extjs or raxan?i need help2009-09-18T02:55:21Z2009-12-11T02:12:16Z
<p>jquery- Definitely a great choice for DOM manipulation, and have lot of libraries.</p>
<p>extjs 3.0- <a href="http://www.extjs.com" rel="nofollow">http://www.extjs.com</a>
they mentioned many big companies also using it. I seen their interface all great!</p>
<p>raxan framework- <a href="http://raxanpdi.com" rel="nofollow">http://raxanpdi.com</a>
Guys, any idea on this? Sounds good too.</p>
<p>YUI? I heard that YUI is less troublesome than extjs, more stable in event calling and better documentation.</p>
<p>I'm going to develop a php application.</p>
<p>Definitely jquery is a must.</p>
<p>Regarding extjs and raxan, guys what do you think?</p>
<p>Can give me some comment on its
1. performance
2. code flexibility
3. whether it's your favorite, and whether it will become a trend in future?
4. whether can easily combine with cakephp?</p>
<p>Jquery is becoming a trend now, as you know.</p>
http://stackoverflow.com/questions/1861560/sorting-in-grid-panel0Sorting in grid panelxrx2152009-12-07T17:35:37Z2009-12-10T17:56:03Z
<pre><code> var store = new FMP.AspNetJsonStore({
fields: [
{ name: 'AssetID' },
{ name: 'AssociationID' },
{ name: 'Image' },
{ name: 'StatusName' },
{ name: 'ModelName' },
{ name: 'IPAddress' },
{ name: 'InScope', type: 'boolean' },
{ name: 'ServicePlanName' },
{ name: 'PricePlanName' },
{ name: 'PricePlanDescription' },
{ name: 'Program' },
{ name: 'ServicePlanID' },
{ name: 'Customer' },
{ name: 'Black', type: 'float' },
{ name: 'Cyan', type: 'float' },
{ name: 'Magenta', type: 'float' },
{ name: 'Yellow', type: 'float' },
{ name: 'BlackPct' },
{ name: 'CyanPct' },
{ name: 'MagentaPct' },
{ name: 'YellowPct' },
{ name: 'PrinterMarkerSupplies' },
{ name: 'PageCount' },
{ name: 'BlackImpressions' },
{ name: 'ColorImpressions' },
{ name: 'PricePlanID' },
{ name: 'ResponsibilityForAction' },
{ name: 'PrinterSerialNumber' }
],
totalProperty: "TotalCount",
autoLoad: { params: { start: 0, limit: myPageSize} },
//autoLoad: true,
proxy: new Ext.data.HttpProxy({
// Call web service method using GET syntax
url: 'GetPrintersGrid.asmx/buildGrid',
// Ask for Json response
headers: { 'Content-type': 'application/json' },
method: "GET"
}),
remoteSort: true,
//sortInfo: { field: 'PageCount', direction: "DESC" },
groupField: 'Customer',
root: 'Records'
});
store.setDefaultSort('PageCount', 'DESC');
</code></pre>
<p>Iam using a webservice to sort this.</p>
<p>Iam getting an error </p>
<p>{"Message":"Invalid JSON primitive: DESC.","StackTrace":" at System.Web.Script.Serialization.JavaScriptObjectDeserializer.DeserializePrimitiveObject()\r\n at System.Web.Script.Serialization.JavaScriptObjectDeserializer.DeserializeInternal(Int32 depth)\r\n at System.Web.Script.Serialization.JavaScriptObjectDeserializer.BasicDeserialize(String input, Int32 depthLimit, JavaScriptSerializer serializer)\r\n at System.Web.Script.Serialization.JavaScriptSerializer.Deserialize(JavaScriptSerializer serializer, String input, Type type, Int32 depthLimit)\r\n at System.Web.Script.Services.RestHandler.GetRawParamsFromGetRequest(HttpContext context, JavaScriptSerializer serializer, WebServiceMethodData methodData)\r\n at System.Web.Script.Services.RestHandler.GetRawParams(WebServiceMethodData methodData, HttpContext context)\r\n at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.ArgumentException"}</p>
<p>Can anyone help me in this issue</p>
http://stackoverflow.com/questions/605461/vs2008-removes-my-indentation-in-js-file0VS2008 Removes my Indentation in .js fileFailBoy2009-03-03T07:46:50Z2009-12-10T14:15:49Z
<p>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.</p>
<p>How do I remove the "auto-indent" feature? Thanks</p>
http://stackoverflow.com/questions/656578/extjs-custom-triggerfield-implementation0Extjs Custom TriggerField implementationHoghweed2009-03-18T00:40:50Z2009-12-10T14:00:11Z
<p>hi,
this is my first question here.. I hope I can contribute with answers too..</p>
<p>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 the selection in the trigger field value.
I hope someone could help me
Thanks in advance</p>
http://stackoverflow.com/questions/1224292/best-way-to-automatically-compress-and-minimize-javascript-files-in-an-asp-net-mv8Best Way to automatically compress and minimize JavaScript files in an ASP.NET MVC appwgpubs2009-08-03T19:53:54Z2009-12-10T03:17:27Z
<p>So I have an ASP.NET MVC app that references a number of javascript files in various places (in the site master and additional references in several views as well). </p>
<p>I'd like to know if there is an automated way, and if so what is the recommended approach, for compressing and minimizing such references into a single .js file where possible. Such that this ...</p>
<pre><code><script src="<%= ResolveUrl("~") %>Content/ExtJS/Ext.ux.grid.GridSummary/Ext.ux.grid.GridSummary.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ExtJS/ext.ux.rating/ext.ux.ratingplugin.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ExtJS/ext-starslider/ext-starslider.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ExtJS/ext.ux.dollarfield.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ExtJS/ext.ux.combobox.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ExtJS/ext.ux.datepickerplus/ext.ux.datepickerplus-min.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ExtJS/SessionProvider.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ExtJS/TabCloseMenu.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ActivityViewer/ActivityForm.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ActivityViewer/UserForm.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ActivityViewer/SwappedGrid.js" type="text/javascript"></script>
<script src="<%= ResolveUrl("~") %>Content/ActivityViewer/Tree.js" type="text/javascript"></script>
</code></pre>
<p>... could be reduced to something like this ...</p>
<pre><code><script src="<%= ResolveUrl("~") %>Content/MyViewPage-min.js" type="text/javascript"></script>
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1875154/extended-extjs-class-cant-find-custom-listener-function-oe-is-undefined0Extended ExtJS Class can't find custom listener function - "oe is undefined"Stephen Moretti2009-12-09T16:41:44Z2009-12-10T01:15:26Z
<p>I'm adding a custom context menu to a TreePanel.
This was all working when I had a separate function for the context menu, but I was having problems where the context menu items would end up doubled/tripling up if I clicked on one of the options and then viewed the context menu again.</p>
<p>I had a look around for other contextmenu examples and came up with <a href="http://www.extjs.com/forum/showthread.php?p=84588#post84588" rel="nofollow">this one by Aaron Conran</a> I pretty much "stole" it wholesale with a few additions, tacking the function directly into the Ext.ext.treePanel config. This gave me an error about "oe is undefined" which seemed to refer to "contextmenu: this.onContextMenu" in the tree config.</p>
<p>I figured it was probably something to do with the way I was defining all of this, so I decided to look at extending Ext.ext.TreePanel with my function in it as a learning exercise as much as anything.</p>
<p>Unfortunately, having managed to sort out extending TreePanel I'm now back to getting "oe is undefined" when the page tries to build the TreePanel. I've had a look around and I'm not really sure whats causing the problem, so any help or suggestions would be greatly appreciated.</p>
<p>Here is the code that is used to define/build the tree panel. I hope its not too horrible.</p>
<pre><code>siteTree = Ext.extend(Ext.tree.TreePanel,{
constructor : function(config){
siteTree.superclass.constructor.call(this, config);
},
onContextMenu: function(n,e){
if (!this.contextMenu){
console.log('treeContextMenu',n,e);
if (n.parentNode.id == 'treeroot'){
var menuitems = [{text:'Add Child',id:'child'}];
} else {
var menuitems =
[{text:'Add Child',id:'child'},
{text:'Add Above',id:'above'},
{text:'Add Below',id:'below'}];
}
this.contextMenu = new Ext.menu.Menu({
id:'treeContextMenu',
defaults :{
handler : treeContextClick,
fqResourceURL : n.id
},
items : menuitems
});
}
var xy = e.getXY();
this.contextMenu.showAt(xy);
}
});
var treePanel = new siteTree({
id: 'tree-panel',
title : 'Site Tree',
region : 'center',
height : 300,
minSize: 150,
autoScroll: true,
// tree-specific configs:
rootVisible: false,
lines: false,
singleExpand: true,
useArrows: true,
dataUrl:'admin.page.getSiteTreeChildren?'+queryString,
root: {
id: 'treeroot',
nodeType: 'async',
text: 'nowt here',
draggable: false
},
listeners:{
contextmenu: this.onContextMenu
}
});
</code></pre>
<p>As a total aside; Is there a better way to do this in my context menu function?</p>
<blockquote>
<p>if (n.parentNode.id == 'treeroot') {
Basically, if the clicked node is the top level I only want to give the user an add Child option, not add above/below.</p>
</blockquote>
<p>Thanks in advance for your help</p>
http://stackoverflow.com/questions/1876292/ext-js-dynamically-changing-content-of-tab-in-a-tabpanel0Ext js - Dynamically changing content of Tab in a TabPaneldwfresh2009-12-09T19:37:48Z2009-12-09T20:09:53Z
<p>Hey,
I have an (Ext JS) tab panel where the hidden tabs aren't loaded at all upon initial instantiation, (the only thing I set is the title). </p>
<p>Upon 'activation' of a tab I want to call a method , which then instanstiates a new FormPanel/GridPanel and put this content into the tab.</p>
<p>Can someone point me to a code example or give me tips on how to do this??
Thanks so much!</p>
http://stackoverflow.com/questions/1871270/could-not-able-to-render-simple-piechart-using-extjs-3-00Could not able to render simple Piechart using ExtJs 3.0SriniWeb2009-12-09T02:33:29Z2009-12-09T04:01:10Z
<p>I was trying to render a simple piechart using ExtJs 3.0 but could not. Below is the snippet:</p>
<pre><code><div id="ext_grid_panel">
<div id="blackout_tab">
<div id="grid_blackout_current"></div>
</div>
<div id="gls_tab">
<div id="gls_current"></div>
</div>
</div>
var mainGridPanelWidth = (Ext.IsIE)?'':'width: \'100%\',';
var mainGridPanel = new Ext.TabPanel({
id: 'maingridpanel',
renderTo: 'ext_grid_panel',
style: {width:'100%'},
tabWidth: 1000,
activeTab: 0,
items: [
{id: 'allTabPanel',contentEl: 'blackout_tab',title: 'All'},
{id: 'glsTabPanel',contentEl: 'gls_tab',title: 'GLS'}
]
});
if (!Ext.IsIE)
mainGridPanel.setWidth('100%');
Ext.getCmp('allTabPanel').on('activate', function() {
});
Ext.getCmp('glsTabPanel').on('activate', function() {
});
var pieChart = {
xtype : 'piechart',
store : [{'total' :'42', 'range':'20,000'},{'total' :'53', 'range':'10,000'}],
dataField : 'total',
categoryField : 'range'
};
var panelBlackoutCurrent = new Ext.Panel({
id: 'panelblackoutcurrent',
renderTo: 'grid_blackout_current',
items: [
pieChart
]
});
var panelglsCurrent = new Ext.Panel({
id: 'panelglscurrent',
renderTo: 'gls_current',
items: [
pieChart
]
});
</code></pre>
<p>When i inspect in firefox firebug, i see an object(.swf) is created but the piechart content is not there/rendered.</p>
<p>Quick guidance is highly appreciated as it is taking lot of time with no solution</p>
http://stackoverflow.com/questions/1864535/lock-row-in-grid-in-extjs0Lock row in grid in extjsapriza2009-12-08T04:15:01Z2009-12-08T14:03:56Z
<p>How to lock a specific row in extjs.</p>