<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Einzeller Blog</title>
	<atom:link href="https://blog.einzeller.ch/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.einzeller.ch</link>
	<description>Symfony 2, Extjs 4 and everything else</description>
	<lastBuildDate>Fri, 26 Apr 2013 10:32:24 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.6</generator>
		<item>
		<title>Using Mssql database with doctrine 2</title>
		<link>https://blog.einzeller.ch/uncategorized/using-mssql-database-with-doctrine-2/</link>
		<comments>https://blog.einzeller.ch/uncategorized/using-mssql-database-with-doctrine-2/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 10:32:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[doctrine]]></category>
		<category><![CDATA[mssql]]></category>

		<guid isPermaLink="false">http://blog.einzeller.ch/?p=16</guid>
		<description><![CDATA[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: Doctrine 2 &#8211; How to add custom DBAL driver? PDODblibBundle MssqlBundle Connecting Doctrine 2 to MSSQL For SYMFONY 2 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>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.</p>
<p>Links:</p>
<ul>
<ul>
<li><a title="Doctrine 2 - How to add custom DBAL driver?" href="http://stackoverflow.com/questions/8492941/doctrine-2-how-to-add-custom-dbal-driver" target="_blank">Doctrine 2 &#8211; How to add custom DBAL driver?</a></li>
<li><a href="https://github.com/trooney/PDODblibBundle" target="_blank">PDODblibBundle</a></li>
<li><a href="https://github.com/intellectsoft-uk/MssqlBundle" target="_blank">MssqlBundle</a></li>
<li><a href="http://stackoverflow.com/questions/11081993/connecting-doctrine-2-to-mssql-for-symfony-2-on-linux">Connecting Doctrine 2 to MSSQL For SYMFONY 2 On Linux</a></li>
</ul>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.einzeller.ch/uncategorized/using-mssql-database-with-doctrine-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Js: Breakpoints from code</title>
		<link>https://blog.einzeller.ch/js/js-breakpoints-from-code/</link>
		<comments>https://blog.einzeller.ch/js/js-breakpoints-from-code/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 14:11:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Js]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://blog.einzeller.ch/?p=9</guid>
		<description><![CDATA[Adding debugger; to your script will force firebug to stop at the given line for debugging.]]></description>
				<content:encoded><![CDATA[<p>Adding <code>debugger;</code> to your script will force firebug to stop at the given line for debugging.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.einzeller.ch/js/js-breakpoints-from-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extjs: Create TreeStore from flat data</title>
		<link>https://blog.einzeller.ch/exts/extjs-create-treestore-from-flat-data/</link>
		<comments>https://blog.einzeller.ch/exts/extjs-create-treestore-from-flat-data/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 13:41:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Extjs]]></category>
		<category><![CDATA[extjs]]></category>
		<category><![CDATA[store]]></category>

		<guid isPermaLink="false">http://blog.einzeller.ch/?p=3</guid>
		<description><![CDATA[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) &#38;&#38; node !== null){ node.appendChild({ [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Codesnippet for creating an tree store from flat data:</p>
<pre>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) &amp;&amp; node !== null){
        node.appendChild({
            id:key, 
            text: value.title,
            leaf: false,
            expanded: true
        });
        node.leaf = true;
        node.expanded = true;
    }
});</pre>
]]></content:encoded>
			<wfw:commentRss>https://blog.einzeller.ch/exts/extjs-create-treestore-from-flat-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
