Search Type: Posts; User: muratyildiz
Search: Search took 0.06 seconds.
-
12 Jul 2011 5:26 AM
- Replies
- 5
- Views
- 2,918
me.inputEl.setStyle('text-align', 'right');
This style is text align in textbox. labelAlign : 'right' in the textfield config for label align style. -
11 Jul 2011 3:43 AM
- Replies
- 5
- Views
- 2,918
afterRender or onRender event :
me.inputEl.setStyle('text-align', 'right'); -
15 Apr 2011 12:08 AM
- Replies
- 1
- Views
- 547
256542565525656
Combobox problem on IE9. The others on EI9 and FF4. -
9 Apr 2011 1:49 PM
Jump to post Thread: Dynamic Menu by muratyildiz
- Replies
- 1
- Views
- 533
how to add dynamic menu to dockedItems with json?
{text: 'Ana Menu',menu:[{text:'Deneme1'},{text:'Deneme2'},{text:'Deneme3'}] }} -
5 Apr 2011 11:23 PM
- Replies
- 2
- Views
- 507
That code did not work
The sample code that does not work
.......................
,buttons:[ {text:'Save',xtype:'jbutton',onSuccess:function(form,action)... -
5 Apr 2011 1:08 AM
- Replies
- 2
- Views
- 507
FireBug error:
btns[i].setDisabled is not a function
btns[i].setDisabled(true);
Ext.define('Jes.ux.FormPanel', {
extend : 'Ext.form.FormPanel', -
25 Feb 2011 3:45 AM
Jump to post Thread: API Doc issues by muratyildiz
- Replies
- 140
- Views
- 22,488
Many of api files are 0 KB.
24862 -
25 Feb 2011 3:39 AM
Jump to post Thread: API Doc issues by muratyildiz
- Replies
- 140
- Views
- 22,488
There is nothing related to Ext.form.ComboBox. Ext.form.ComboBox.html file is 0 KB.
-
25 Feb 2011 2:00 AM
Jump to post Thread: Panel collapsed on pr2 (IE9) by muratyildiz
- Replies
- 2
- Views
- 1,159
I changed CSS files. Then problem solved.
<link rel="stylesheet" type="text/css" href="${context_path}/ext4script/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css"... -
25 Feb 2011 12:39 AM
Jump to post Thread: Panel collapsed on pr2 (IE9) by muratyildiz
- Replies
- 2
- Views
- 1,159
Everything is normal when I deleted tbar. May be a bug.
There is a problem on FF date picker and trigger field. width propety is not running. May be layout problem. -
25 Feb 2011 12:25 AM
Jump to post Thread: Panel collapsed on pr2 (IE9) by muratyildiz
- Replies
- 2
- Views
- 1,159
When the page opens as shown below the panel closed.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Transitional//EN" ... -
6 Oct 2010 6:00 AM
- Replies
- 3
- Views
- 449
Thanks. Problem solved. Plugins problem . Your are right. I added buildPlugins method then work.
var grid = new JEStudio.GridPanel({
url : '/jestudio/yetki/LogAction',
autoLoad :... -
6 Oct 2010 5:53 AM
- Replies
- 3
- Views
- 449
on custom grid init :
....
if (this.editable) {
this.plugins = [new Ext.ux.RowEditor()];
}
.... -
6 Oct 2010 5:12 AM
- Replies
- 3
- Views
- 449
I have a custom grid for restfull store. I want to edit record on custom grid like ext restfull store example. But not shown column editor's. There is no problem on datastore. Can you help me?...
-
6 Apr 2010 1:57 AM
- Replies
- 16
- Views
- 7,248
var w = new Ext.ux.PopupWindow({
url : 'www.google.com',
//height : 500,
//width : 650,
maximized:true,
id : 'win1',
title : 'Google',
modal : true
});
w.show(); -
6 Apr 2010 1:56 AM
- Replies
- 16
- Views
- 7,248
var w = new Ext.ux.PopupWindow({
url : 'www.google.com',
//height : 500,
//width : 650,
maximized :true,
id : 'win1',
title : 'Google',
modal : true
});
w.show(); -
6 Apr 2010 1:55 AM
- Replies
- 16
- Views
- 7,248
var w = new Ext.ux.PopupWindow({
url : 'www.google.com',
//height : 500,
//width : 650,
maximized:true,
id : 'win1',
title : 'Google',
modal : true
});
w.show(); -
1 Mar 2010 12:38 AM
- Replies
- 16
- Views
- 7,248
var w = new Ext.ux.PopupWindow({
url : 'www.google.com',
height : 500,
width : 650,
id : 'win1',
title : 'Google',
modal : true
});
w.show(); -
1 Mar 2010 12:29 AM
- Replies
- 16
- Views
- 7,248
Before I used ManagedIFrame. My code was very simple. But there were many problems in my application. For example viewport, or popup window. When the window was opening ,closing or redirecting page...
-
24 Feb 2010 12:25 PM
Jump to post Thread: Ext.ux.RowContextActions by muratyildiz
- Replies
- 8
- Views
- 2,998
very gooooood
-
17 Feb 2010 5:35 AM
- Replies
- 16
- Views
- 7,248
Thanks Animal.
Why create a div which contains an iframe all of which goes inside the Window's body?
you are right for iframe window . But div element must be in iframe panel for fit to parent... -
16 Feb 2010 9:18 AM
- Replies
- 13
- Views
- 4,775
This is remote loader.
var root = new Ext.tree.TreeNode({
text: 'root',
id:'source'
});
var comboxWithTree2 = new Ext.ux.TreeCombo({
... -
15 Feb 2010 9:49 AM
- Replies
- 13
- Views
- 4,775
Use this code
Ext.getCmp('<combotreeId>').loadTree(url,params)
must retun JSON objects. -
15 Feb 2010 5:46 AM
- Replies
- 13
- Views
- 4,775
/*
* Sample json load code :
* Ext.getCmp('<combotree>').loadTree(url,params)
* url : '../..../....Action.do?islem=giris '
* params : {'itemId':Ext.getCmp('item').getValue()}
*
* Animal's... -
14 Feb 2010 7:46 AM
- Replies
- 870
- Views
- 256,963
Thanks for help.
Results 1 to 25 of 33
