<?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>CodeTrace</title>
	<atom:link href="http://www.codetrace.sk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codetrace.sk</link>
	<description></description>
	<lastBuildDate>Sun, 06 Jun 2010 16:57:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Drag and drop files to your browser</title>
		<link>http://www.codetrace.sk/drag-and-drop-files-to-your-browser/</link>
		<comments>http://www.codetrace.sk/drag-and-drop-files-to-your-browser/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 16:40:32 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=265</guid>
		<description><![CDATA[<p>The mechanism behind: the Ajax library, the DOM element wrapper and the Asset component are assuring most of the work (handling the upload and the callback process), the DDM detects the dragged files, then your browser is doing the rest, defining the interaction between your desktop and the file input (nicely styled of course).</p>
<p>By now, [...]]]></description>
			<content:encoded><![CDATA[<p>The mechanism behind: the Ajax library, the DOM element wrapper and the Asset component are assuring most of the work (handling the upload and the callback process), the DDM detects the dragged files, then your browser is doing the rest, defining the interaction between your desktop and the file input (nicely styled of course).</p>
<p>By now, two browsers are playing well with the demo (Safari 4, Chrome 2+).</p>
<p>For the firefox browser use the folowing:<br />
<a href="http://www.thecssninja.com/demo/drag-drop_upload/" onclick="pageTracker._trackPageview('/outgoing/www.thecssninja.com/demo/drag-drop_upload/?referer=');">http://www.thecssninja.com/demo/drag-drop_upload/</a></p>
<p>Here’s the code :</p>
<blockquote>
<pre class="javascript" style="font-family: monospace; font-size: 11px;">Swell.<span style="color: #660066;">Core</span>.<span style="color: #660066;">Event</span>.<span style="color: #660066;">add</span><span style="color: #009900;">(</span><span style="color: #3366cc;">'upload'</span><span style="color: #339933;">,</span> <span style="color: #3366cc;">'change'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
    $<span style="color: #009900;">(</span><span style="color: #3366cc;">'loader'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">show</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
    $<span style="color: #009900;">(</span><span style="color: #3366cc;">'foorm'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">xhr</span><span style="color: #009900;">(</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
        <span style="color: #003366; font-weight: bold;">var</span> currentEl <span style="color: #339933;">=</span> $<span style="color: #009900;">(</span><span style="color: #3366cc;">'upload'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">current</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">(</span><span style="color: #3366cc;">'filelist'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">show</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
        <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">(</span><span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> <span style="color: #cc0000;">0</span><span style="color: #339933;">,</span> len <span style="color: #339933;">=</span> currentEl.<span style="color: #660066;">files</span>.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span> len<span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
            $<span style="color: #009900;">(</span><span style="color: #3366cc;">'filelist'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">appendHTML</span><span style="color: #009900;">(</span>currentEl.<span style="color: #660066;">files</span>.<span style="color: #000066; font-weight: bold;">item</span><span style="color: #009900;">(</span>i<span style="color: #009900;">)</span>.<span style="color: #660066;">fileName</span> <span style="color: #339933;">+</span> <span style="color: #3366cc;">'
'</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">}</span>
        <span style="color: #003366; font-weight: bold;">var</span> imgs <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">responseText</span>.<span style="color: #660066;">split</span><span style="color: #009900;">(</span><span style="color: #3366cc;">'|'</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">new</span> Swell.<span style="color: #660066;">Core</span>.<span style="color: #660066;">Asset</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span>.<span style="color: #660066;">load</span><span style="color: #009900;">(</span><span style="color: #3366cc;">'img'</span><span style="color: #339933;">,</span> imgs<span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">(</span>img<span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
            $<span style="color: #009900;">(</span><span style="color: #3366cc;">'loader'</span><span style="color: #009900;">)</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">(</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
            $<span style="color: #009900;">(</span>img<span style="color: #009900;">)</span>.<span style="color: #660066;">appendTo</span><span style="color: #009900;">(</span><span style="color: #3366cc;">'image-container'</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">}</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">}</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span>
<span style="color: #009900;">}</span><span style="color: #009900;">)</span><span style="color: #339933;">;</span></pre>
</blockquote>
<p><a href="http://playground.justswell.org/drag-and-drop-file-upload.html" onclick="pageTracker._trackPageview('/outgoing/playground.justswell.org/drag-and-drop-file-upload.html?referer=');">http://blog.justswell.org/drag-and-drop-files-from-your-desktop-to-your-browser-using-javascript/</a><br />
<a href="http://www.webmonkey.com/2009/08/html_5_file_api_brings_drag-and-drop_file_uploads_to_the_web/" onclick="pageTracker._trackPageview('/outgoing/www.webmonkey.com/2009/08/html_5_file_api_brings_drag-and-drop_file_uploads_to_the_web/?referer=');">http://www.webmonkey.com/2009/08/html_5_file_api_brings_drag-and-drop_file_uploads_to_the_web/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/drag-and-drop-files-to-your-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery UI &#8211; Styling Buttons and Toolbars</title>
		<link>http://www.codetrace.sk/jquery-ui-styling-buttons-and-toolbars/</link>
		<comments>http://www.codetrace.sk/jquery-ui-styling-buttons-and-toolbars/#comments</comments>
		<pubDate>Wed, 26 May 2010 18:55:42 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[Nové]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=260</guid>
		<description><![CDATA[<p>coded real-world examples of themeable buttons and toolbars using the jQuery UI CSS framework, a system of classes developed for jQuery UI widgets that can easily be applied to any plugin, and even static content.</p>
<p>http://www.filamentgroup.com/examples/buttonFrameworkCSS/
http://www.webdesignerwall.com/tutorials/css3-gradient-buttons/
http://csswizardry.com/css3/</p>
]]></description>
			<content:encoded><![CDATA[<p><span style="WIDOWS: 2; TEXT-TRANSFORM: none; TEXT-INDENT: 0px; BORDER-COLLAPSE: separate; FONT: medium 'Times New Roman'; WHITE-SPACE: normal; ORPHANS: 2; LETTER-SPACING: normal; COLOR: #000000; WORD-SPACING: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px"><span style="LINE-HEIGHT: 23px; FONT-FAMILY: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif; COLOR: #777777; FONT-SIZE: 17px">coded real-world examples of themeable buttons and toolbars using the </span><a style="COLOR: #368512" href="http://docs.jquery.com/UI/Theming/API" onclick="pageTracker._trackPageview('/outgoing/docs.jquery.com/UI/Theming/API?referer=');">jQuery UI CSS framework</a>, a system of classes developed for </span><a style="COLOR: #8dc262" href="http://jqueryui.com/demos/" onclick="pageTracker._trackPageview('/outgoing/jqueryui.com/demos/?referer=');">jQuery UI widgets</a> that can easily be applied to any plugin, and even static content.</p>
<p><a href="http://www.filamentgroup.com/examples/buttonFrameworkCSS/" onclick="pageTracker._trackPageview('/outgoing/www.filamentgroup.com/examples/buttonFrameworkCSS/?referer=');">http://www.filamentgroup.com/examples/buttonFrameworkCSS/</a><br />
<a href="http://www.webdesignerwall.com/tutorials/css3-gradient-buttons/" onclick="pageTracker._trackPageview('/outgoing/www.webdesignerwall.com/tutorials/css3-gradient-buttons/?referer=');">http://www.webdesignerwall.com/tutorials/css3-gradient-buttons/</a><br />
<a href="http://csswizardry.com/css3/" onclick="pageTracker._trackPageview('/outgoing/csswizardry.com/css3/?referer=');">http://csswizardry.com/css3/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/jquery-ui-styling-buttons-and-toolbars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linq.js &#8211; LINQ for JavaScript</title>
		<link>http://www.codetrace.sk/linq-js-linq-for-javascript/</link>
		<comments>http://www.codetrace.sk/linq-js-linq-for-javascript/#comments</comments>
		<pubDate>Mon, 03 May 2010 08:41:21 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=255</guid>
		<description><![CDATA[<p>linq.js &#8211; LINQ for JavaScript, Features:</p>


Implement all .NET 4.0 methods and many extra methods (inspiration from Rx, Achiral, Haskell, Ruby, etc&#8230;)
Full IntelliSense support for VisualStudio
Two versions &#8211; linq.js and jquery.linq.js (jQuery plugin)
Support Windows Script Host


<p>Source:  linq.js &#8211; LINQ for JavaScript.  (http://neue.cc/reference.htm)</p>
<p>http://jsinq.codeplex.com/</p>
]]></description>
			<content:encoded><![CDATA[<p>linq.js &#8211; LINQ for JavaScript, Features:</p>
<ul>
<blockquote>
<li>Implement all .NET 4.0 methods and many extra methods (inspiration from Rx, Achiral, Haskell, Ruby, etc&#8230;)</li>
<li>Full IntelliSense support for VisualStudio</li>
<li>Two versions &#8211; linq.js and jquery.linq.js (jQuery plugin)</li>
<li>Support Windows Script Host</li>
</blockquote>
</ul>
<p>Source:  <a href="http://linqjs.codeplex.com/" onclick="pageTracker._trackPageview('/outgoing/linqjs.codeplex.com/?referer=');">linq.js &#8211; LINQ for JavaScript</a>.  (<a href="http://neue.cc/reference.htm" onclick="pageTracker._trackPageview('/outgoing/neue.cc/reference.htm?referer=');">http://neue.cc/reference.htm</a>)</p>
<p><a href="http://jsinq.codeplex.com/" onclick="pageTracker._trackPageview('/outgoing/jsinq.codeplex.com/?referer=');">http://jsinq.codeplex.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/linq-js-linq-for-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SlickGrid &#8211; jQuery datagrid plugin</title>
		<link>http://www.codetrace.sk/slickgrid-jquery-datagrid-plugin/</link>
		<comments>http://www.codetrace.sk/slickgrid-jquery-datagrid-plugin/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 03:30:47 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[Nové]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=249</guid>
		<description><![CDATA[<p style="margin-top: 1em !important; margin-right: 0px !important; margin-bottom: 1em !important; margin-left: 0px !important; line-height: 1.5em !important; padding: 0px;">Quite simply, SlickGrid is a JavaScript grid/spreadsheet component.</p>
<p style="margin-top: 1em !important; margin-right: 0px !important; margin-bottom: 1em !important; margin-left: 0px !important; line-height: 1.5em !important; padding: 0px;">Some highlights:</p>


Adaptive virtual scrolling (handle hundreds of thousands of rows)
Extremely fast rendering speed
Background post-rendering [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 1em !important; margin-right: 0px !important; margin-bottom: 1em !important; margin-left: 0px !important; line-height: 1.5em !important; padding: 0px;">Quite simply, SlickGrid is a JavaScript grid/spreadsheet component.</p>
<p style="margin-top: 1em !important; margin-right: 0px !important; margin-bottom: 1em !important; margin-left: 0px !important; line-height: 1.5em !important; padding: 0px;">Some highlights:</p>
<ul style="margin-top: 1em !important; margin-right: 0px !important; margin-bottom: 1em !important; margin-left: 2em !important; line-height: 1.4em; padding: 0px;">
<blockquote>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Adaptive virtual scrolling (handle hundreds of thousands of rows)</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Extremely fast rendering speed</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Background post-rendering for richer cells</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Configurable &amp; customizable</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Full keyboard navigation</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Column resize/reorder/show/hide</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Column autosizing &amp; force-fit</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Pluggable cell formatters &amp; editors</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">Support for editing and creating new rows.</li>
<li style="line-height: 1.4em; padding: 0px; margin: 0px;">“GlobalEditorLock” to manage concurrent edits in cases where multiple Views on a page can edit the same data.</li>
</blockquote>
</ul>
<p><a href="http://wiki.github.com/mleibman/SlickGrid/examples" onclick="pageTracker._trackPageview('/outgoing/wiki.github.com/mleibman/SlickGrid/examples?referer=');">http://wiki.github.com/mleibman/SlickGrid/examples</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/slickgrid-jquery-datagrid-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax.org &#8211; pure javascript framework</title>
		<link>http://www.codetrace.sk/ajax-org-the-real-time-collaborative-application-platform/</link>
		<comments>http://www.codetrace.sk/ajax-org-the-real-time-collaborative-application-platform/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:13:56 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=203</guid>
		<description><![CDATA[<p>Ajax.org Platform is a pure javascript application framework for creating real-time collaborative applications that run in the browser. Ajax.org Platform radically changes the way you write applications:</p>
<p>- Live markup
- Markup and JSON api
- Collaborative backbone
- 100% open source software</p>
<p>http://www.ajax.org/#demos/elements.chart.3dline
http://www.ajax.org/#demos/elements.flowchart</p>
]]></description>
			<content:encoded><![CDATA[<p>Ajax.org Platform is a pure javascript application framework for creating real-time collaborative applications that run in the browser. Ajax.org Platform radically changes the way you write applications:</p>
<blockquote><p>- Live markup<br />
- Markup and JSON api<br />
- Collaborative backbone<br />
- 100% open source software</p></blockquote>
<p><a href="http://www.ajax.org/#demos/elements.chart.3dline" onclick="pageTracker._trackPageview('/outgoing/www.ajax.org/_demos/elements.chart.3dline?referer=');">http://www.ajax.org/#demos/elements.chart.3dline<br />
</a><a href="http://www.ajax.org/#demos/elements.flowchart" onclick="pageTracker._trackPageview('/outgoing/www.ajax.org/_demos/elements.flowchart?referer=');">http://www.ajax.org/#demos/elements.flowchart</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/ajax-org-the-real-time-collaborative-application-platform/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Visualize Plugin: HTML 5 Canvas</title>
		<link>http://www.codetrace.sk/jquery-visualize-plugin-html-5-canvas/</link>
		<comments>http://www.codetrace.sk/jquery-visualize-plugin-html-5-canvas/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 23:02:56 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=184</guid>
		<description><![CDATA[<p>jQuery Visualize Plugin, ktorý používa HTML 5 Canvas:</p>
$(&#8217;table&#8217;).visualize({ type: &#8216;pie&#8217;, pieMargin: 10, title: &#8216;my Graph&#8217; });
$(&#8217;table&#8217;).visualize({ type: &#8216;line&#8217; });
$(&#8217;table&#8217;).visualize({ type: &#8216;area&#8217; });
<p>$(&#8216;table&#8217;).visualize({ type: &#8216;pie&#8217;, pieMargin: 10, title: &#8216;my Graph&#8217; });
$(&#8216;table&#8217;).visualize({ type: &#8216;line&#8217; });
$(&#8216;table&#8217;).visualize({ type: &#8216;area&#8217; });</p>
<p>http://www.filamentgroup.com/examples/charting_v2/
http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/</p>
]]></description>
			<content:encoded><![CDATA[<p>jQuery Visualize Plugin, ktorý používa HTML 5 Canvas:</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">$(&#8217;table&#8217;).visualize({ type: &#8216;pie&#8217;, pieMargin: 10, title: &#8216;my Graph&#8217; });</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">$(&#8217;table&#8217;).visualize({ type: &#8216;line&#8217; });</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">$(&#8217;table&#8217;).visualize({ type: &#8216;area&#8217; });</div>
<blockquote><p>$(<span style="color: #993366;">&#8216;table&#8217;</span>).visualize({ type: <span style="color: #993366;">&#8216;pie&#8217;</span>, pieMargin: <span style="color: #0000ff;">10</span>, title: <span style="color: #993366;">&#8216;my Graph&#8217;</span> });<br />
$(<span style="color: #993366;">&#8216;table&#8217;</span>).visualize({ type: <span style="color: #993366;">&#8216;line&#8217;</span> });<br />
$(<span style="color: #993366;">&#8216;table&#8217;</span>).visualize({ type: <span style="color: #993366;">&#8216;area&#8217; </span>});</p></blockquote>
<p><a href="http://www.filamentgroup.com/examples/charting_v2/" onclick="pageTracker._trackPageview('/outgoing/www.filamentgroup.com/examples/charting_v2/?referer=');">http://www.filamentgroup.com/examples/charting_v2/<br />
</a><a href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/" onclick="pageTracker._trackPageview('/outgoing/www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/?referer=');">http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/jquery-visualize-plugin-html-5-canvas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtJS.com JavaScript Library</title>
		<link>http://www.codetrace.sk/extjs-com-javascript-library/</link>
		<comments>http://www.codetrace.sk/extjs-com-javascript-library/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 21:13:11 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=131</guid>
		<description><![CDATA[<p>Knižnica, využíva jQuery, orientovaná iba na klientské použitie, nezávislá na serverovej technológii, beží aj v PHP aj v ASP.NET.</p>
<p>// create the Grid
var grid = new Ext.grid.GridPanel({
store: store,
columns: [
{ id: 'company' , header: 'Company' , width: 160, sortable: true , dataIndex: 'company'},
{ header: 'Price' , width: 75, sortable: true , renderer: 'usMoney' , dataIndex: 'price' }, [...]]]></description>
			<content:encoded><![CDATA[<p>Knižnica, využíva jQuery, orientovaná iba na klientské použitie, nezávislá na serverovej technológii, beží aj v PHP aj v ASP.NET.</p>
<blockquote style="padding-left: 30px"><p><span style="font-size: x-small;"><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;"><span style="font-size: x-small;"><span style="color: #008000; font-size: x-small;"><span style="color: #008000; font-size: x-small;">// create the Grid<br />
</span></span></span></span></span><span style="font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; 			font-size: x-small;">var </span></span><span style="font-size: x-small;">grid = </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">new </span></span><span style="font-size: x-small;">Ext.grid.GridPanel({<br />
</span><span style="font-size: x-small;">store: store,<br />
</span><span style="font-size: x-small;">columns: [<br />
</span>{ id: </span></span><span style="color: #a31515; 				font-size: x-small;"><span style="color: #a31515; font-size: x-small;">'company' </span></span><span style="font-size: x-small;">, header: </span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">'Company' </span></span><span style="font-size: x-small;">, width: 160, sortable: </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; 						font-size: x-small;">true </span></span><span style="font-size: x-small;">, dataIndex: </span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">'company'</span></span><span style="font-size: x-small;">},<br />
</span><span style="font-size: x-small;">{ header: </span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">'Price' </span></span><span style="font-size: x-small;">, width: 75, sortable: </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">true </span></span><span style="font-size: x-small;">, renderer: </span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">'usMoney' </span></span><span style="font-size: x-small;">, dataIndex: </span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">'price' </span></span><span style="font-size: x-small;">}, <span style="font-size: x-small;"><br />
],<br />
stripeRows: <span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">true,<br />
</span></span>autoExpandColumn: <span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">&#8216;company&#8217;,<br />
</span></span>height: 350,<br />
width: 600<br />
<span style="font-size: x-small;">}); </span></span></span></p></blockquote>
<p><a href="http://www.extjs.com/deploy/dev/examples/" onclick="pageTracker._trackPageview('/outgoing/www.extjs.com/deploy/dev/examples/?referer=');">http://www.extjs.com/deploy/dev/examples/<br />
</a><a href="http://examples.extjs.eu/" onclick="pageTracker._trackPageview('/outgoing/examples.extjs.eu/?referer=');">http://examples.extjs.eu/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/extjs-com-javascript-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSON a Google Data Protocol</title>
		<link>http://www.codetrace.sk/json-a-google-data-protocol/</link>
		<comments>http://www.codetrace.sk/json-a-google-data-protocol/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 08:41:13 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=125</guid>
		<description><![CDATA[<p>Google IO video ako použiť JSON na prenos dát server/client, effektívne updaty na server cez PUT a PATCH.</p>

<p class="MsoNormal" style="text-autospace:none">var head = document.getElementsByTagName(&#8216;head&#8217;)[0];
var script = document.createElement(&#8217;script&#8217;);
script.src = &#8216;http://picasaweb.google.com/data/feed/api/user/&#8217; + username + &#8216;?alt=json&#38;callback=callback&#8217;;
head.appendChild(script);</p>
<p>http://code.google.com/events/io/2009/sessions/EvolutionGoogleDataProtocol.htm
http://code.google.com/apis/gdata/docs/json.html</p>
]]></description>
			<content:encoded><![CDATA[<p>Google IO video ako použiť <a href="http://www.json.org" onclick="pageTracker._trackPageview('/outgoing/www.json.org?referer=');">JSON</a> na prenos dát server/client, effektívne updaty na server cez PUT a PATCH.</p>
<blockquote>
<p class="MsoNormal" style="text-autospace:none"><span style="font-size: 10.0pt;"><span style="color: #0000ff;">var</span></span><span style="font-size:10.0pt; font-family:"> head = document.getElementsByTagName(<span style="color:#A31515">&#8216;head&#8217;</span>)[0];<br />
</span><span style="font-size: 10.0pt;"><span style="color: #0000ff;">var</span></span><span style="font-size:10.0pt; font-family:"> script = document.createElement(<span style="color:#A31515">&#8217;script&#8217;</span>);<br />
</span><span style="font-size:10.0pt; font-family:">script.src = <span style="color:#A31515">&#8216;http://picasaweb.google.com/data/feed/api/user/&#8217; </span>+ username + <span style="color:#A31515">&#8216;?alt=json&amp;callback=callback&#8217;</span>;<br />
</span><span style="font-size:10.0pt;font-family:">head.appendChild(script);</span></p></blockquote>
<p><a href="http://code.google.com/events/io/2009/sessions/EvolutionGoogleDataProtocol.html" onclick="pageTracker._trackPageview('/outgoing/code.google.com/events/io/2009/sessions/EvolutionGoogleDataProtocol.html?referer=');">http://code.google.com/events/io/2009/sessions/EvolutionGoogleDataProtocol.htm</a><br />
<a href="http://code.google.com/apis/gdata/docs/json.html" onclick="pageTracker._trackPageview('/outgoing/code.google.com/apis/gdata/docs/json.html?referer=');">http://code.google.com/apis/gdata/docs/json.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/json-a-google-data-protocol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTA aplikacia full screen</title>
		<link>http://www.codetrace.sk/hta-aplikacia-full-screen/</link>
		<comments>http://www.codetrace.sk/hta-aplikacia-full-screen/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 10:20:09 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[SilverLight]]></category>
		<category><![CDATA[Všeobecné]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=110</guid>
		<description><![CDATA[<p>Naozajstný full screen mode pre silverlight alebo html. Ideálne pre zariadenia s dotykovou obrazovkou. Stačí ked tento kód uložíte ako textový subor, premenujete koncovku na .hta a do start-up adresára operačného systému vložíme odkaz na tento hta súbor.</p>
<p>&#60;html&#62;
&#60;head&#62;</p>
<p>    &#60;hta:application showintaskbar = &#8220;yes&#8221; caption = &#8220;no&#8221; border = &#8220;thick&#8221; contextmenu = &#8220;yes&#8221; icon = &#8220;path_to_icon.ico&#8221; innerborder [...]]]></description>
			<content:encoded><![CDATA[<p>Naozajstný full screen mode pre silverlight alebo html. Ideálne pre zariadenia s dotykovou obrazovkou. Stačí ked tento kód uložíte ako textový subor, premenujete koncovku na .hta a do start-up adresára operačného systému vložíme odkaz na tento hta súbor.</p>
<blockquote><p><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;</span></span>html</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;<br />
</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">head</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;</span></span></p>
<p><strong><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">    &lt;</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">hta</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">:</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">application</span></span></strong><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">showintaskbar</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;yes&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">caption</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;no&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">border</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;thick&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">contextmenu</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;yes&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">icon</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;path_to_icon.ico&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">innerborder</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;no&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">scroll</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;no&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">singleinstance</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;yes&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">resizable</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;yes&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">windowState</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&#8220;maximize&#8221;</span></span><span style="font-size: x-small;"> </span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;</span></span></p>
<p><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;/</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">head</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;<br />
</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">body</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">scroll</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=&#8221;no&#8221;&gt;<br />
</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">p</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;</span></span><span style="font-size: x-small;">HTA app fullscreen</span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;/</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">p</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;</span></span><span style="font-size: x-small;"><br />
</span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;/</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">body</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;</span></span><span style="font-size: x-small;"><br />
</span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;/</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">html</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;</span></span> </p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/hta-aplikacia-full-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XAMPP inštalačka apache + mysql</title>
		<link>http://www.codetrace.sk/xampp-instalacka-apache-mysql/</link>
		<comments>http://www.codetrace.sk/xampp-instalacka-apache-mysql/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 04:38:43 +0000</pubDate>
		<dc:creator>CodeTrace</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.codetrace.sk/?p=97</guid>
		<description><![CDATA[<p>XAMPP je jednoducho inštalovateľný balík potrebných aplikácii na hostovanie php webov, obsahuje napr:</p>



Apache
PHP scripting
MySQL
phpMyAdmin



<p>http://sourceforge.net/projects/xampp</p>
]]></description>
			<content:encoded><![CDATA[<p>XAMPP je jednoducho inštalovateľný balík potrebných aplikácii na hostovanie php webov, obsahuje napr:</p>
<ul>
<blockquote>
<ul>
<li>Apache</li>
<li>PHP scripting</li>
<li>MySQL</li>
<li>phpMyAdmin</li>
</ul>
</blockquote>
</ul>
<p><a href="http://sourceforge.net/projects/xampp/" onclick="pageTracker._trackPageview('/outgoing/sourceforge.net/projects/xampp/?referer=');">http://sourceforge.net/projects/xampp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codetrace.sk/xampp-instalacka-apache-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
