NEWBIE: Cannot get dhxCalendarA to work with dhxGrid

I am trying to get the Calendar Popup to work in my ASP.net page, but I keep getting the following error:

Here is my current code snippets relative to the dhtmlx parts:

Header









var mygrid;
function doInitGrid() {
mygrid = new dhtmlXGridObject(‘mygrid_container’);
mygrid.setImagePath(“codebase/imgs/”);
mygrid.setHeader(“ID,From,To”);
mygrid.setInitWidths(“75,200,200”);
mygrid.setColAlign(“center,center,center”);
//mygrid.setColTypes(“ro,ed,ed”);
mygrid.setColTypes(“ro,dhxCalendarA,dhxCalendarA”);
mygrid.setSkin(“light”);
mygrid.init();
}
function addRow() {
var newId = (new Date()).valueOf()
mygrid.addRow(newId, “”, mygrid.getRowsNum())
mygrid.selectRow(mygrid.getRowIndex(newId), false, false, true);
}
function removeRow() {
var selId = mygrid.getSelectedId()
mygrid.deleteRow(selId);
}

Body



Add Row
Remove Row

Any help our guidance would be greatly appreciated.

The error is as follows:
Error type: Configuration
Description: Incorrect cell type: dhxCalendarA

sorry I forgot this.

I figured it out…needed to include the excell library.

which of excells???

this is not enough?

Found that not enough. It needs:

and

let it help somebody!