Opened 9 years ago
Closed 9 years ago
#15009 closed defect (fixed)
Dojox StatefulModel getStateful
Reported by: | Matej | Owned by: | Ed Chatelain |
---|---|---|---|
Priority: | undecided | Milestone: | 1.8 |
Component: | DojoX MVC | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
When I use dojox/mvc/getStateful modul with object var obj = {
prop1 : "String", prop2 : 10, prop3 : undefined, check this prop4 : null check this };
IE7 has different result. The problem is with prop3 and prop4 where is no value. See attached example and console.log in IE and Chrome.
Attachments (3)
Change History (8)
Changed 9 years ago by
Attachment: | statefulmodel.html added |
---|
comment:1 Changed 9 years ago by
use trunk version or download StatefulArray?.js and getStateful.js
http://svn.dojotoolkit.org/src/dojox/trunk/mvc/StatefulArray.js http://svn.dojotoolkit.org/src/dojox/trunk/mvc/getStateful.js
IE9 / IE 8 result
prop1 : "String", prop2 : 10, prop3 : undefined, prop4 : null,
IE7 result
prop1 : "String", prop2 : 10, prop3 : [object Object], prop4 : [object Object],
please fix it.
comment:3 Changed 9 years ago by
Milestone: | tbd → 1.8 |
---|---|
Status: | new → assigned |
comment:4 Changed 9 years ago by
The fix was made by #14681, the fix works, but I am going to be tweaking it a little, so I will close this out after those updates are in.
Changed 9 years ago by
Attachment: | 15009-tweak.patch added |
---|
This patch has the tweak to the fix which went into 14681, and fix for 15011
example