Search Type: Posts; User: Nightwish
Search: Search took 0.03 seconds.
-
15 Apr 2011 11:40 AM
- Replies
- 1
- Views
- 1,142
Never mind - that was a dumb question... the filterBy call is actually on "data" which is a MixedCollection and has a similarly named method filterBy.
-
15 Apr 2011 11:28 AM
- Replies
- 1
- Views
- 1,142
I was looking through the Ext source code trying to understand how filtering in stores works and noticed the following two functions in Ext.data.Store:
filterBy : function(fn, scope){
... -
5 Apr 2011 8:35 AM
Jump to post Thread: API docs page broken? by Nightwish
- Replies
- 6
- Views
- 701
Thanks for the info!
-
5 Apr 2011 8:31 AM
Jump to post Thread: API docs page broken? by Nightwish
- Replies
- 6
- Views
- 701
The API docs page http://dev.sencha.com/deploy/dev/docs/ returns an empty page for me. My bookmark stopped working so I went to the page through the sencha.com site - same result. Tried it in both...
-
12 Jan 2011 8:46 AM
- Replies
- 0
- Views
- 519
I've got a simple window with a form in it - validation messages are shown UNDER the form fields because I like users to see what the errors are without hovering on icons.
Both window and form... -
6 Oct 2010 7:19 AM
Jump to post Thread: IE8 not rendering tree nodes by Nightwish
- Replies
- 4
- Views
- 521
Condor, may I say that you are a God among men =D And I can't believe I made such a noob mistake. Thanks for your help.
-
6 Oct 2010 6:52 AM
Jump to post Thread: IE8 not rendering tree nodes by Nightwish
- Replies
- 4
- Views
- 521
Hi Condor,
The tree does not have a fixed height. Here's the order in which tree and other panels are nested:
TreePanel (as tab) -> TabPanel -> Container (West) -> Viewport
The complete code... -
5 Oct 2010 1:30 PM
Jump to post Thread: Row selection? by Nightwish
- Replies
- 3
- Views
- 517
Many ways to do it depending on the original event coming from the grid - click, select, doubleclick, etc. You can always add a listener for one of these - the listeners are always called with the...
-
5 Oct 2010 11:22 AM
Jump to post Thread: IE8 not rendering tree nodes by Nightwish
- Replies
- 4
- Views
- 521
I've got a simple tree - nothing groundbreaking, works perfectly fine in Firefox and fails miserably in IE8. No JavaScript errors are shown - the tree simply doesn't render any nodes.
Here's the... -
5 Oct 2010 7:59 AM
- Replies
- 2
- Views
- 920
I found it and it almost poked out an eye: "sortable: true" needs to be explicitly defined for every grid column.
-
5 Oct 2010 7:50 AM
- Replies
- 2
- Views
- 920
Despite repeated efforts I've been unable to figure out why some of the columns in my grid have their sorting options (Sort Ascending, Sort Descending) grayed-out. Even if I wanted to disable them I...
-
23 Jul 2010 11:54 AM
- Replies
- 7
- Views
- 2,499
Thanks, Animal... of course, I looked at the help files, FAQ, forums, etc. before posting. I found my problem and it's not very obvious to the ExtJS novice. Apparently, the JSON response is...
-
23 Jul 2010 10:29 AM
- Replies
- 7
- Views
- 2,499
I've been thinking for a while and looking at the examples but I've been unable to find a clean, elegant solution for this admittedly simple and common scenario.
Imagine a form - validation is... -
23 Jul 2010 7:44 AM
- Replies
- 5
- Views
- 1,012
Have you considered templates? Here are some examples:
http://www.sencha.com/deploy/dev/examples/core/templates.html
http://www.sencha.com/deploy/dev/examples/grid/binding-with-classes.html -
22 Jul 2010 9:58 AM
- Replies
- 11
- Views
- 2,000
Awesome - "actioncolumn" would be a welcome addition! Is there a release date set for 3.3?
-
22 Jul 2010 9:22 AM
- Replies
- 4
- Views
- 918
All the /ux/ files are extra plugins and components that do not come with the main ExtJS library.
-
22 Jul 2010 9:19 AM
- Replies
- 2
- Views
- 804
You are creating a new tree. Give the existing tree an ID ("categoryTree" in my example) and use it instead. Try this:
function test()
{
var tree = Ext.getCmp('categoryTree');
... -
16 Jul 2010 8:15 PM
- Replies
- 1
- Views
- 423
Well, that's embarrassing - the solution is actually in the API documentation. The setUrl function on the proxy can be used to change the url permanently.
onDataTreeClick: function(node, e)... -
16 Jul 2010 12:32 PM
- Replies
- 1
- Views
- 423
It's either that or I am doing things completely wrong.
I've got a tree and upon clicking a leaf in the tree a grid is refreshed with new data (url is a parameter on the leaf). The grid refreshes... -
14 Jul 2010 11:39 AM
Jump to post Thread: Ext Designer release notes? by Nightwish
- Replies
- 10
- Views
- 1,775
Never mind, I found it - I guess it needs to be placed more prominently somewhere...
http://www.sencha.com/products/designer/changelog.php -
14 Jul 2010 11:36 AM
Jump to post Thread: Ext Designer release notes? by Nightwish
- Replies
- 10
- Views
- 1,775
Is there a place where we can go and see what is being changed in each version? If there is no such place - can we have one? A quick forum post, static html, text file, what have you...
-
8 Jul 2010 1:11 PM
- Replies
- 1
- Views
- 514
Found the problem - the itemSelector setting was lost when the project was converted from Ext Designer 1.01c to 1.02. One of many many problems during the conversion.
-
8 Jul 2010 12:10 PM
- Replies
- 1
- Views
- 514
The DataView is populating just fine from the store but when I click on a node I can see in Firebug that the index passed to the click handler is -1. What could be going wrong here? This code used to...
-
18 Jun 2010 7:53 AM
- Replies
- 2
- Views
- 1,453
Marcus, this is very useful - thanks for the tutorial!
-
17 Jun 2010 8:49 AM
- Replies
- 1
- Views
- 1,168
This was a bit of a surprise but since Ext.form.Action.Submit does not support submissions in JSON I decided to use the solution proposed here:
...
Results 1 to 25 of 33
