WHY is it so difficult to find out how to EXPLICITLY set the skin of the calendar objects attached to dhxCalendar column type of a grid?
All I want to do is something like the below code. I know it is not correct, but you get the idea:
[code]var grdRates = new dhtmlXGridObject('dvRatesGrid');
grdRates.setColTypes("ed,dhxCalendar");
// More init code here...
// 'effectiveDate' equates to the 2nd column, set in init code above...
var effectiveDateColIndex = grdRates.getColIndexById('effectiveDate');
grdRates.forEachRow(function(row) {
grdRates.forEachCell(row, function(cell, cellIndex) {
if (cellIndex == effectiveDateColIndex) {
// I know this is wrong, but now that I have the cell object, now what?
cell.setSkin('light');
cell.setImagePath('../Images/');
}
})
});[/code]