Can you provide guidance on how to utilize this format?
var dataSet = [
['Trident', 'Internet Explorer 4.0', 'Win 95+', '4', 'X']
];
I am looking for assistance in applying this format either on the server side or using JavaScript. Any help would be greatly appreciated.
public ActionResult GetModuls()
{
var model = BLcontext.GetModuls();
return Json(new { data = model }, JsonRequestBehavior.AllowGet);
}