sorry for interrupting again ;)
A very good read on this topic is this chapter here:
http://books.google.de/books?id=6TAODdEIxrgC&lpg=PP1&hl=de&pg=PA33#v=onepage&q&f=false
of the "Java Script - The definitive guide" ( *the* Book on JavaScript) Pages
33 and 34.
On 6/27/2013 9:10 AM Peter Schne
...like Derrell said, the value you are setting is not 'NULL'.
Here some examples how to create some (not-null) values:
var x = 1/0; // => x is Infinity
var x = -1/0; // => x is -Infinity
var x = 0/0; // => x is NaN (Not A Number)
var x; // => x is undefined
var x = null; // =>
On Wed, Jun 26, 2013 at 1:43 PM, Vladimir Lipets wrote:
> Hello,
>
> I faced following problem.
> I defined the property "myvalue" as follows:
>
> myvalue: {
> check : "Integer",
> nullable : true,
>
Hello,
I faced following problem.
I defined the property "myvalue" as follows:
myvalue: {
check : "Integer",
nullable : true,
init : null,