function checkIsNull(value){
if(typeof value=='undefined'){
return true;
}
if(value==null){
return true;
}
if (value.replace(/(^\s+)|(\s+$)/g,"").length ==0)
{
return true;
}
return false;
}
function checkIsNull(value){
if(typeof value=='undefined'){
return true;
}
if(value==null){
return true;
}
if (value.replace(/(^\s+)|(\s+$)/g,"").length ==0)
{
return true;
}
return false;
}