Hi,
I am masking the grid values using
aspGrid.setNumberFormat(“0,000.00”, i, “.”, “,”);
but actually i have values which i got from db dataset is highly precised values.
Now i want to get the original values on onCellchanged event as below:
function asp_handler(rId, cInd, nValue) {//define handler
alert(aspGrid.cells(rId, cInd).getValue());
}
but its still giving me the same values which are dispalyed i.e., values after masking
how can i get the original values?