Search Type: Posts; User: hash_man
Search: Search took 0.02 seconds.
-
27 Mar 2010 11:46 PM
- Replies
- 0
- Views
- 680
Hi, is there any way to display data in treepanel with paging, just like the paging toolbar in gridpanel, for I need to display amont of records in a tree.
thanks -
14 Jan 2010 1:20 AM
- Replies
- 3
- Views
- 1,124
How can I add a panel which can resize accroding to the window resize
-
3 Dec 2009 12:41 PM
Jump to post Thread: About selectrecords by hash_man
- Replies
- 0
- Views
- 512
I build a grid and use a simplestore, when the grid render, I try to select some record, but it not work.
var allleafmaterialcatalogstore = new Ext.data.SimpleStore({
fields: ['id',... -
18 Sep 2009 11:27 PM
Jump to post Thread: Find parent by hash_man
- Replies
- 1
- Views
- 1,157
I add a form to a panel just like below:
var divname = 'resualtdiv' + formindex
var mainpanel = Ext.getCmp("mainpanel")
var subpanel =... -
10 May 2009 1:36 AM
Jump to post Thread: where is the tooltip? by hash_man
- Replies
- 3
- Views
- 1,428
Hi,Animal. Thank you for your reply.
I add below code to my html:
<div id="tip1" class="tip-target" >
</div>
and I change my code below: -
9 May 2009 11:28 PM
Jump to post Thread: where is the tooltip? by hash_man
- Replies
- 3
- Views
- 1,428
Here is my first code fragment:
tbar: [{
text: 'add',
id: 'addnewcard',
tooltip: "test tip",
tooltipType: 'title',
... -
1 Apr 2009 1:15 AM
Jump to post Thread: Fit to parent by hash_man
- Replies
- 123
- Views
- 72,127
Hi,I alway find a way to fit the grid to the screen. I think you have made an excellent work.
But I can't use it. I put the plugin code at the begin of my js file. But the firebug report like below:... -
21 Mar 2009 8:00 PM
Jump to post Thread: Ext.ux.PrinterFriendly by hash_man
- Replies
- 185
- Views
- 103,524
When I open the page,firebug always told me Ext.onPrinting is not a function.Why?
-
11 Jan 2009 1:43 AM
- Replies
- 2
- Views
- 900
delete searchcombo.lastQuery; ?
I can't find it in api document. -
10 Jan 2009 6:00 AM
- Replies
- 2
- Views
- 900
I have build an live search combox,here is the code:
[PHP]function batchsearchcombo(init){
var material_id = init ? init.material_id ? init.material_id : 'material_id' : 'material_id'
var... -
2 Aug 2008 11:22 PM
- Replies
- 1
- Views
- 676
I has done a little change to the sample-grid.js, here is the code:
SampleGrid = function(limitColumns){
function italic(value){
return '<i>' + value + '</i>';
}
... -
2 Aug 2008 3:52 AM
Jump to post Thread: How can I build the params. by hash_man
- Replies
- 3
- Views
- 885
Resolved!!
Make the params like below:
{"material[code]":"000","material[name]"=>"test"} -
2 Aug 2008 2:15 AM
Jump to post Thread: How can I build the params. by hash_man
- Replies
- 3
- Views
- 885
Hi,lburgess,thanks for your reply.I try it,but the params looks like below:
"{\"code\":\"000\",\"name\":\"test\"}"
It's not what I want yet.The "Ext.encode" do the same thing just like the... -
2 Aug 2008 12:18 AM
Jump to post Thread: How can I build the params. by hash_man
- Replies
- 3
- Views
- 885
I used the extjs+ror.Now I want send a javascript object back to the serverside,here is the code fragment:
var material={code:"000",name:"test"};
.......
params:{"material":material}
and the... -
24 May 2008 6:08 AM
- Replies
- 0
- Views
- 624
Here is my code:
[PHP]
var myform=new Ext.FormPanel({
width:800,
defaultType:'textfield',
frame:true,
fileUpload:true,
items:[ -
20 May 2008 8:01 PM
- Replies
- 5
- Views
- 4,755
Who can give me an example of the serverside about ScriptTagProxy?
-
17 May 2008 9:22 AM
- Replies
- 0
- Views
- 549
I want to use the combo like the example forum-search,I just do a little change to the example,but now it can not work.Here is the code:
Ext.onReady(function(){
var ds = new... -
23 Apr 2008 1:49 PM
- Replies
- 1
- Views
- 770
Who can help me?
-
22 Apr 2008 4:10 PM
- Replies
- 1
- Views
- 770
I created a formpanel just like the form-grid sample but use the different store.Here is my code fragment
var myData = [[9,'admin'],[19,'cool']]
var ds = new Ext.data.Store({
... -
18 Apr 2008 4:34 AM
- Replies
- 7
- Views
- 3,485
Resolved!!
I created the root node in the function Ext.onReady and passed it to function getcourseform via parameter.
Now it work. -
18 Apr 2008 4:23 AM
- Replies
- 7
- Views
- 3,485
The assistantitems is Array,I'm sure it's correct because I can load it in a another tree.
I think I must describe the problem detailedly:
If I copy the code in the function getcourseform to the... -
18 Apr 2008 3:57 AM
- Replies
- 7
- Views
- 3,485
I modified the code again,use the AsyncTreeNode.Here is the code
{xtype:'fieldset',collapsible: true,autoHeight:true,title: 'test',width: 750,hideBorders:true,
items:
{
xtype:'treepanel',... -
18 Apr 2008 3:23 AM
- Replies
- 7
- Views
- 3,485
I changed the code:
{xtype:'fieldset',collapsible: true,autoHeight:true,title: 'test',width: 750,hideBorders:true,
items:
{
xtype:'treepanel',
enableDD:true,
id:'assistanttree', -
18 Apr 2008 2:41 AM
- Replies
- 7
- Views
- 3,485
Here is my code:
var courseform=getcourseform('courseform','test',totalstore,assistantitems);
courseform.render("form");
function... -
18 Apr 2008 2:35 AM
- Replies
- 0
- Views
- 568
Here is my code:
var courseform=getcourseform('courseform','test',totalstore,assistantitems);
courseform.render("form");
function...
Results 1 to 25 of 61
