<?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>DataTable Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/datatable/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/datatable/</link>
	<description>Code Solution</description>
	<lastBuildDate>Thu, 10 Feb 2022 12:03:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>DataTable Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/datatable/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To Create DataTable In Bootstrap</title>
		<link>https://codeplaners.com/how-to-create-datatable-in-bootstrap/</link>
					<comments>https://codeplaners.com/how-to-create-datatable-in-bootstrap/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 10 Feb 2022 12:03:23 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[DataTable]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1399</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you how to create DataTable in bootstrap. This article will give you simple example of how to create DataTable in bootstrap. you will how to create DataTable in bootstrap. In this article, we will implement a how to create DataTable in bootstrap. So let’s follow few step to &#8230; <a href="https://codeplaners.com/how-to-create-datatable-in-bootstrap/" class="more-link">Continue reading<span class="screen-reader-text"> "How To Create DataTable In Bootstrap"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-datatable-in-bootstrap/">How To Create DataTable In Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you how to create DataTable in bootstrap. This article will give you simple example of how to create DataTable in bootstrap. you will how to create DataTable in bootstrap. In this article, we will implement a how to create DataTable in bootstrap. </p>
<p>So let’s follow few step to create example of how to create DataTable in bootstrap.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" src="https://codeplaners.com/wp-content/uploads/2022/02/datatable.png" alt="How To Create DataTable In Bootstrap" ></p>
<h3 class="step_code">Example</h3>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;

&lt;head&gt;
	&lt;title&gt; How To Create DataTable In Bootstrap&lt;/title&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.css&quot; &gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.datatables.net/1.11.3/css/dataTables.bootstrap4.min.css&quot; &gt;
	
&lt;/head&gt;

&lt;body&gt;
   
	
    &lt;div class=&quot;container&quot; style=&quot;padding: 20px 0 0;&quot;&gt;
        &lt;table id=&quot;example&quot; class=&quot;table table-striped table-bordered&quot; style=&quot;width:100%&quot;&gt;
            &lt;thead&gt;
                &lt;tr&gt;
                    &lt;th&gt;Name&lt;/th&gt;
                    &lt;th&gt;Position&lt;/th&gt;
                    &lt;th&gt;Office&lt;/th&gt;
                    &lt;th&gt;Age&lt;/th&gt;
                    &lt;th&gt;Start date&lt;/th&gt;
                    &lt;th&gt;Salary&lt;/th&gt;
                &lt;/tr&gt;
            &lt;/thead&gt;
            &lt;tbody&gt;
                &lt;tr&gt;
                    &lt;td&gt;Tiger Nixon&lt;/td&gt;
                    &lt;td&gt;System Architect&lt;/td&gt;
                    &lt;td&gt;Edinburgh&lt;/td&gt;
                    &lt;td&gt;61&lt;/td&gt;
                    &lt;td&gt;2011/04/25&lt;/td&gt;
                    &lt;td&gt;$320,800&lt;/td&gt;
                &lt;/tr&gt;
                &lt;tr&gt;
                    &lt;td&gt;Garrett Winters&lt;/td&gt;
                    &lt;td&gt;Accountant&lt;/td&gt;
                    &lt;td&gt;Tokyo&lt;/td&gt;
                    &lt;td&gt;63&lt;/td&gt;
                    &lt;td&gt;2011/07/25&lt;/td&gt;
                    &lt;td&gt;$170,750&lt;/td&gt;
                &lt;/tr&gt;
                &lt;tr&gt;
                    &lt;td&gt;Ashton Cox&lt;/td&gt;
                    &lt;td&gt;Junior Technical Author&lt;/td&gt;
                    &lt;td&gt;San Francisco&lt;/td&gt;
                    &lt;td&gt;66&lt;/td&gt;
                    &lt;td&gt;2009/01/12&lt;/td&gt;
                    &lt;td&gt;$86,000&lt;/td&gt;
                &lt;/tr&gt;
               
            &lt;/tbody&gt;
            &lt;tfoot&gt;
                &lt;tr&gt;
                    &lt;th&gt;Name&lt;/th&gt;
                    &lt;th&gt;Position&lt;/th&gt;
                    &lt;th&gt;Office&lt;/th&gt;
                    &lt;th&gt;Age&lt;/th&gt;
                    &lt;th&gt;Start date&lt;/th&gt;
                    &lt;th&gt;Salary&lt;/th&gt;
                &lt;/tr&gt;
            &lt;/tfoot&gt;
        &lt;/table&gt;
    &lt;/div&gt;
    
	&lt;script src=&quot;https://code.jquery.com/jquery-3.5.1.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;https://cdn.datatables.net/1.11.3/js/dataTables.bootstrap4.min.js&quot;&gt;&lt;/script&gt;

	&lt;script&gt;

		$(document).ready(function() {
			$('#example').DataTable();
		} );
	&lt;/script&gt;

&lt;/body&gt;

&lt;/html&gt;


</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-datatable-in-bootstrap/">How To Create DataTable In Bootstrap</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-datatable-in-bootstrap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
