Is there a way to make kendo.observable set up non enumerable properties from the object you give it? For example:
var someObject = {};
someObject.x = 5;
Object.defineProperty(someObject, "someString", {
enumerable: false,
configurable: false,
writable: true
});
someObject.someString = "This is the base";
var foo = kendo.observable(someObject)
"x" in foo; //true
"someString" in someObject; //true
"someString" in foo; //false, but I want this to be true