<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Steven De Waele&#039;s Blog</title>
	<atom:link href="http://www.stevendewaele.be/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.stevendewaele.be</link>
	<description></description>
	<lastBuildDate>Sat, 18 Feb 2012 15:24:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
	<item>
		<title>Comment on My favorite jQuery Grid. by Steven De Waele</title>
		<link>http://www.stevendewaele.be/?p=192#comment-240</link>
		<dc:creator>Steven De Waele</dc:creator>
		<pubDate>Sat, 18 Feb 2012 15:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevendewaele.be/?p=192#comment-240</guid>
		<description>Hello Mario,

No haven&#039;t tried that.
But is possible if you create some read/write functions in asp.
Maybe even with a retrieve/send in javascript also.
But just haven&#039;t tried it myself.

Sorry,
Steven</description>
		<content:encoded><![CDATA[<p>Hello Mario,</p>
<p>No haven&#8217;t tried that.<br />
But is possible if you create some read/write functions in asp.<br />
Maybe even with a retrieve/send in javascript also.<br />
But just haven&#8217;t tried it myself.</p>
<p>Sorry,<br />
Steven</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My favorite jQuery Grid. by Mario</title>
		<link>http://www.stevendewaele.be/?p=192#comment-223</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Thu, 02 Feb 2012 13:57:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevendewaele.be/?p=192#comment-223</guid>
		<description>Hello Steven,

Do you know how to use jqgrid with sharepoint?
Reading/writing from/to a list?

Kind regards,
Mario</description>
		<content:encoded><![CDATA[<p>Hello Steven,</p>
<p>Do you know how to use jqgrid with sharepoint?<br />
Reading/writing from/to a list?</p>
<p>Kind regards,<br />
Mario</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JqPlot: a very easy and good Charting jquery plugin by Steven De Waele</title>
		<link>http://www.stevendewaele.be/?p=147#comment-61</link>
		<dc:creator>Steven De Waele</dc:creator>
		<pubDate>Mon, 08 Aug 2011 17:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevendewaele.be/?p=147#comment-61</guid>
		<description>I hope this helps to get started.
Jquery code:

    $(document).ready(function () {
        var ajaxDataRenderer = function (url) {
            var ret = null;
            $.ajax({
                // have to use synchronous here, else returns before data is fetched
                async: false,
                url: url,
                dataType: &#039;json&#039;,
                success: function (data) {
                    ret = data;
                }
            });
            return ret;
        };
        plot1 = $.jqplot(&#039;chart&#039;, &#039;@Url.Action(&quot;GetData&quot;,&quot;Home&quot;)&#039;,{
                dataRenderer: ajaxDataRenderer
            });
    });
&lt;/script&gt;

ASP code:

Using the first int as axis label an the second as value.
Why the list sampleData because that’s the list with series

 public ActionResult GetData()
        {
            List&lt;object&gt; sampleData = new List&lt;object&gt;();
            int i = 1;
            List&lt;object&gt; test = new List&lt;object&gt;();
                test.Add(new List&lt;int&gt;(){1,1});
                test.Add(new List&lt;int&gt;() { 1, 1 });
                test.Add(new List&lt;int&gt;() { 2, 2 });
                test.Add(new List&lt;int&gt;() { 3, 1 });
                test.Add(new List&lt;int&gt;() { 4, 3 });
                test.Add(new List&lt;int&gt;() { 5, 5 });

                sampleData.Add(test);
            return Json(sampleData, JsonRequestBehavior.AllowGet);
        }</description>
		<content:encoded><![CDATA[<p>I hope this helps to get started.<br />
Jquery code:</p>
<p>    $(document).ready(function () {<br />
        var ajaxDataRenderer = function (url) {<br />
            var ret = null;<br />
            $.ajax({<br />
                // have to use synchronous here, else returns before data is fetched<br />
                async: false,<br />
                url: url,<br />
                dataType: &#8216;json&#8217;,<br />
                success: function (data) {<br />
                    ret = data;<br />
                }<br />
            });<br />
            return ret;<br />
        };<br />
        plot1 = $.jqplot(&#8216;chart&#8217;, &#8216;@Url.Action(&#8220;GetData&#8221;,&#8221;Home&#8221;)&#8217;,{<br />
                dataRenderer: ajaxDataRenderer<br />
            });<br />
    });</p>
<p>ASP code:</p>
<p>Using the first int as axis label an the second as value.<br />
Why the list sampleData because that’s the list with series</p>
<p> public ActionResult GetData()<br />
        {<br />
            List<object> sampleData = new List</object><object>();<br />
            int i = 1;<br />
            List</object><object> test = new List</object><object>();<br />
                test.Add(new List<int>(){1,1});<br />
                test.Add(new List</int><int>() { 1, 1 });<br />
                test.Add(new List</int><int>() { 2, 2 });<br />
                test.Add(new List</int><int>() { 3, 1 });<br />
                test.Add(new List</int><int>() { 4, 3 });<br />
                test.Add(new List</int><int>() { 5, 5 });</p>
<p>                sampleData.Add(test);<br />
            return Json(sampleData, JsonRequestBehavior.AllowGet);<br />
        }</int></object></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is that jQuery thing? by web development</title>
		<link>http://www.stevendewaele.be/?p=171#comment-60</link>
		<dc:creator>web development</dc:creator>
		<pubDate>Mon, 08 Aug 2011 10:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevendewaele.be/?p=171#comment-60</guid>
		<description>Exactly what&#039;s been looking for... thank you so much ...</description>
		<content:encoded><![CDATA[<p>Exactly what&#8217;s been looking for&#8230; thank you so much &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JqPlot: a very easy and good Charting jquery plugin by Ray</title>
		<link>http://www.stevendewaele.be/?p=147#comment-59</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Sun, 07 Aug 2011 22:12:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevendewaele.be/?p=147#comment-59</guid>
		<description>Thanks a lot for the help Steven, I&#039;m actually planning to use jqplot with .net MVC and having trouble feed json data into jqplot. Was wondering if you have any example made in .net? 

jqplot is awesome btw. Thanks for all the info.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the help Steven, I&#8217;m actually planning to use jqplot with .net MVC and having trouble feed json data into jqplot. Was wondering if you have any example made in .net? </p>
<p>jqplot is awesome btw. Thanks for all the info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JqPlot: a very easy and good Charting jquery plugin by Steven De Waele</title>
		<link>http://www.stevendewaele.be/?p=147#comment-57</link>
		<dc:creator>Steven De Waele</dc:creator>
		<pubDate>Sat, 06 Aug 2011 14:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevendewaele.be/?p=147#comment-57</guid>
		<description>Hey Ray,
I have some sample code but only for a bar chart. Therefore the best i can do is redirect you to the samples of jqPlot.
In the download package you find a folder examples,where you can find samples for all the types of chart and features jqPlot is supporting.
&lt;a href=&quot;https://bitbucket.org/cleonello/jqplot/downloads/jquery.jqplot.1.0.0b2_r792.zip&quot; rel=&quot;nofollow&quot;&gt;https://bitbucket.org/cleonello/jqplot/downloads/jquery.jqplot.1.0.0b2_r792.zip&lt;/a&gt;

In this package you find samples for highlighting data points, rotating axis labels, pie charts, bar charts, line charts and a lot more.

If you don&#039;t want to download the package in the &lt;a href=&quot;http://www.jqplot.com/tests/&quot; rel=&quot;nofollow&quot;&gt;demo page of jqPlot&lt;/a&gt;, the source code is included on the page.</description>
		<content:encoded><![CDATA[<p>Hey Ray,<br />
I have some sample code but only for a bar chart. Therefore the best i can do is redirect you to the samples of jqPlot.<br />
In the download package you find a folder examples,where you can find samples for all the types of chart and features jqPlot is supporting.<br />
<a href="https://bitbucket.org/cleonello/jqplot/downloads/jquery.jqplot.1.0.0b2_r792.zip" rel="nofollow">https://bitbucket.org/cleonello/jqplot/downloads/jquery.jqplot.1.0.0b2_r792.zip</a></p>
<p>In this package you find samples for highlighting data points, rotating axis labels, pie charts, bar charts, line charts and a lot more.</p>
<p>If you don&#8217;t want to download the package in the <a href="http://www.jqplot.com/tests/" rel="nofollow">demo page of jqPlot</a>, the source code is included on the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JqPlot: a very easy and good Charting jquery plugin by Ray</title>
		<link>http://www.stevendewaele.be/?p=147#comment-56</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Fri, 05 Aug 2011 03:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevendewaele.be/?p=147#comment-56</guid>
		<description>This looks amazing, have you got an example/sample code that could help me a bit more please?</description>
		<content:encoded><![CDATA[<p>This looks amazing, have you got an example/sample code that could help me a bit more please?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

