Search Type: Posts; User: tonedeaf
Search: Search took 0.03 seconds.
-
5 Jun 2010 12:17 AM
- Replies
- 270
- Views
- 106,510
Got it, thanks!
Also, found this link: http://code.google.com/p/ext-doc/wiki/RunningExtDoc -
4 Jun 2010 9:19 AM
- Replies
- 270
- Views
- 106,510
Is there a tutorial somewhere on how to generate ext-doc documentation for ext extensions I've written.
The ext-doc on googlecode only lists the following steps:
Install Subversion client
... -
9 Apr 2010 7:14 AM
- Replies
- 419
- Views
- 175,892
You have included ext-all-debug.js which I'm trying to replace with ext-core.
Can the ext-all-debug (or ext-all.js) be replaced with ext-core (if I don't want to use the HighChartsPanel ux) for... -
9 Apr 2010 4:57 AM
- Replies
- 419
- Views
- 175,892
Will the Highcharts adapter work with ext-core? Don't need the ux.HighchartPanel, just the adapter with ext-core as the base library.
-
8 Apr 2010 2:49 AM
Jump to post Thread: selecting the last inserted row by tonedeaf
- Replies
- 4
- Views
- 1,439
Math.max.apply(null, store.data.keys)
-
6 Apr 2010 10:44 PM
- Replies
- 8
- Views
- 2,759
Wanted to confirm that this bug still exists with the released ExtJS 3.2.0
onCreateRecords(): The key is not remapped, even though the record is realized and new primary key is applied to the record... -
6 Apr 2010 8:26 AM
- Replies
- 9
- Views
- 5,195
@Condor: Thanks for the patch!
Complete patch for ExtJS 3.2, note the Store insert() function also needs to be overridden:
/* Paging toolbar enhancements:*/
Ext.override(Ext.data.Store, {
... -
5 Apr 2010 2:35 AM
- Replies
- 6
- Views
- 1,383
If you want to suppress the next button, the easiest way would be to override the PagingToolbar moveNext() function and define your own logic:
Ext.override(Ext.PagingToolbar, {
moveNext :... -
5 Apr 2010 2:15 AM
- Replies
- 11
- Views
- 9,503
For dynamically adding components, ExtJS has a mapping table by component xtype. Component xtype is registered by Ext.reg()
Similarily, plugins can be registered as a ptype by Ext.preg() and then... -
5 Apr 2010 2:04 AM
Jump to post Thread: Need plugin Star Rating/Voting by tonedeaf
- Replies
- 8
- Views
- 1,997
If you need a user extension, there is one for ext-core:
Demo: http://www.extjs.com/playpen/ext-core-latest/examples/rating/
UX Source:... -
3 Apr 2010 1:54 AM
- Replies
- 0
- Views
- 1,080
http://www.extjs.com/deploy/dev/examples/themes/index.html
The Gray theme buttons are not rounded and appear abruptly cut off at corners. Compared to the Blue theme, which has better rounded... -
27 Mar 2010 6:48 AM
Jump to post Thread: Native Bridge by tonedeaf
- Replies
- 14
- Views
- 2,143
So, without a client side installer, it can do file operations? using a browser? How do you achieve that?
-
23 Mar 2010 4:53 AM
Jump to post Thread: First Impressions by tonedeaf
- Replies
- 6
- Views
- 1,447
Some issues I found during my first impressions:
Widths and Heights are not saved if cleared: I may need to resize a panel according to its container (like a window), so I clear the width and... -
22 Mar 2010 4:13 AM
- Replies
- 3
- Views
- 2,309
The CompositeField field example does not render correctly in IE6. Field image top 1 pixel of text fields gets cut off.
http://www.extjs.com/deploy/ext-3.2-beta/examples/form/composite-field.html -
19 Mar 2010 12:28 AM
- Replies
- 47
- Views
- 14,277
CakePHP, their framework organization and structure is pretty good. and you can use the same base library code to create multiple web applications and share common php, css and js files across all...
-
18 Mar 2010 1:43 AM
- Replies
- 2
- Views
- 1,158
Yes, the GroupSummary ux uses array indexes without checking for bounds. I had to fix three functions, to resolve the firebug javascript errors:
GroupSummary.js
doWidth : function(col, w,... -
18 Mar 2010 1:31 AM
- Replies
- 39
- Views
- 6,590
With the increasing number of widgets / classes, its important to have a easy way of building a custom ext-all.js, otherwise we pay the penalty of loading a larger library for using a fraction of the...
-
17 Mar 2010 4:28 AM
- Replies
- 3
- Views
- 1,366
No, the download dialogs are not exposed or part of the DOM.
If you however, want to open a file in the browser (like a PDF) as opposed to the browser presenting a download dialog, you can send the... -
15 Mar 2010 7:52 AM
Jump to post Thread: Ext.ux.data.CacheStore by tonedeaf
- Replies
- 2
- Views
- 1,072
Nice Extension! Simple and powerful!
Somehow, it does not capture the store "sort" param when it saves the params as a cache key. So, if the store has a sort field defined, the cache is never hit.... -
15 Mar 2010 4:36 AM
- Replies
- 2
- Views
- 1,694
Here's the override for fixing the GroupingStore remote sort in ExtJS 3.2 beta
Ext.override(Ext.data.GroupingStore, {
sort : function(fieldName, dir) {
if(this.remoteSort) {
... -
15 Mar 2010 3:51 AM
- Replies
- 2
- Views
- 1,694
I noticed that all grid column remote sorting stopped working in Ext 3.2 beta when using a GroupingStore. Clicking on column header to sort or choosing Sort Ascending / Descending from the column...
-
14 Mar 2010 11:42 AM
- Replies
- 2
- Views
- 999
This happens when you're using columns which don't have a getEditor() function defined. Like checkboxSelectionModel or RowActions plugin. Use the following fix in RowEditor.js
initFields:... -
14 Mar 2010 11:23 AM
Jump to post Thread: Writer Example by tonedeaf
- Replies
- 3
- Views
- 1,833
ExtJS expects you to provide the new ID of the record in the JSON response of the 'create' request.
I was having a similar issue where I had the same function for editing and creating a new... -
4 Mar 2010 3:38 AM
Jump to post Thread: Ext developers needs donations? by tonedeaf
- Replies
- 3
- Views
- 1,066
hendricd has his own user extensions which he develops and maintains outside of the regular ExtJS library. While some of them require a commercial license to be purchased, others are free. Donations...
-
3 Mar 2010 5:55 AM
Jump to post Thread: Ext Designer 1.x by tonedeaf
- Replies
- 422
- Views
- 188,465
My boss sent me an excited mail about a "better" way of creating ExtJS applications and included a link to ExtJS Designer. And "recommended" me to use this tool to create applications rather than...
Results 1 to 25 of 117
