Search Type: Posts; User: carl23934
Search: Search took 0.02 seconds.
-
6 Sep 2011 6:49 AM
Jump to post Thread: API Documentation Content Bugs by carl23934
- Replies
- 488
- Views
- 68,709
http://docs.sencha.com/ext-js/4-0/#!/api/Ext.chart.series.Line
This page shows markerCfg rather than markerConfig.
Edit: Also, the code configuration has an axis configuration that is opposite... -
7 Jun 2011 5:14 PM
- Replies
- 3
- Views
- 1,841
Yes you are correct. It also does not work in firefox.
Sencha Touch is for webkit based browsers (iPhone & Android on mobile, Safari & Chrome on desktops).
Seriously... who even has a windows... -
2 Apr 2011 2:41 PM
Jump to post Thread: Ref Property by carl23934
- Replies
- 33
- Views
- 7,916
I really must insist that ref should be brought back. ref was an extremely powerful tool that I thought was just a start to something greater.
Having the ability to easily reference sub-components... -
25 Feb 2011 12:10 PM
- Replies
- 28
- Views
- 16,930
I'm not really sure to be honest.
From what I understand linux versions of firefox and chrome do not support drag and drop.
I'll do some testing with the latest Ubuntu and see if it works. Stay... -
18 Feb 2011 8:31 AM
- Replies
- 9
- Views
- 1,178
Observe the ownetCt.ownerCt thing:
The good thing about this (even though there is a 2 level ownerCt chain) is that the buttons can be completely decoupled. When you use ref you have additional... -
18 Feb 2011 7:47 AM
Jump to post Thread: Optimize ExtJS Application by carl23934
- Replies
- 10
- Views
- 1,660
YSlow is a firefox plugin created by Yahoo that will analyze a page and show you what you can do to speed it up.
I recently optimized a website that would take over 1 second to load (non ext... -
18 Feb 2011 7:43 AM
- Replies
- 3
- Views
- 714
The same editor is used for all rows. If you want to load new data, do you have to do it manually by hooking into the beforeedit event.
-
18 Feb 2011 7:37 AM
- Replies
- 11
- Views
- 4,205
Nope. I updated my example above.
Here is your code... working:
<html>
<body>
<link rel="stylesheet" type="text/css" href="/inc/js/ext-3.3.1/resources/css/ext-all.css" />
<link... -
18 Feb 2011 7:12 AM
- Replies
- 11
- Views
- 4,205
Here is a full working example.
This works in IE 9.0.7930.16406, FF 3.6.13, Safari 5.0.3, Chrome 9.0.597.98, & Opera 11.01.
Find out what you're doing wrong - .disable() and .enable() is how... -
18 Feb 2011 6:59 AM
- Replies
- 11
- Views
- 4,205
fileuploadfield is notorious for some cross browser issues. Since this is overlaying on top of a native browser control it all depends on that.
What browser(s) are you testing this on?
I did in... -
18 Feb 2011 6:39 AM
- Replies
- 8
- Views
- 1,827
You need to attach an event listener to the panel element. The keypress events are not listed in the events fired by the formpanel / panel component, so you need to attach it to the element.
I... -
18 Feb 2011 6:23 AM
- Replies
- 1
- Views
- 563
You can use pretty much anything to load a tree if you use the directFn config on the treeloader.
Cross-domain requests can be done and just pass whatever data you like back. Here's a small... -
18 Feb 2011 5:49 AM
Jump to post Thread: Send array param in grid.store. by carl23934
- Replies
- 2
- Views
- 678
You need to use an array if you want to send an array:
vGrid.store.load({
params: {
"p_param":["P_ID_CARPETA", "P_BUSCAR"]
,"p_value":[vParams[0],... -
18 Feb 2011 5:47 AM
Jump to post Thread: Optimize ExtJS Application by carl23934
- Replies
- 10
- Views
- 1,660
You can do a lot of optimizations on the HTTP server sending the data. Enable gzip compression, setup proper caching so that the extjs framework files expire far into the future. Additionally using...
-
17 Feb 2011 2:48 PM
- Replies
- 9
- Views
- 1,178
Button handlers are called within the scope of the button (unless otherwise specified with a scope param). "this" means "this button". The button handler needs to get to the function that is 1...
-
17 Feb 2011 2:40 PM
Jump to post Thread: PHP & JSON architecture? by carl23934
- Replies
- 2
- Views
- 936
Sure you can do this, but I don't understand why you would want to. It would add a lot of unnecessary complexity.
Your issues with the handlers are probably scoping related. You just have to... -
17 Feb 2011 2:26 PM
- Replies
- 9
- Views
- 1,178
Your indentation is all jacked up. Before posting, run your code through http://jsbeautifier.org/. It makes it much easier to troubleshoot.
Yes, you definitely have scoping issues. You have to... -
17 Feb 2011 1:56 PM
Jump to post Thread: ExtJS 4 Missing Features by carl23934
- Replies
- 3
- Views
- 2,733
Where is the fileuploadfield & grid row editor?
I was hoping that these two features would be integrated.
I read a form post indicating that at least the grid row editor would be completely... -
16 Feb 2011 4:58 AM
- Replies
- 11
- Views
- 4,205
It would be a reference to the component.
You should always post your code inside of code tags, and clean it up with http://JSBeautifier.org
{
xtype: 'radiogroup',
fieldLabel:... -
15 Feb 2011 3:16 PM
- Replies
- 14
- Views
- 6,233
Use firebug! Pepper it with console.log(); so you can see the data before and after it's sent to the server. E.G. console.log(namesStore.baseParams);
Do print_r($_POST) in PHP to see what PHP is... -
15 Feb 2011 2:31 PM
Jump to post Thread: Something in general to Ext JS by carl23934
- Replies
- 13
- Views
- 1,268
lol, Try using ext-all-debug.js when you develop - that's why it exists. Perhaps I just saved you some future frustrations!
Typos that cause complete failure is not Ext's fault, it's the nature of... -
15 Feb 2011 2:09 PM
- Replies
- 11
- Views
- 4,205
uploadButton.disable(); ? Works for me.
-
15 Feb 2011 1:47 PM
- Replies
- 14
- Views
- 6,233
Fay is saying that because the .show(); function call is at the end, your window will show up, and it will be empty. After the ajax call loads the data and the callback function gets called, then the...
-
15 Feb 2011 12:54 PM
- Replies
- 3
- Views
- 726
The "ref" configuration is a very powerful tool that you can use to accomplish most of what you're looking for.
Take a look at my blog post on component references. I struggled with this very same... -
15 Feb 2011 12:46 PM
- Replies
- 14
- Views
- 6,233
You are sort of thinking of this wrong.
Take a look at the docks for the parameters that will be passed to your callback. The load callback is passed an array of records. You can simply iterate...
Results 1 to 25 of 119
