Search Type: Posts; User: fshort
Search: Search took 0.02 seconds.
-
19 Jul 2011 6:03 AM
Jump to post Thread: Changing Style of Chart Axis Title by fshort
- Replies
- 6
- Views
- 1,358
Looking for an answer to this as well. Any advice?
-
28 Apr 2011 9:37 AM
Jump to post Thread: MVC documentation errors by fshort
- Replies
- 4
- Views
- 613
Thanks Steffen. That tip helped.
-
28 Apr 2011 9:03 AM
Jump to post Thread: MVC documentation errors by fshort
- Replies
- 4
- Views
- 613
A few points about the MVC documentation.
- The MVC link provided under Application Architecture in the Blog announcement (http://www.sencha.com/blog/ext-js-4-final/) links to a different version... -
15 Oct 2009 8:50 AM
- Replies
- 192
- Views
- 93,634
Any chance we can get the documentation for Ext.grid.GridFilter integrated with the core Ext API? Dont see that there in any of the versions.
-
2 Jun 2009 6:15 AM
- Replies
- 19
- Views
- 9,198
I would agree with all the previous people on this thread that this is a bug that should be patched. Some defensive code via a try/catch would at least help the application developer handle the...
-
22 May 2009 8:15 AM
Jump to post Thread: [1.0] Grid RowActions Plugin by fshort
- Replies
- 956
- Views
- 307,966
Ah, I checked your code yesterday before I posted but must have missed it looking for "escapeRe".
I'm on 1.0 right now so I'll grab the latest. Thanks for the help. -
21 May 2009 2:27 PM
Jump to post Thread: [1.0] Grid RowActions Plugin by fshort
- Replies
- 956
- Views
- 307,966
Content I changed in red below:
// get matching records
var records;
if (groupId){
var re = new RegExp(Ext.escapeRe(groupId));
records = this.grid.store.queryBy(function(r){ -
21 May 2009 1:36 PM
Jump to post Thread: [1.0] Grid RowActions Plugin by fshort
- Replies
- 956
- Views
- 307,966
I've did an override of the click handler in my code and used Ext.escapeRe(groupId) which seems to be doing the trick.
Is this something you'd look to fold into a future patch/fix? -
21 May 2009 12:35 PM
Jump to post Thread: [1.0] Grid RowActions Plugin by fshort
- Replies
- 956
- Views
- 307,966
The non-alphanumeric data is not part of the field name, its contained within the content of the field itself.
For example, in my grid I have a column called "Category". For that field in row A,... -
21 May 2009 10:24 AM
Jump to post Thread: [1.0] Grid RowActions Plugin by fshort
- Replies
- 956
- Views
- 307,966
I've implemented RowActions within my app but have come across an issue with how it performs the row lookup when the user clicks a button at the grouping level. If the field you're grouping by...
-
30 Apr 2009 5:41 AM
- Replies
- 3
- Views
- 764
Makes sense. Thanks.
-
30 Apr 2009 5:13 AM
- Replies
- 3
- Views
- 764
I discovered the root cause of the issue above which I think may be a bug. The problem was narrowed down to the fact that the id and hiddenName for the combo were the same. When I changed the...
-
28 Apr 2009 5:35 AM
- Replies
- 3
- Views
- 764
Hi,
I'm looking to create a new control that extends the ComboBox control. Current code looks like this:
EWQ.ts.BusDayComboBox = Ext.extend(Ext.form.ComboBox, {
id: "tsbusdaycombo", ... -
18 Jun 2008 10:52 AM
Jump to post Thread: GridPanel directly to Excel. by fshort
- Replies
- 286
- Views
- 250,902
in the response header, set:
Content-Disposition:attachment;filename=export_filename.xls -
12 Jun 2008 12:45 PM
- Replies
- 8
- Views
- 1,192
Going back to the button question, aside from the way you've redefined the button creation, I see no difference in the code you posted vs. my original. Are you saying that works as-is in both...
-
12 Jun 2008 12:04 PM
- Replies
- 8
- Views
- 1,192
Its back to the original issue. This is what I have now:
Ext.onReady(function() {
var win;
var button = new Ext.Button({
text: 'click',
renderTo:... -
12 Jun 2008 11:48 AM
- Replies
- 8
- Views
- 1,192
Looks like that solved the event firing issue but now the file dialog doesnt open in either browser, locally or remotely. The server responds, just the file dialog doesnt open whereas in the original...
-
12 Jun 2008 11:24 AM
- Replies
- 8
- Views
- 1,192
Hi,
I have a UI containing a grid and a button that allows the user to export the data from the grid to excel. When the user clicks the export button, I would like to display a progress bar to the... -
10 Jun 2008 12:44 PM
- Replies
- 19
- Views
- 12,846
Hi,
Off of this, lets say at the time the user clicks the export button I show a progress dialog while the data is being fetched from the server. When the request completes and the file dialog... -
25 Apr 2008 8:05 AM
- Replies
- 0
- Views
- 684
Hi,
I have a form contained within a window control and have added a progress bar to the window footer in order to indicate progress after the user clicks Save. The code I have so far looks like... -
29 Nov 2007 6:37 PM
Jump to post Thread: xml namespaces with Ext.DomQuery by fshort
- Replies
- 13
- Views
- 9,399
Hi,
I have an xml document which contains element names consisting of namespaces, i.e.:
<cam:Alertcode>3000</cam:AlertCode>
I'd like to use the DomQuery class to select this node from the... -
31 Oct 2007 6:26 PM
- Replies
- 2
- Views
- 897
Hi,
I'm redesigning my webapp with ExtJs and am looking to integrate all aspects of the existing app into this framework. The existing application has a popup window which loads a separate web... -
31 Oct 2007 6:15 PM
- Replies
- 1
- Views
- 996
Hi,
I have a grid whose columnset changes depending on the view a user selects. For this, I'm handling the grid's metachange event. Within this event I call the reconfigure method to apply the new... -
11 Oct 2007 8:26 AM
Jump to post Thread: 2.0 grid performance by fshort
- Replies
- 3
- Views
- 1,435
Thanks Jack. Right now, I'm using JSON as the data format but within the JSON data are embedded hyperlinks in some of the fields. Could that have an impact? Also, is a 50 row x 20 column grid an...
-
10 Oct 2007 6:00 PM
Jump to post Thread: 2.0 grid performance by fshort
- Replies
- 3
- Views
- 1,435
Hi,
As part of the 2.0 release, were there performance improvements made to the Grid? I'm currently using 1.1 and am having performance issues loading a grid consisting of 50 rows by 20 columns...
Results 1 to 25 of 34
