Search Type: Posts; User: jesse.dhillon
Search: Search took 0.02 seconds.
-
21 May 2011 8:58 AM
- Replies
- 3
- Views
- 1,434
Sorry, I didn't realize that I posted this multiple times -- it looks like I pressed submit instead of preview. BTW, do you know the answer to my question? Thanks,
EDIT: I was just able to post... -
20 May 2011 11:02 PM
- Replies
- 3
- Views
- 1,434
Is there a way to stop keyboard navigation in an instance of Ext.view.View?
I have an instance which is configured with singleSelect: true, and when I select an item in the list and then press up... -
17 May 2011 1:09 PM
- Replies
- 0
- Views
- 1,520
I offer a minor change to the constructor of HasManyAssociation, which allows you to pass in a function to filter the store. The function will take the record for which the association is being...
-
15 May 2010 4:50 PM
- Replies
- 2
- Views
- 2,518
The style properties ('font-size', 'font-family', 'background-image', 'background-repeat', 'background-color', 'color') all come from the underlying element. If you want to change them, apply the...
-
14 Sep 2009 11:22 AM
- Replies
- 4
- Views
- 2,873
I've had the same non-issue. An easy way to achieve this effect without using the border property is to use:
...
title: 'Foo Bar',
style: 'border: none',
... -
23 Jun 2009 1:58 PM
- Replies
- 7
- Views
- 2,358
I can confirm that if you have this issue, it is because the width is not specified. I think the easiest way to figure out the width you want is to open your Ext.Window in Firefox and then use...
-
13 May 2009 8:04 AM
- Replies
- 4
- Views
- 3,779
Okay so subscribe to the DirectStore instead of Ext.Direct. I think that's better.
It still limits you to only one way of creating records, which is probably ok. Plus you still have to engineer... -
13 May 2009 7:35 AM
- Replies
- 4
- Views
- 3,779
Yeah this is the conclusion I came to, that you would have to subscribe to Direct's create, save and destroy events.
The problem is that you have no guarantee that the next write event will be... -
11 May 2009 3:44 PM
- Replies
- 4
- Views
- 3,779
Because Ext.Direct writes in the background after a timeout, I am perplexed about how to do the following:
1) A user clicks a button to save a form.
2) The button click triggers... -
16 Apr 2009 8:11 PM
- Replies
- 3
- Views
- 1,404
Just found out about the useDisplay config option for effects. I was just doing it the wrong way previously, which happened to work anyway.
-
16 Apr 2009 7:51 PM
- Replies
- 3
- Views
- 1,404
Just tried switching my app to 3.0-rc1 to see what works and what doesn't. This doesnt:
var els = Ext.select('.foo', true, node);
els.enableDisplayMode();
els.slideOut('t');
If you inspect... -
15 Apr 2009 6:58 PM
- Replies
- 5
- Views
- 2,241
This thread is about Ext.Direct and Symfony. If this is not the right place for this post, please direct me to a better forum.
Since learning about the new Ext.Direct functionality I've been... -
14 Apr 2009 7:33 PM
- Replies
- 29
- Views
- 6,414
I would appreciate next year a hotel which is closer to the city so that we can at least get out at night without renting a car or hiring a taxi.
BTW, the charge for a DVD player at this hotel is... -
28 Mar 2009 11:15 AM
- Replies
- 6
- Views
- 4,068
The following redefinition of BasicForm.findField works if you set an id on the individual checkbox config within the group, and set its id to be the same name as the field in the record. Just put...
-
22 Mar 2009 10:50 PM
- Replies
- 0
- Views
- 571
Hi,
The docs are ambiguous about MixedCollection's constructor. On the one hand, the constructor says that there are two arguments: allowFunctions and keyFn. On the other hand, there is a section... -
11 Dec 2008 2:08 PM
- Replies
- 1
- Views
- 709
Hi,
I am trying to have a QuickTip appear on an element in a DataView. What I am doing roughly is:
tpl = new Ext.XTemplate('<div ext:qtip="{Date}">',
'<p... -
2 Dec 2008 12:56 PM
Jump to post Thread: Closures within Array.each? by jesse.dhillon
- Replies
- 6
- Views
- 2,599
Yeah, it's mostly understanding all the possible uses of these options. I knew about the delegate option, but the usual way I think about Javascript wouldn't have had me contemplating adding the...
-
2 Dec 2008 1:15 AM
Jump to post Thread: Closures within Array.each? by jesse.dhillon
- Replies
- 6
- Views
- 2,599
Oh wow. Now I know what it must be like to take a fish out of the ocean and show him the world of land. You just blew my mind!
-
1 Dec 2008 10:19 PM
Jump to post Thread: Closures within Array.each? by jesse.dhillon
- Replies
- 6
- Views
- 2,599
If anyone else gets tripped up by this, the solution is to assign to a variable in the local scope:
dp.cells.each(
function(cell) {
var c = cell;
console.log(c);
... -
1 Dec 2008 7:40 PM
Jump to post Thread: Closures within Array.each? by jesse.dhillon
- Replies
- 6
- Views
- 2,599
Hi,
I am trying to iterate through a DatePicker's cells in the code below (suppose dp is a DatePicker instance), so that when a cell received the mouseover event it will log itself.
...
Results 1 to 20 of 20
