Search Type: Posts; User: anotherpit
Search: Search took 0.02 seconds.
-
30 Sep 2009 3:06 PM
- Replies
- 3
- Views
- 1,753
While not fixed in ExtJS code, you can use the following patch (just put somewhere after ExtJS code):
Ext.override(Ext.Toolbar.TextItem, {
onRender : function(ct, position) {
... -
29 Sep 2009 4:43 AM
- Replies
- 3
- Views
- 1,753
Ext.Component is designed to be able to accept Ext.Action object as argument for constructor. But Ext.Toolbar.TextItem is not able to do it proprely.
Example:
// Some automatically updatable... -
3 Aug 2009 11:46 PM
- Replies
- 9
- Views
- 1,714
agree
-
3 Aug 2009 4:01 AM
- Replies
- 9
- Views
- 1,714
Iron is perfect choice for corporative users (all advantages of Chrome minus autoupdates), so I join in iom_dev's request for bug fix.
-
29 Jun 2009 6:50 AM
- Replies
- 4
- Views
- 1,080
@evant
What do you think about returning copy of store.modified from store.getModifiedRecords()? Like that:
Ext.override(Ext.data.Store, {
getModifiedRecords : function() {
//... -
10 Jun 2009 3:11 PM
Jump to post Thread: [new version] DateTime Field by anotherpit
- Replies
- 834
- Views
- 312,740
@jsakalos
Weak compatibility with standard behaviour is a problem itself, isn't it? Besides other issues, current implementation causes bug in MSIE and Opera when you try to hide DateTime field:... -
10 Jun 2009 6:00 AM
Jump to post Thread: [new version] DateTime Field by anotherpit
- Replies
- 834
- Views
- 312,740
@jsakalos
Current implementations of setVisible(), show() and hide() seem to break basic Ext.Component's approach. I'd suggest you the following code:
,onShow:function() {
this.df.show();
... -
2 Jun 2009 5:24 AM
Jump to post Thread: [2.0] Ext.ux.form.Spinner by anotherpit
- Replies
- 133
- Views
- 78,542
@Richie1985
I had the same problem here. Spinner.css need to be fixed:
.x-form-field-wrap .x-form-spinner-splitter {
line-height:1px;
font-size:1px;
background:transparent... -
27 May 2009 10:38 AM
Jump to post Thread: [FIXED][3.x] Cyclebutton by anotherpit
- Replies
- 4
- Views
- 2,821
@evant
I got the same bug here. The problem's not in your example. Here's a simple demo:
Ext.onReady(function() {
new Ext.CycleButton({
showText : true,
renderTo : Ext.getBody(),
items... -
3 Sep 2008 5:31 AM
Jump to post Thread: [2.0] Ext.ux.form.Spinner by anotherpit
- Replies
- 133
- Views
- 78,542
DateStrategy sometimes forgets to pass required arguments to parent methods and causes errors:
Ext.extend(Ext.ux.form.Spinner.Strategy, Ext.util.Observable, {
spin : function(field, down,... -
11 Jul 2008 3:54 AM
Jump to post Thread: [new version] DateTime Field by anotherpit
- Replies
- 834
- Views
- 312,740
Thanks, jsakalos. Very useful extension. But the way the field updates its value seems a little bit strange to me. Here's the patch that I had to write for my project and that implements more...
-
10 Jul 2008 5:24 AM
Jump to post Thread: Little blue circles by anotherpit
- Replies
- 6
- Views
- 1,313
Certainly, I have. No good.
-
8 Jul 2008 8:07 AM
Jump to post Thread: Little blue circles by anotherpit
- Replies
- 6
- Views
- 1,313
That's not a little circle, but a little absolutely positioned outlined focus element. I don't know how to hide the outline — Opera seems to ignore any CSS rule that set the outline properties for...
-
2 Jun 2008 3:02 PM
- Replies
- 5
- Views
- 2,742
Oh, I mean that the renderer returns anything different from the initital value. Date grouping is indeed a good example.
Generally, the following two fragments should correspond somehow:
... -
29 May 2008 5:11 PM
- Replies
- 5
- Views
- 2,742
Ext.grid.GroupingView.getGroupId() doesn't work when the grouped column has renderer that changes original value. Here's a patch to fix it:
Ext.override(Ext.grid.GroupingView, {
getGroupId... -
18 Mar 2008 4:39 AM
- Replies
- 8
- Views
- 4,670
I use Intype that supports similar syntax for bundles. And I wrote my own small Ext2.0 bundle. Let me know if you're interested in it yet and I'll post it here.
-
7 Mar 2008 3:16 AM
- Replies
- 4
- Views
- 1,450
Agree with Condor
-
6 Mar 2008 5:01 PM
- Replies
- 4
- Views
- 1,450
There seems to be a bug in GroupingView:
beforeMenuShow : function(){
var field = this.getGroupField();
var g = this.hmenu.items.get('groupBy');
if(g){
... -
28 Feb 2008 6:30 AM
- Replies
- 5
- Views
- 3,695
the bug occurs not only on root nodes, but also on inner nodes, if the owner tree has rootVisible = false. the given code for normal trees solves these situations, too.
-
3 Nov 2007 10:18 AM
- Replies
- 7
- Views
- 2,695
So do I
-
3 Nov 2007 5:13 AM
- Replies
- 7
- Views
- 2,695
It doesn't scroll in IE, but scrolls in Mozilla. Even on tree example page.
The reason is TreeNodeUI.focus() method:
focus : function(){
if(!this.node.preventHScroll){
...
Results 1 to 21 of 21
