{"id":1899,"date":"2017-08-04T13:21:07","date_gmt":"2017-08-04T07:51:07","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=1899"},"modified":"2017-12-26T10:50:03","modified_gmt":"2017-12-26T05:20:03","slug":"dynamic-column-header-result-ajax-call-jquery-datatable","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/","title":{"rendered":"dynamic column header and result from ajax call in jquery datatable"},"content":{"rendered":"<p><strong>Posted Date:04-08-2017<\/strong><\/p>\n<p>In this post we will explain dynamic column header and result from ajax call in jquery datatable<\/p>\n<p>&nbsp;<\/p>\n<p>Step 1: Include jQuery \u00a0Plugin and css<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;link rel=\"stylesheet\" type=\"text\/css\" href=\"http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/css\/jquery.dataTables.css\"&gt;\r\n\r\n&lt;source  src=\"http:\/\/code.jquery.com\/jquery-2.2.4.min.js\"\r\n  integrity=\"sha256-BbhdlvQf\/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=\"\r\n  crossorigin=\"anonymous\"&gt;&lt;\/source&gt;\r\n   &lt;source type=\"text\/javascript\" charset=\"utf8\" src=\"https:\/\/cdn.datatables.net\/1.10.15\/js\/jquery.dataTables.min.js\"&gt;&lt;\/source&gt;<\/pre>\n<p>Step 2: Add the following script for data table initialization with ajax call<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;source&gt;\r\n\r\n    $( document ).ready( function( $ ) {\r\n        $.ajax({\r\n                \"url\": 'arrays.txt',\r\n                success: function(json) {\r\n                 \r\n                    var tableHeaders='';\r\n                    $.each(json.columns, function(i, val){\r\n                        \/\/ console.log(val);\r\n                        tableHeaders += \"&lt;th&gt;\" + val + \"&lt;\/th&gt;\";\r\n                    });\r\n                     console.log(tableHeaders);\r\n                    $(\"#tableDiv\").empty();\r\n                    $(\"#tableDiv\").append('&lt;table id=\"displayTable\" class=\"display\" cellspacing=\"0\" width=\"100%\"&gt;&lt;thead&gt;&lt;tr&gt;' + tableHeaders + '&lt;\/tr&gt;&lt;\/thead&gt;&lt;\/table&gt;');\r\n                    \/\/$(\"#tableDiv\").find(\"table thead tr\").append(tableHeaders);  \r\n                     \r\n                    $('#displayTable').dataTable(json);\r\n                },\r\n                \"dataType\": \"json\"\r\n            });\r\n    });\r\n&lt;\/source&gt;<\/pre>\n<p>Step 3:Inside body tag write the following code<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\"><div id=\"tableDiv\"><\/div><\/pre>\n<p>Step 3:Create one text file name as\u00a0arrays.txt add the following code<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">{\r\n\"columns\": [\r\n        [ \"Name\" ],\r\n        [ \"Position\" ],\r\n        [ \"Office\" ],\r\n        [ \"Extn.\" ],\r\n        [ \"Start date\" ],\r\n        [ \"Salary\" ]\r\n    ],\r\n  \"data\": [\r\n    [\r\n      \"Tiger Nixon\",\r\n      \"System Architect\",\r\n      \"Edinburgh\",\r\n      \"5421\",\r\n      \"2011\/04\/25\",\r\n      \"$320,800\"\r\n    ],\r\n    [\r\n      \"Garrett Winters\",\r\n      \"Accountant\",\r\n      \"Tokyo\",\r\n      \"8422\",\r\n      \"2011\/07\/25\",\r\n      \"$170,750\"\r\n    ],\r\n    [\r\n      \"Ashton Cox\",\r\n      \"Junior Technical Author\",\r\n      \"San Francisco\",\r\n      \"1562\",\r\n      \"2009\/01\/12\",\r\n      \"$86,000\"\r\n    ],\r\n    [\r\n      \"Cedric Kelly\",\r\n      \"Senior Javascript Developer\",\r\n      \"Edinburgh\",\r\n      \"6224\",\r\n      \"2012\/03\/29\",\r\n      \"$433,060\"\r\n    ],\r\n    [\r\n      \"Airi Satou\",\r\n      \"Accountant\",\r\n      \"Tokyo\",\r\n      \"5407\",\r\n      \"2008\/11\/28\",\r\n      \"$162,700\"\r\n    ],\r\n    [\r\n      \"Brielle Williamson\",\r\n      \"Integration Specialist\",\r\n      \"New York\",\r\n      \"4804\",\r\n      \"2012\/12\/02\",\r\n      \"$372,000\"\r\n    ],\r\n    [\r\n      \"Herrod Chandler\",\r\n      \"Sales Assistant\",\r\n      \"San Francisco\",\r\n      \"9608\",\r\n      \"2012\/08\/06\",\r\n      \"$137,500\"\r\n    ],\r\n    [\r\n      \"Rhona Davidson\",\r\n      \"Integration Specialist\",\r\n      \"Tokyo\",\r\n      \"6200\",\r\n      \"2010\/10\/14\",\r\n      \"$327,900\"\r\n    ],\r\n    [\r\n      \"Colleen Hurst\",\r\n      \"Javascript Developer\",\r\n      \"San Francisco\",\r\n      \"2360\",\r\n      \"2009\/09\/15\",\r\n      \"$205,500\"\r\n    ]\r\n  ]\r\n}<\/pre>\n<p>If you are following above step you will get code following code<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n    &lt;title&gt;Data Table&lt;\/title&gt;\r\n    &lt;!-- DataTables CSS --&gt;\r\n&lt;link rel=\"stylesheet\" type=\"text\/css\" href=\"http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/css\/jquery.dataTables.css\"&gt;\r\n\r\n&lt;source  src=\"http:\/\/code.jquery.com\/jquery-2.2.4.min.js\"\r\n  integrity=\"sha256-BbhdlvQf\/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=\"\r\n  crossorigin=\"anonymous\"&gt;&lt;\/source&gt;\r\n   &lt;source type=\"text\/javascript\" charset=\"utf8\" src=\"https:\/\/cdn.datatables.net\/1.10.15\/js\/jquery.dataTables.min.js\"&gt;&lt;\/source&gt;\r\n&lt;source&gt;\r\n\r\n    $( document ).ready( function( $ ) {\r\n        $.ajax({\r\n                \"url\": 'arrays.txt',\r\n                success: function(json) {\r\n                 \r\n                    var tableHeaders='';\r\n                    $.each(json.columns, function(i, val){\r\n                        \/\/ console.log(val);\r\n                        tableHeaders += \"&lt;th&gt;\" + val + \"&lt;\/th&gt;\";\r\n                    });\r\n                     console.log(tableHeaders);\r\n                    $(\"#tableDiv\").empty();\r\n                    $(\"#tableDiv\").append('&lt;table id=\"displayTable\" class=\"display\" cellspacing=\"0\" width=\"100%\"&gt;&lt;thead&gt;&lt;tr&gt;' + tableHeaders + '&lt;\/tr&gt;&lt;\/thead&gt;&lt;\/table&gt;');\r\n                    \/\/$(\"#tableDiv\").find(\"table thead tr\").append(tableHeaders);  \r\n                     \r\n                    $('#displayTable').dataTable(json);\r\n                },\r\n                \"dataType\": \"json\"\r\n            });\r\n    });\r\n&lt;\/source&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n <div id=\"tableDiv\"><\/div>\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p><strong>DEMO:<\/strong>\u00a0http:\/\/demo.pheonixsolutions.com\/php\/datatable-ajax\/dynamic-column-header.php<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Posted Date:04-08-2017 In this post we will explain dynamic column header and result from ajax call in jquery datatable &nbsp; Step 1: Include jQuery \u00a0Plugin and css &lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text\/css&#8221; href=&#8221;http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/css\/jquery.dataTables.css&#8221;&gt; &lt;source src=&#8221;http:\/\/code.jquery.com\/jquery-2.2.4.min.js&#8221; integrity=&#8221;sha256-BbhdlvQf\/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=&#8221; crossorigin=&#8221;anonymous&#8221;&gt;&lt;\/source&gt; &lt;source type=&#8221;text\/javascript&#8221; charset=&#8221;utf8&#8243; src=&#8221;https:\/\/cdn.datatables.net\/1.10.15\/js\/jquery.dataTables.min.js&#8221;&gt;&lt;\/source&gt; Step 2: Add the following script for data table initialization with&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">dynamic column header and result from ajax call in jquery datatable<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[351,287,352,357],"tags":[179,273],"class_list":{"0":"post-1899","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-javascript","7":"category-javascriptjquery","8":"category-jquery","9":"category-php-windows-server","10":"tag-mysql-2","11":"tag-php","12":"h-entry","14":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Posted Date:04-08-2017 In this post we will explain dynamic column header and result from ajax call in jquery datatable &nbsp; Step 1: Include jQuery \u00a0Plugin and css &lt;link rel=&quot;stylesheet&quot; type=&quot;text\/css&quot; href=&quot;http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/css\/jquery.dataTables.css&quot;&gt; &lt;source src=&quot;http:\/\/code.jquery.com\/jquery-2.2.4.min.js&quot; integrity=&quot;sha256-BbhdlvQf\/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;\/source&gt; &lt;source type=&quot;text\/javascript&quot; charset=&quot;utf8&quot; src=&quot;https:\/\/cdn.datatables.net\/1.10.15\/js\/jquery.dataTables.min.js&quot;&gt;&lt;\/source&gt; Step 2: Add the following script for data table initialization with&hellip; Continue Reading dynamic column header and result from ajax call in jquery datatable\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-08-04T07:51:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-26T05:20:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"dynamic column header and result from ajax call in jquery datatable\",\"datePublished\":\"2017-08-04T07:51:07+00:00\",\"dateModified\":\"2017-12-26T05:20:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/\"},\"wordCount\":93,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"mysql\",\"php\"],\"articleSection\":[\"Javascript\",\"Javascript\\\/jquery\",\"Jquery\",\"PHP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-08-04T07:51:07+00:00\",\"dateModified\":\"2017-12-26T05:20:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/dynamic-column-header-result-ajax-call-jquery-datatable\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"dynamic column header and result from ajax call in jquery datatable\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Posted Date:04-08-2017 In this post we will explain dynamic column header and result from ajax call in jquery datatable &nbsp; Step 1: Include jQuery \u00a0Plugin and css &lt;link rel=\"stylesheet\" type=\"text\/css\" href=\"http:\/\/ajax.aspnetcdn.com\/ajax\/jquery.dataTables\/1.9.4\/css\/jquery.dataTables.css\"&gt; &lt;source src=\"http:\/\/code.jquery.com\/jquery-2.2.4.min.js\" integrity=\"sha256-BbhdlvQf\/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=\" crossorigin=\"anonymous\"&gt;&lt;\/source&gt; &lt;source type=\"text\/javascript\" charset=\"utf8\" src=\"https:\/\/cdn.datatables.net\/1.10.15\/js\/jquery.dataTables.min.js\"&gt;&lt;\/source&gt; Step 2: Add the following script for data table initialization with&hellip; Continue Reading dynamic column header and result from ajax call in jquery datatable","og_url":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-08-04T07:51:07+00:00","article_modified_time":"2017-12-26T05:20:03+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"dynamic column header and result from ajax call in jquery datatable","datePublished":"2017-08-04T07:51:07+00:00","dateModified":"2017-12-26T05:20:03+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/"},"wordCount":93,"commentCount":3,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["mysql","php"],"articleSection":["Javascript","Javascript\/jquery","Jquery","PHP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/","url":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2017-08-04T07:51:07+00:00","dateModified":"2017-12-26T05:20:03+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/dynamic-column-header-result-ajax-call-jquery-datatable\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"dynamic column header and result from ajax call in jquery datatable"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-uD","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1899","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=1899"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1899\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1899"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1899"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}