Search Type: Posts; User: mdelanno
Search: Search took 0.03 seconds.
-
30 Jul 2009 12:01 AM
- Replies
- 2
- Views
- 1,195
mask works only with elements which accept child nodes, because it insert some div in the element. If the element is a TR for example, the div is put in the body by the browser and then, it's the...
-
27 Jul 2009 11:42 AM
Jump to post Thread: Grid Hyperlinks by mdelanno
- Replies
- 3
- Views
- 1,007
And use cellclick instead of click !
-
27 Jul 2009 11:40 AM
Jump to post Thread: Grid Hyperlinks by mdelanno
- Replies
- 3
- Views
- 1,007
You should use the cell for your target instead of your view body. And use Ext.Element.update instead of setting innerHTML
-
27 Jul 2009 11:13 AM
Jump to post Thread: dataView and click event by mdelanno
- Replies
- 13
- Views
- 4,512
You can get the record with :
function( dataView, index, node, e) {
var record = dataView.getRecord(node);
alert(record.get("title"));
} -
28 Nov 2008 5:44 AM
Jump to post Thread: Validation Questions... by mdelanno
- Replies
- 4
- Views
- 1,375
Look at http://extjs.com/deploy/dev/docs/?class=Ext.form.Field, config option itemCls, there is a sample of CSS rule for required field.
-
14 Nov 2008 10:11 AM
- Replies
- 15
- Views
- 2,623
It will not work if you have sub-containers (for example if you have a multicolumn form). The only workaround that I've found is to put a delay on the listener. :s
-
14 Nov 2008 1:15 AM
- Replies
- 3
- Views
- 844
Post you code please, it will be easier to help you.
-
8 Nov 2008 12:26 PM
- Replies
- 2
- Views
- 659
You must add the data to the grid after the request call. If the server modify the data (for example, the server can truncate a string to a given length), the modifications won't be visible on the...
-
8 Nov 2008 10:10 AM
- Replies
- 2
- Views
- 1,292
Not tested !
dataView.getEl().on('scroll', function(e, target) {});
You can look at http://extjs.com/playpen/ldp/live-data-panel.html for a reference implementation -
16 Oct 2008 9:07 AM
Jump to post Thread: AJAX - 411 Length Required by mdelanno
- Replies
- 4
- Views
- 5,698
I have the same problem with Nginx web server. I resolved it by setting Ext.form.Action.Load.method to 'get' like vmorale4 suggested.
-
7 Oct 2008 4:14 AM
- Replies
- 5
- Views
- 4,188
Something like this (not tested) :
tasksDataStore.on('load', function(store) {
Ext.MessageBox.alert("json value: "+
Ext.util.JSON.encode(store.reader.jsonData);
);
});
if not,... -
3 Oct 2008 5:46 AM
Jump to post Thread: Ext.Ajax.request by mdelanno
- Replies
- 7
- Views
- 10,196
In PHP, I use this code to send an error status :
header('HTTP/1.0 500 Internal Server Error'); -
1 Oct 2008 12:59 AM
Jump to post Thread: Action Test by mdelanno
- Replies
- 1
- Views
- 954
:-?
tb.items[0].setText(""); -
29 Sep 2008 11:28 PM
Jump to post Thread: [Fix] Combobox Default Value by mdelanno
- Replies
- 3
- Views
- 13,989
This method doesn't work if pageSize is set on the combo (The record is not inevitably on the first page).
-
29 Sep 2008 11:05 PM
Jump to post Thread: for Ext.window... by mdelanno
- Replies
- 7
- Views
- 1,195
Look at Ext.Element.addClassOnOver.
Use a div with a css background image in place of your img tag. -
21 Aug 2008 3:51 AM
- Replies
- 4
- Views
- 5,155
Ext.ux.TwinComboBox does not support 1-dimensional array in store config. You should use this code to load your array :
var myTwinCB = new Ext.ux.TwinComboBox({
[..]
displayField: "text", ... -
12 Aug 2008 1:01 PM
Jump to post Thread: Button in Grid's cell by mdelanno
- Replies
- 33
- Views
- 54,230
Add a column with a renderer :
{header: "", width: 70, dataIndex: '', renderer: function(){ return '<div class="btn" style="height: 11px; width: 60px"></div>';}}
Add a listener on the grid... -
5 Jan 2008 12:44 PM
- Replies
- 1
- Views
- 1,016
ext-base.js
windows vista
IE7 7.0.6000.16575
Using viewport.destroy throw an error in IE in the method Ext.removeNode at the instruction d.innerHTML = '';
See code below -
3 Jan 2008 11:51 PM
Jump to post Thread: Best Practices - Login Screens by mdelanno
- Replies
- 4
- Views
- 2,046
I think that mask can be bypassed with the use of tab key or another shortcut. (see this thread : http://extjs.com/forum/showthread.php?t=7964&highlight=modal+windows).
So I choose to create the... -
7 Nov 2007 11:54 PM
Jump to post Thread: [2.0rc1] QuickTips css not reset by mdelanno
- Replies
- 4
- Views
- 1,147
Yes, it is exactly the same problem as that which is described in this message.
-
7 Nov 2007 12:27 PM
Jump to post Thread: [2.0rc1] QuickTips css not reset by mdelanno
- Replies
- 4
- Views
- 1,147
No.
-
7 Nov 2007 9:40 AM
Jump to post Thread: [2.0rc1] QuickTips css not reset by mdelanno
- Replies
- 4
- Views
- 1,147
The css of the tooltip is not reset to standard after have been shown with the stop sign.
To reproduce :
Take the dynamic forms sample, add a qtip:"test" on the h1 title. Go to the email field,... -
4 Nov 2007 2:45 PM
- Replies
- 2
- Views
- 1,858
Here is my implementation for compute the week number. It works for 2009-12-31. addDays method could be replaced by Ext method Date.add
Date.prototype.addDays = function(days) {
... -
28 Oct 2007 9:07 AM
- Replies
- 76
- Views
- 42,650
I've a problem in one of my application where users want to select an entire dataset (200 to 300 rows). With a paging dataset, they can only select one page at a time.
It would be nice to have a... -
14 Oct 2007 2:04 AM
Jump to post Thread: Ajax History support by mdelanno
- Replies
- 17
- Views
- 7,384
A nice article on this topic : http://weblogs.asp.net/bleroy/archive/2007/09/07/how-to-build-a-cross-browser-history-management-system.aspx
Results 1 to 25 of 71
