you should be getting
Uncaught TypeError: Cannot read property 'toString' of null
in your browser console
this is actually fixed in dev version
but for now you need to make sure that ShowLocation func doesn't return null, so it could look like this:
Uncaught TypeError: Cannot read property 'toString' of null
in your browser console
this is actually fixed in dev version
but for now you need to make sure that ShowLocation func doesn't return null, so it could look like this:
function ShowLocation(model) {
return model.Location || '';
}