-
3 Oct 2007 8:17 PM #31
[2.0a1 docs] Ext.ComponentMgr
[2.0a1 docs] Ext.ComponentMgr
Documentation for methods in Ext.ComponentMgr are missing.
registerType(xtype, cls) and create(config, defaultType).
The shorthand for Ext.ComponentMgr.registerType = Ext.reg is not documented.
Maybe these are intended to be private methods and shorthands although registerType seems essential to adding new components and user extensions.
-
4 Oct 2007 2:36 AM #32
Ok, but we have a source/ folder, right? I used the following script (fixdoc.sh)
And ran it withCode:#!/bin/bash filename=`grep 'Defined In:.*<a.*href="\.\./src/' "${1}"|sed 's:.*href="\.\./src/\([^"]*\).*:\1:'` form=`echo ${1}|grep '\.form\.'|sed 's:.*form.*:form:'` if [ "x${filename}" == "x" ]; then echo "${1} No reference to ../src" exit fi echo "${1} Fix reference to ${filename}" file=`find source -regex ".*${form}.*/${filename}"|grep -v 'source/legacy'|head -n1` if [ "x${file}" == "x" ]; then file=`find source -regex ".*${form}.*/${filename}"|head -n1` fi if [ "x${file}" == "x" ]; then echo "${1} No valid fix found" else echo "${1} substitution with ${file}, running sed" sed -i "s:href=\"\.\./src/${filename}\":href=\"../${file}\":" ${1} echo "${1} fixed" fiand it seems to work. It substitutes all ../src/ references with the equvilant in ../source. No need for the "src" folder. Worked with my local apache server. The code should work on the extjs redhat/apache server, too...Code:find docs/output/ -type f -exec ./fixdoc.sh '{}' ';'
BTW: The local doc's don't work without a webserver, at least for me. I've tried FF-2.0.0.7 and Opera 9.23.Last edited by treffer; 4 Oct 2007 at 2:38 AM. Reason: forgotten filename
-
4 Oct 2007 2:44 AM #33
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
4 Oct 2007 12:53 PM #34
just a typo...
just a typo...
In Panel docs...
autoLoad : Object/String/Function
A valid url spec according to the Updater Ext.Updater.update method. If autoLoad is not null, the panel will attempt to laod its contents immediately upon render.
-
4 Oct 2007 3:25 PM #35
Hiding header on Ext.Window
Hiding header on Ext.Window
The docs say:
header : Boolean
True to create the header element explicitly, false to skip creating it. By default, when header is not specified, if...
True to create the header element explicitly, false to skip creating it. By default, when header is not specified, if a title is set the header will be created automatically, otherwise it will not. If a title is set but header is explicitly set to false, the header will not be rendered.
* closable overrides header: false.
* to hide header, one must set closable to false.Last edited by mystix; 5 Oct 2007 at 9:50 AM. Reason: not added. pending clarification from user.
-
5 Oct 2007 6:54 AM #36
When clicking to view the source of any *.js file (Defined In link), I am always taken to the extJs home page instead of the JS source code.
-
5 Oct 2007 8:50 AM #37
[2.0a1 docs] Ext.KeyMap
[2.0a1 docs] Ext.KeyMap
FireFox 2.0.0.7
Mac OS X 10.4
Link: http://extjs.com/deploy/ext-2.0-alph...ber=addBinding
Clicking on the row expander for Ext.KeyMap.addBinding causes all of the row expanders in the methods section to disappear.
-
5 Oct 2007 9:40 AM #38
added to the list under Class Ext.TabPanel.
already updated in SVN. not added to the list.
already updated in SVN. not added to the list.
added to the list under Ext.Tip/ToolTip/QuickTip/QuickTips.
not added to the list. this and other similar issues should be covered in the planned Ext 1.1.1-to-2.0 migration guide which is slated for release soon.
added to the list under Class Ext.grid.GridPanel.
added to the list under Class Ext.PagingToolbar.
i've searched the source, and collapseMode isn't referred to throughout the whole of Ext.Panel.
it's a config option used by both Ext.layout.BorderLayout.Region and Ext.layout.BorderLayout.SplitRegion, and has already been documented in both classes.
this bug report will thus not be added to the list.
the 'el' option / attribute holds the TreePanel's underlying container Element, and is, i believe, meant to be private.
this explains the existence of a public getEl() method allowing you to get at the underlying 'el' option / attribute.
this bug report will thus not be added to the list.
added to the list under Class Ext.tree.TreePanel.
added to the list under the Misc/Request section.
added to the list under Class Ext.TabPanel.
these typos originate from Ext.Panel, the superclass of Ext.TabPanel.
i've added them to the list under Class Ext.Panel.
the config collapsed belongs to the Ext.Panels being added to the Ext.layout.BorderLayout, and this is already documented.
there is no accessible 'collapsed' property for Ext.layout.BorderLayout.
not added to the list.
added to the top of the list.
identical to the issue mentioned in @treffer's post above. already added to the top of list.
added to the list under Class Ext.util.Observable.
added to the list under the Misc/Requests section.
identical to the issue mentioned in @J.C's earlier post. already added to the list under Class Ext.Panel.
identical to the issue mentioned in @treffer's & @willydee's posts above. already added to the top of the list.
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
5 Oct 2007 9:48 AM #39
could you post a screencast displaying this problem (see this thread for some suggested software)?
or get another OSX+FF2.0.07 user to confirm this?
Sencha Docs / Ext 3.x - ( Docs | Examples )
Learning Center / Saki's Examples (for 2.x) / HOWTO - ( Report Bugs | Post Proper Code )
-
6 Oct 2007 6:35 AM #40
Before and after screenshots are attached along with the Layout of the td in FireBug. I can confirm the same problem with Safari, although the expander cells do not collapse completely.
BTW, the same problem happens with Ext.form.BasicForm.addBinding.


Reply With Quote