Hello all I am having a stored procedure which will give dynamic result as here, what I need is I would like to display that result in a jquery Datatable, the result will be changed based on the dates. So what I need is I would like to display that data as it is with the columns that are getting from procedure.
http://sqlfiddle.com/#!18/5167d/2

Sankara Krishnan VenugopalPosted Apr 30, 2018, 2:12 AM
Get the values from Json/looping in JQuery, then store it in local variable. Once the process is done append it into JQuery control or variable.
Var storeValue="";
for (var i=0; i < oData.length ;i++){
storeValue = storeValue + oData[i][0];
}
alert(storeValue);
Hope this helps!
kalai vananPosted Mar 6, 2018, 4:55 AM
Dorababu MekaPosted Mar 5, 2018, 10:46 AM
Suraj KumarPosted Mar 3, 2018, 2:40 AM