Some rescources and bundles for connecting an mssql database with doctrine 2.I think, one mainproblem are the different drivers for windows and linux systems, so i prefer an development with linux in an virtual machine.
Links:
Some rescources and bundles for connecting an mssql database with doctrine 2.I think, one mainproblem are the different drivers for windows and linux systems, so i prefer an development with linux in an virtual machine.
Links:
Adding debugger; to your script will force firebug to stop at the given line for debugging.
Codesnippet for creating an tree store from flat data:
var me = this,
treeStore = me.getStore(),
rootNode = treeStore.getRootNode(),
node;
Ext.iterate(data, function(key, value){
//get node for appending next node
if(value.parent == 'root'){
node = rootNode;
} else{
node = rootNode.findChild('id', value.parent, true);
}
// create and add new node
if(Ext.isDefined(node) && node !== null){
node.appendChild({
id:key,
text: value.title,
leaf: false,
expanded: true
});
node.leaf = true;
node.expanded = true;
}
});