-
4 Nov 2007 1:03 AM #111
[2.0b1] getLeft/setLeft, getTop/setTop
[2.0b1] getLeft/setLeft, getTop/setTop
Hi folks,
Callling someElement.setLeft(someElement.getLeft()) will move the element slightly under FF and other Gecko browsers, but not under IE and several others. This is because setLeft uses different units than the units getLeft returns by default. The same is true of setTop/getTop. (See this thread for details.) This will not get fixed in 2.x because Jack is concerned about compatibility issues at this stage, so it really needs to be quite clearly documented, specific documentation recommendations here.T.J. Crowder
tj / crowdersoftware / com
-
5 Nov 2007 3:36 PM #112
There is a typo in the description of Ext.Panel's setTitle method: "Sets the title text for the panel and optioanlly the icon class."
-
6 Nov 2007 7:27 AM #113
Ext.Tree.TreePanel stateevents beforemove => beforemovenode
Ext.Tree.TreePanel stateevents beforemove => beforemovenode
Ext.Tree.TreePanel stateevents beforemove is now beforemovenode ;(
-
6 Nov 2007 2:10 PM #114
related documentation issue:
There is no mention of the hideable property in the documentation for ColumnModel
Thanks,
Joe
-
7 Nov 2007 5:03 AM #115
In the Complex Layout sample, in the Center Panel tab, the "Toggle the west region" link does nothing.
-
7 Nov 2007 6:14 AM #116
[2.0-RC1] TwinTriggerField class
[2.0-RC1] TwinTriggerField class
Hello,
on the API 2.0 page, you used a component called "TwinTriggerField" for the search field. I can't find any documentation about it. Is it part of the RC1 or not?
Thanks in advance
-
7 Nov 2007 6:20 AM #117
architect -
Yes, TwinTriggerField is part of RC1. It can be found in source/widgets/form/TriggerField.js It is not a public class to be used directly. Others can extend it to implement a field that requires 2 triggers such as the SearchField implementation. This should probably be documented.Aaron Conran
@aconran
Sencha Architect Development Team
-
7 Nov 2007 1:59 PM #118
Class Ext.data.Connection
Class Ext.data.Connection
Class Ext.data.Connection
extraParams should be params
-
7 Nov 2007 5:53 PM #119
Ext.tree.TreeNode iconCls
Ext.tree.TreeNode iconCls
I think the explanation off the iconCls configure option of Ext.tree.TreeNode is too short.
It should describe the following:
When using the iconCls option like this in javascript:
Define your custom icons like this in css:Code:var node = new Ext.tree.TreeNode({iconCls: 'my-icon-class'});
Code:.x-tree-node-collapsed .my-icon-class { background-image: url('collapsed.gif'); } .x-tree-node-expanded .my-icon-class { background-image: url('expanded.gif'); } .x-tree-node-leaf .my-icon-class { background-image: url('leaf.gif'); } .x-tree-node-loading .my-icon-class { background-image: url('loading.gif'); }
-
9 Nov 2007 9:08 PM #120
Ext.Ajax
Ext.Ajax
General suggestion: Why not keep a reference to deprecated code in the current docs? Use a different CSS style or marker to identify outdated code. Seems like it would be helpful.
Back to the docs:
Ext.Ajax
Several properties not itemized in the docs per the example.
Code:// Basic request Ext.Ajax.request({ url: 'foo.php', success: someFn, failure: otherFn, headers: { 'my-header': 'foo' }, params: { foo: 'bar' } }); // Simple ajax form submission Ext.Ajax.request({ form: 'some-form', params: 'foo=bar' }); // Default headers to pass in every request Ext.Ajax.defaultHeaders = { 'Powered-By': 'Ext' }; // Global Ajax events can be handled on every request! Ext.Ajax.on('beforerequest', this.showSpinner, this);


Reply With Quote