You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
496 B
25 lines
496 B
define(["dojox/mvc/getStateful"], function(getStateful){ |
|
// module: |
|
// dojox/mvc/tests/mobile/demo/MobileDemoContactModel |
|
// summary: |
|
// The data model of contact info for this demo. |
|
|
|
return getStateful({ |
|
Serial: "360324", |
|
First: "John", |
|
Last: "Doe", |
|
Email: "jdoe@us.ibm.com", |
|
ShipTo: { |
|
Street: "123 Valley Rd", |
|
City: "Katonah", |
|
State: "NY", |
|
Zip: "10536" |
|
}, |
|
BillTo: { |
|
Street: "17 Skyline Dr", |
|
City: "Hawthorne", |
|
State: "NY", |
|
Zip: "10532" |
|
} |
|
}); |
|
});
|
|
|