Search Type: Posts; User: lpastor
Search: Search took 0.02 seconds.
-
25 Feb 2013 4:22 AM
- Replies
- 3
- Views
- 266
I find a solution in the forum :
Do an override of the list menu:
Ext.override(Ext.ux.grid.menu.ListMenu,{
show : function () {
var lastArgs = null;
return... -
25 Feb 2013 1:59 AM
- Replies
- 3
- Views
- 266
Hello,
Yes it is :
store_categorie.load({
callback: function(records, operation, success) {
store.load();
},
scope: this -
22 Feb 2013 6:48 AM
- Replies
- 3
- Views
- 266
Hello,
I use Ext 4.1.1.
I don't understand why my list menu ins't populated?
42002
Here are my stores : -
4 Feb 2013 5:49 AM
- Replies
- 4
- Views
- 1,812
Hello,
Could you give your solution I am interested...
Laurent -
27 May 2010 2:02 PM
- Replies
- 418
- Views
- 169,958
Thanks a lot Brian, that's better now.
I have an other problem, chart is well displayed in Firefox, but in IE 8, I have this error :
Message : 'this.chart.series' is Null isn't an object.... -
31 Oct 2009 3:17 PM
Jump to post Thread: Json Data Store + Grouping Store by lpastor
- Replies
- 2
- Views
- 1,303
You can use something like this for your store :
var proxy_contact = new Ext.data.HttpProxy({
url: 'Mysql_Call.php?table=contact&idkey=id_contact',
method: 'POST'
... -
31 Oct 2009 3:07 PM
- Replies
- 8
- Views
- 2,330
What is unfortunate is that the animation works for the width but not for the height.
It is curious that no one seen this before ?
Animal, you write : "To set the height of a BoxComponent,... -
31 Oct 2009 2:41 PM
- Replies
- 8
- Views
- 2,330
I have the same result, I add doLayout too, but it's not better.
If we do first : pnl.setWidth(100); and pnl.setHeight(100); the animation of the second button don't do nothing after !
... -
31 Oct 2009 2:01 PM
- Replies
- 8
- Views
- 2,330
Thank you a lot Animal,
That's solved, without el element :
Ext.getCmp('pnl').setWidth(100);
Ext.getCmp('pnl').setHeight(100);
or -
31 Oct 2009 10:04 AM
- Replies
- 8
- Views
- 2,330
Thank you Jaisu,
I tried all combinations with autoHeight:true or false - height:50 or 'auto' nothing change...
The height retains its original size.
Laurent -
30 Oct 2009 4:37 PM
- Replies
- 8
- Views
- 2,330
Hello,
I don't understand why, when I use my buttons width is changed, but not the height ?
Ext.onReady(function() {
var viewport = new Ext.Viewport({
layout: 'absolute', -
16 Sep 2009 3:31 AM
- Replies
- 10
- Views
- 2,805
Maybe for you the solution is trivial, but, apart the solution I've found (that is not satisfactory), I do not see how to put multiple Ext element in the same cell of a grid...
-
16 Sep 2009 3:11 AM
- Replies
- 10
- Views
- 2,805
Yes Animal, I saw the thread, but how can I display many Ext element like a textfield and a progressbar in the same cell ?
-
16 Sep 2009 1:38 AM
- Replies
- 10
- Views
- 2,805
Thanks a lot Animal,
My difficulties stem from the fact that I placed the progressbar in the second row of a column that does not match its dataIndex. To get there, I use a function in the... -
14 Sep 2009 7:14 AM
- Replies
- 10
- Views
- 2,805
Hello,
I found that the memory grow was do by firebug.
Now, I don't find how I can solve the "InsertAdjacentHTML that is Null" in IE ?
Laurent -
12 Sep 2009 6:10 AM
- Replies
- 10
- Views
- 2,805
Hello,
I found a way to display a progress bar in a grid, but it is inflated memory use of browsers and it generate an error in IE with InsertAdjacentHTML that is Null.
Also, if someone have a... -
10 Sep 2009 8:32 AM
- Replies
- 1
- Views
- 1,106
The solution :
var columns_projet = [
expander2,
{header: "Titre", width: 200, sortable: true, dataIndex: 'nom_projet', renderer: function(value, meta, record, row, col,... -
10 Sep 2009 1:03 AM
- Replies
- 1
- Views
- 1,106
Hello,
I use a ProgressBar in a grid that display well, but how set the value ?
I have tried that (but don't change nothing...):
var columns_projet = [
expander2,
... -
7 Sep 2009 6:30 AM
Jump to post Thread: [SOLVED] fieldset title color ? by lpastor
- Replies
- 2
- Views
- 1,849
Thank's a lot Condor, I thought that there is perhaps a solution without modifying css file...
In anyway tank you very much Condor,
Laurent -
7 Sep 2009 6:11 AM
Jump to post Thread: [SOLVED] fieldset title color ? by lpastor
- Replies
- 2
- Views
- 1,849
Hello,
I tried to display the title of fieldset red.
If I put color:'red', the title color isn't changed, but font color of the inner fieldset is changed :
{xtype: 'fieldset', title:... -
4 Sep 2009 12:44 AM
- Replies
- 1
- Views
- 776
I changed the title...
-
3 Sep 2009 1:11 PM
- Replies
- 1
- Views
- 776
I use a store that is not bound to a form or grid.
If I edit a data directly in the store, how to push the change on the server ?
I tried several things that do not work, with firebug nothing... -
3 Sep 2009 11:09 AM
- Replies
- 1
- Views
- 669
Finaly, it's not a specific Ext logic, but the javascript logic :
store_demande.filterBy(function(r){
//return (r.get('id_projet_demande') == 1 ||... -
3 Sep 2009 8:17 AM
- Replies
- 1
- Views
- 669
Hello,
How can I use the NOT condition (like ! in php) ?
store_demande.filterBy(function(r){
return r.get('id_projet_demande') !> 0;
});related issue : How to... -
2 Sep 2009 1:14 PM
- Replies
- 1
- Views
- 1,356
I found the solution :
Ext.onReady(function(){
var proxy = new Ext.data.HttpProxy({
url: 'Mysql_Call.php?table=demande&idkey=id_demande',
method: 'POST'
});
Results 1 to 25 of 113
