<?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>jqx data adapter &#8211; Sibeesh Passion</title>
	<atom:link href="https://www.sibeeshpassion.com/tag/jqx-data-adapter/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Mon, 27 Jul 2015 04:49:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>jqx data adapter &#8211; Sibeesh Passion</title>
	<link>https://www.sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Assign New Data Source To JQWidgets JQX Grid</title>
		<link>https://www.sibeeshpassion.com/assign-new-data-source-to-jqwidgets-jqx-grid/</link>
					<comments>https://www.sibeeshpassion.com/assign-new-data-source-to-jqwidgets-jqx-grid/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Fri, 24 Jul 2015 10:54:48 +0000</pubDate>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JQWidgets]]></category>
		<category><![CDATA[JQX Grid]]></category>
		<category><![CDATA[jqx data adapter]]></category>
		<category><![CDATA[JQX Datasource]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=7871</guid>

					<description><![CDATA[In this post, we will see how we can assign a new data source to JQWidgets JQX Grid. I hope you will like it. Using The Code [js] var dataAdapter = new $.jqx.dataAdapter(source); $(&#34;#jqxgrid&#34;).jqxGrid({ source: dataAdapter }); [/js] Here jqxgrid is the ID of the div element in which we bind grid. source is our new data source. Please see other code snippets here: Code-Snippets Kindest Regards Sibeesh Venu]]></description>
										<content:encoded><![CDATA[<p>In this post, we will see how we can assign a new data source to JQWidgets JQX Grid. I hope you will like it.</p>
<p><strong>Using The Code</strong></p>
<p>[js]<br />
      var dataAdapter = new $.jqx.dataAdapter(source);<br />
      $(&quot;#jqxgrid&quot;).jqxGrid({ source: dataAdapter });</p>
<p>[/js]</p>
<p>Here <em>jqxgrid</em> is the ID of the div element in which we bind grid.<br />
<em>source</em> is our new data source.</p>
<p>Please see other code snippets here: <a href="http://sibeeshpassion.com/category/code-snippets/" target="_blank">Code-Snippets</a></p>
<p>Kindest Regards<br />
Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/assign-new-data-source-to-jqwidgets-jqx-grid/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Filter parameters are always null in server side paging in JQWidget JQX Grid. Why?</title>
		<link>https://www.sibeeshpassion.com/filter-parameters-are-always-null-in-server-side-paging/</link>
					<comments>https://www.sibeeshpassion.com/filter-parameters-are-always-null-in-server-side-paging/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Mon, 29 Jun 2015 10:25:20 +0000</pubDate>
				<category><![CDATA[JQWidgets]]></category>
		<category><![CDATA[JQX Grid]]></category>
		<category><![CDATA[Q&A]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[filter parameters]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[jqx data adapter]]></category>
		<category><![CDATA[jqx extend data]]></category>
		<category><![CDATA[jqx source]]></category>
		<category><![CDATA[server side paging]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=5491</guid>

					<description><![CDATA[Hi All, Hi I am working on JQX JQWidget grid. Now I am facing an issue with that. My Filter parameters are always null in server side paging. My call is getting to the controller, but the filter values are not getting. Following is my implementation of source and data adapter object. [js] var source = { datafields: DataFields, datatype: &#34;json&#34;, url: &#8216;../Widget/GetGridData/&#8217;, sort: function () { $(&#34;#advancedgrid&#34;).jqxGrid(&#8216;updatebounddata&#8217;, &#8216;sort&#8217;); }, filter: function () { $(&#34;#advancedgrid&#34;).jqxGrid(&#8216;updatebounddata&#8217;, &#8216;filter&#8217;); }, beforeprocessing: function (data) { source.totalrecords = varDataCount; } }; var dataAdapter = new $.jqx.dataAdapter(source, { loadComplete: function (data) { var length = dataAdapter.records.length; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Hi All,<br />
Hi I am working on JQX JQWidget grid. Now I am facing an issue with that. My Filter parameters are always null in server side paging. My call is getting to the controller, but the filter values are not getting. Following is my implementation of source and data adapter object.</p>
<p>[js]<br />
var source =<br />
                          {<br />
                              datafields: DataFields,<br />
                              datatype: &quot;json&quot;,<br />
                              url: &#8216;../Widget/GetGridData/&#8217;,<br />
                              sort: function () {<br />
                                  $(&quot;#advancedgrid&quot;).jqxGrid(&#8216;updatebounddata&#8217;, &#8216;sort&#8217;);<br />
                              },<br />
                              filter: function () {<br />
                                  $(&quot;#advancedgrid&quot;).jqxGrid(&#8216;updatebounddata&#8217;, &#8216;filter&#8217;);<br />
                              },<br />
                              beforeprocessing: function (data) {<br />
                                  source.totalrecords = varDataCount;<br />
                              }<br />
                          };<br />
            var dataAdapter = new $.jqx.dataAdapter(source, {<br />
                loadComplete: function (data) {<br />
                    var length = dataAdapter.records.length;<br />
                },<br />
                loadError: function (jqXHR, status, error) {<br />
                    var test = status;<br />
                    console.log(test);<br />
                },<br />
                downloadComplete: function (data, status, xhr) {<br />
                    debugger;<br />
                    return jQuery.parseJSON(data);<br />
                },<br />
                formatData: function (data) {<br />
                    $.extend(data, {<br />
                        selectedColumn: selectedColumn,<br />
                        selectedRow: selectedRow,<br />
                        selectedMeasures: selectedMeasures,<br />
                        serverName: serverName,<br />
                        databaseName: databaseName,<br />
                        cubeName: cubeName,<br />
                        queryTemplate: QueryTemplate,<br />
                        chartMode: ChartMode,<br />
                        chartType: chartType<br />
                    });<br />
                    return data;<br />
                }<br />
            });<br />
[/js]</p>
<p>Please help me. Thanks in advance.</p>
<p>Kindest Regards<br />
Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sibeeshpassion.com/filter-parameters-are-always-null-in-server-side-paging/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
