jqgrid - IE中的空单元未定义问题

时间:2011-05-16 09:44:15

标签: jquery jqgrid

我使用以下代码在jqgrid中为单元格格式化日期。

function formateDate(cellvalue, options, rowObject) {
if(cellvalue!=undefined)
    return changeDateFormat(cellvalue);
else
    return ' ';}

并使用formatter:formateDate作为colmodel的选项。

在firefox中为空单元格显示空值,但在IE中它显示undefined//undefined作为其值。

如何删除此值并在该单元格中放置空格。??

谢谢, 和Sandeep

1 个答案:

答案 0 :(得分:0)

尝试使用typeof:

function formateDate(cellvalue, options, rowObject) {
if(typeof(cellvalue)!='undefined')
    return changeDateFormat(cellvalue);
else
    return ' ';}