Search Type: Posts; User: florian_cargoet
Search: Search took 0.02 seconds.
-
22 May 2012 7:01 AM
- Replies
- 6
- Views
- 1,168
Quick patch for this issue.
It also fixes a related issue with increment. For instance, if you have a minValue = 7 and increment = 3, you would expect the next step to be 10. The original code would... -
22 May 2012 5:53 AM
- Replies
- 6
- Views
- 1,168
I've encountered the same issue with ST 2.0.1.
With a minValue = -50 and a maxValue = 50, the thumb won't move past the first half of the slider. If I drag it over the label, it can reach negative... -
17 Jan 2012 12:21 PM
- Replies
- 140
- Views
- 72,800
Not that I know of. There's ParisJS (http://parisjs.org/) but it's not about Sencha in particular.
-
12 Jul 2011 10:27 AM
Jump to post Thread: me.dom is undefined by florian_cargoet
- Replies
- 16
- Views
- 2,962
That code works for me. What do you do differently?
var p = new Ext.Panel({title:"p"});
var p1 = new Ext.Panel({title:"p1", html:"p1"});
var p2 = new Ext.Panel({title:"p2", html:"p2"});
... -
10 May 2011 11:47 PM
Jump to post Thread: maskRe syntax by florian_cargoet
- Replies
- 2
- Views
- 622
maskRe is a JavaScript RegExp.
You can learn to write regular expressions here : https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions -
4 May 2011 4:44 AM
- Replies
- 3
- Views
- 1,117
labelAlign : 'top' ?
-
3 May 2011 11:59 PM
- Replies
- 1
- Views
- 1,103
I'm not sure you can do this with the Date.format function by default.
You could define a custom renderer or add your own date format pattern and use the date.getUTC* functions :
date.getUTCDate()... -
6 Mar 2011 11:24 AM
Jump to post Thread: Grid in Combobox by florian_cargoet
- Replies
- 2
- Views
- 515
If you don't need a fully featured GridPanel, a custom template for the combo is a good option. See this example http://dev.sencha.com/deploy/dev/examples/form/forum-search.html
-
6 Mar 2011 11:06 AM
- Replies
- 1
- Views
- 571
The card layout is probably what you need (for the center region).
-
6 Mar 2011 11:00 AM
Jump to post Thread: me.dom is undefined by florian_cargoet
- Replies
- 16
- Views
- 2,962
It looks like VZcloud.cloudPanel is a Panel instance and that you use it several times. The 1st time you remove it from its owner component, it is destroyed (See the API documentation:...
-
17 Jan 2011 3:49 PM
- Replies
- 6
- Views
- 1,755
! ( /* condition */ )
Are you familiar with JavaScript? If not, you may want to get more comfortable with it before diving into Ext JS. -
17 Jan 2011 2:57 PM
- Replies
- 6
- Views
- 1,755
Based on what I see in your code sample, I'd say :
record.get('f4101_imsrp2') -
17 Jan 2011 2:46 PM
- Replies
- 6
- Views
- 1,755
Have you tried using viewConfig ?
viewConfig: {
getRowClass: function(record, rowIndex, rp, ds){
if(the product code is correct){
return 'correct-row';
}... -
17 Jan 2011 1:56 PM
- Replies
- 140
- Views
- 72,800
This directory is a great idea ! If anyone wants to organize a Sencha user group in France (Paris ?), count me in !
-
17 Jan 2011 1:55 PM
Jump to post Thread: ExtJS French community by florian_cargoet
- Replies
- 53
- Views
- 11,518
Je l'ai pas vu passer donc avec un an de retard sur le topic : +1 paris
-
4 May 2010 5:22 AM
Jump to post Thread: Vbox / ListView by florian_cargoet
- Replies
- 5
- Views
- 1,112
I found the guilty in ListView.js at line 195
"maxWidth: Ext.isIE ? 99 : 100,"and in VBoxLayout :
case 'stretch':
stretchWidth = availWidth - horizMargins;
calcs.width =... -
4 May 2010 5:06 AM
Jump to post Thread: Vbox / ListView by florian_cargoet
- Replies
- 5
- Views
- 1,112
I've the same issue :
A panel with a vbox layout (align : 'stretch') and 2 items (a listview & a panel).
The listview doesn't fill the width of its parent but it works if I use a panel instead.
... -
30 Apr 2010 2:02 AM
- Replies
- 270
- Views
- 106,068
I have the same problem : custom tags works on methods but not on classes.
@Simonici :
There is a call-template : <xsl:call-template name="class-custom-tags"/> but it fails on the <xsl:if... -
15 Apr 2010 12:22 AM
- Replies
- 428
- Views
- 216,193
@MaximGB
That's a really good ux you write here ! I just wanted to point out that there are two variables put in the global namespace : left and level. The fix is simple, just add level and left in... -
9 Jan 2010 10:51 AM
- Replies
- 14
- Views
- 1,725
Do you have a complete example ?
If I add such a text to a toolbar, the link is working. Maybe you're using the text of a button and not just text. -
11 May 2009 11:27 PM
Jump to post Thread: Print in grid by florian_cargoet
- Replies
- 4
- Views
- 1,009
Do you follow these instructions ? http://extjs.com/learn/Extension:PrinterFriendly
And especially this one :
2. Edit /ux.PrinterFriendly/config.js and set the value of... -
11 May 2009 10:43 PM
Jump to post Thread: Print in grid by florian_cargoet
- Replies
- 4
- Views
- 1,009
You are trying to use an user extension but it looks like it's not loaded.
Are you sure you have these files :
<script type="text/javascript" src="ux.PrinterFriendly/config.js"></script>
... -
10 May 2009 11:52 PM
- Replies
- 2
- Views
- 817
When a class provides an xtype, you can use it in a config (json) object instead of using the "new" operator.
See the docs to know the xtype of each class :... -
7 May 2009 2:25 AM
- Replies
- 3
- Views
- 551
If you want to get all the values for a specific field : store.collect('field'). For instance : SelectedSectors.store.collect('SectorID');
If you want the Ext id of the records, maybe you can use... -
7 May 2009 1:23 AM
- Replies
- 11
- Views
- 1,964
I used 'datachanged' only for the sorting problem (duplicating the code just above). I think it's necessary to applySort() since we may have added new records and we have updated old records with new...
Results 1 to 25 of 32
