im trying to run the treegrid example but it only gives me the grid with no data in it !!

this is my default.aspx:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>My tree grid</title>

<!-- Ext -->
<link rel="stylesheet" type="text/css" href="ExtJs4/resources/css/ext-all.css" />
<script type="text/javascript" src="ExtJs4/bootstrap.js"></script>
<script type="text/javascript" src="ExtJs4/ext-all.js"></script>


<!-- example code -->

<script type="text/javascript" src="Scripts/treepanel.js"></script>

</head>
<body>

<h1>My tree grid</h1>

<div id="tree-div"> </div>

this is my treepanel.js

Ext.Loader.setConfig({ enabled: true }); //

Ext.Loader.setPath('Ext.ux', '../ux');

Ext.require([
    'Ext.tip.QuickTipManager',
    'Ext.container.Viewport',
    'Ext.layout.*',
    'Ext.form.Panel',
    'Ext.form.Label',
    'Ext.grid.*',
    'Ext.data.*',
    'Ext.tree.*',
    'Ext.selection.*',
    'Ext.tab.Panel'
]);

Ext.onReady(function () 
{
 Ext.define('Task', {
    extend: 'Ext.data.Model',
    fields: [
        {name: 'task',     type: 'string'},
        {name: 'user',     type: 'string'},
        {name: 'duration', type: 'string'}
    ] 
});

var store = Ext.create('Ext.data.TreeStore', {
    model: 'Task',
    proxy: {
        type: 'ajax',

        url: 'treegrid.json'////
    },
    folderSort: true
});

//Ext.ux.tree.TreeGrid is no longer a Ux. You can simply use a tree.TreePanel
var tree = Ext.create('Ext.tree.Panel', {
    title: 'Core Team Projects',
    width: 500,
    height: 300,
    renderTo: 'tree-div', 
    rootVisible:true,
    store: store,
    autoload:true,
    columns: [{xtype: 'treecolumn',  text: 'Task',   dataIndex: 'task' },{text: 'Assigned To', dataIndex: 'user'}]
});

});

am i doing smething wrong here? i have no error msg from my firebug...so why isnt it working?

please help ,if i cant run an example how am i going to do more..im frustrated with this

thanks

link|improve this question

1  
What does your 'treegrid.json' look like? – mrust May 24 '11 at 21:07
same as in the example : dev.sencha.com/deploy/ext-4.0.1/examples/tree/treegrid.html – astrocybernaute May 25 '11 at 8:52
{"text":".","children": [ { task:'Project: Shopping', duration:13.25, user:'Tommy Maintz', iconCls:'task-folder', expanded: true, children:[{ task:'Housewares', duration:1.25, user:'Tommy Maintz', iconCls:'task-folder', children:[{ task:'Kitchen supplies', duration:0.25, user:'Tommy Maintz', leaf:true, iconCls:'task' },{ ..... – astrocybernaute May 25 '11 at 8:53
I wish they would have better documentation.. I am trying to get this to work locally also – MacGyver Jan 30 at 2:33
where is ur problem exactly? i may help – astrocybernaute Jan 30 at 11:02
feedback

2 Answers

not sure, but the "autoLoad: true" is now on the panel, but shouldn't it be on the store?

link|improve this answer
thx,added it but didnt change anything – astrocybernaute Jun 3 '11 at 9:06
feedback

Install PHP and do the following in IIS:

  • click on the new site
  • click on MIME types
  • right click in open space > Add > File name extension: "json" ... MIME Type: "application/x-javascript"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.