Search Type: Posts; User: Juvs
Search: Search took 0.03 seconds.
-
7 Apr 2011 1:08 PM
Jump to post Thread: Phonegap + map by Juvs
- Replies
- 6
- Views
- 7,519
Just make sure to include in you config.xml access to google maps domains:
<access subdomains="true" uri="http://gstatic.com"/>
<access subdomains="true" uri="http://google.com"/>
<access... -
13 Aug 2010 4:30 PM
Jump to post Thread: Get the form that contains the combo by Juvs
- Replies
- 6
- Views
- 950
Just an observation... is Ext.form.CompositeField, not Ext.CompositeField
With this fix, resolve container fields issues, but persist the ref problem...
Cheers!
Juvs -
13 Aug 2010 4:15 PM
- Replies
- 6
- Views
- 2,602
You should take a look at this fix....
-
5 Aug 2010 5:03 PM
- Replies
- 2
- Views
- 569
According to this post this resize issue was resolve.
Could you please tell us in which version was fixed, we using 3.2.1 but the issue persist, also applying Condor's override not fix the issue.... -
5 May 2010 4:33 PM
Jump to post Thread: Ext.ux.form.MagnifiedTextArea by Juvs
- Replies
- 2
- Views
- 2,418
Just in case still need it... this the update for Ext 3.2
/**
* Ext.ux.form.MagnifiedTextArea
*
**/
Ext.namespace('Ext.ux', 'Ext.ux.form');
Ext.ux.form.MagnifiedTextArea =... -
18 Jan 2010 11:00 AM
- Replies
- 253
- Views
- 97,774
I have the need to put cards on wizard that I already create and extends from FormPanel or GridPanel, so I need a way to empower them to be used on Wizard, so I create this plugin:
/**
*... -
14 Dec 2009 3:49 PM
- Replies
- 253
- Views
- 97,774
Any sample code...
-
14 Dec 2009 10:36 AM
- Replies
- 253
- Views
- 97,774
@esh, some modification to this extension in order to support the behavior you request:
...
/**
* Listener for the previous-button.
* Switches to the previous displayed {@link... -
23 Sep 2009 3:21 PM
- Replies
- 3
- Views
- 11,171
I know is late, but just for the record:
You can use alignTo() or anchorTo() from Element methods... check API.
Cheers!
Juvs -
31 Aug 2009 10:24 AM
- Replies
- 26
- Views
- 14,873
For which version?
-
13 Aug 2009 5:15 PM
- Replies
- 26
- Views
- 14,873
@ortizSWF
When you use setValue() needs to handle too..
// docs inherit from Field
setValue : function(v){
Ext.form.HtmlEditor.superclass.setValue.call(this, v);
... -
15 May 2009 8:35 AM
Jump to post Thread: Combo box list width (again) by Juvs
- Replies
- 14
- Views
- 10,384
This solution works for me!, thanks jgeewax =D>. Something I notice, this issue only happens using cardlayout and IE, when your create some kind of wizard...
-
11 Feb 2009 8:45 AM
- Replies
- 1
- Views
- 2,754
Is almost the same way you use in a traditional Web application, the main challenge is the "Sand Boxing" situation, you have to take care about it.
We solved this situations using... -
25 Sep 2008 7:34 AM
- Replies
- 0
- Views
- 2,370
Hi,
Something I notice using buttons and MessageBox widgets they don't behavior same as in browser, for example, when you select one button don't highlight the border and don't let user [Enter]... -
18 Sep 2008 2:09 PM
Jump to post Thread: NumberField in AIR by Juvs
- Replies
- 0
- Views
- 1,544
Hi,
I found some odd behavior using NumberFields in AIR, the keys "home", "end", "left arrow", "right arrow" and "****" (to select text) doesn't work. :(( :((
Any help?? -
5 Sep 2008 6:11 PM
Jump to post Thread: Ext.ux.layout.RowFitLayout by Juvs
- Replies
- 78
- Views
- 38,769
Hi, there's a bug when you set in a panel the frame attribute in true, I guess is something related with the background and borders and the extension don't calculate them. This happen when you...
-
24 Jun 2008 2:05 PM
- Replies
- 8
- Views
- 8,976
Erica,
Did you find a solution for your app? -
24 Jun 2008 1:22 PM
Jump to post Thread: Sanbox issue with proxy params? by Juvs
- Replies
- 2
- Views
- 2,474
Did you have any full sample source code from you app, I trying to see how you create your sandbox and call lo the JsonReader with out getting the AIR security error.
I'm trying to do the same in... -
23 Jun 2008 5:52 PM
- Replies
- 187
- Views
- 82,098
For Ext 2.1 just change this line:
// install event handlers
this.wrap.on({click:{scope:this, fn:this.onClick, delegate:'a', stopEvent:true}});
stopEvent:true is the key...
... -
20 Jun 2008 10:06 AM
Jump to post Thread: Submit form + DWR component - help! by Juvs
- Replies
- 3
- Views
- 5,597
We have situation when we use this method and have to provide a nested object through DWR to the Java Object.
Do you have any suggestion for this scenario?
:-? :-?
We tried putting in the... -
20 Jun 2008 9:57 AM
Jump to post Thread: DWR and XmlReader in Forms by Juvs
- Replies
- 4
- Views
- 4,588
Based on this thread:
http://extjs.com/forum/showthread.php?p=64155#post64155
form.doAction("dwrsubmit", {
dwrMethod: DWRComponent.processStuff,
callback: someFunction
... -
14 Jun 2008 1:03 PM
- Replies
- 3
- Views
- 3,174
Animal, you right, I figured out my situation:((, the thing is that when we use a DWRProxy + JsonReader, the response from DWR has already the data information (an array with the records), that...
-
13 Jun 2008 4:44 PM
- Replies
- 7
- Views
- 1,638
Just in case you still need use a reader on your form and have a Json response using nested objects, take a look at this post:
http://extjs.com/forum/showthread.php?t=38537 -
13 Jun 2008 4:38 PM
- Replies
- 3
- Views
- 3,174
I want to share my temporal solution to solve the issue to use reader in BasicForm to process nested objects ;)
You need to override the load action from the form using the following code:
... -
4 Jan 2008 3:24 PM
Jump to post Thread: DwrProxy by Juvs
- Replies
- 24
- Views
- 22,449
Something I notice when using the extension, when you pass an object as parameter the actual code interact into the attributes of the object and creates an array with the attributes not with the...
Results 1 to 25 of 29
