jquery - How to Bind JQueryDataTable on Ajax call -


i want bind jquerydatatable on 1 jquerydatatable's column click on same page ajax.here code of both jquerydatatables. , @ start want 2nd table display "no data" untill first table's column click.please guide me enter image description here

<script type="text/javascript">     $(function () {          function drawtable() {             var props = null;             binddatatable({ allowpaging: true, showfilter: false, showeditlink: true, emptytabletext: 'no data found', sortindex: 0, sortdirection: "asc" },                               "#tblqueues",                               "@url.action("getallqueues", "queue")",                               props,                               [{ name: "id", cellclass: "aligncenter", sortable: true, index: 0 }, { }],                               [{ name: "id", type: "anchor", title: 'queuetable', displaypropname: 'name', viewtitle: 'view', link: '@url.action("queuetickets", "queue")', index: 0 }]);         }          drawtable();      });      </script> 


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -