I started using Slickgrid recently but have not gotten in depth with it. I'm trying to connect it to my own MySQL database but I haven't gotten any luck doing so.
I want this for displaying purposes so all I need (for now) is to show up the data in the database into the Slickgrid.
Other than the connection to the database
var getDB = new ActiveXObject("ADODB.Connection") ;
var cntstring = "DSN=adsn;UID=root;PWD=1234";
getDB.Open(cntstring);
var rset = new ActiveXObject("ADODB.Recordset");
I don't know how to populate the rest to each cell in the Slickgrid.
Any help is greatly appreciated!