-
Notifications
You must be signed in to change notification settings - Fork 350
Closed
Labels
Description
It seems sometimes your resolve method returns a char array in IE8/9, which causes problems (error: Unable to get property 'ownerDocument' of undefined or null reference)
https://github.com/rstaib/jquery-bootgrid/blob/master/src/extensions.js#L74
Adding toString() to this line seems to fix it, but I don't know if that will break anything else?
if (typeof value === "object")
{
var keys = (prefixes) ? $.extend([], prefixes) : [];
keys.push(key);
result = result.resolve(value, keys).toString();
}Reactions are currently unavailable