assumming store data is
{ // parameters used to initialize the data store
"data": [{
"id": 100,
"description": "li id100",
},
{
"id": 101,
"description": "li id101",
},
{
"id": 102,
"description": "li id102",
}],
"idProperty":"id"
}
will produce dom nodes with id equal to value id from jsonrest store
`
li id100
li id101
li id102
`
I was expecting id to be dynamic based on registry db like:
id="dojox_mobile_ListItem_0"
`
Adding request_id to avoid dom id duplicates https://github.com/csantanapr/dapp-examples/blob/master/dapp-request/src/app/views/list/list.js#L32
doing something like this
<ul data-dojo-type="dojox/mobile/EdgeToEdgeStoreList" data-dojo-props="store: this.loadedStores.requests,itemMap:{description:'label'}"> </ul>
assumming store data is { // parameters used to initialize the data store "data": [{ "id": 100, "description": "li id100", }, { "id": 101, "description": "li id101", }, { "id": 102, "description": "li id102", }], "idProperty":"id" } will produce dom nodes with id equal to value id from jsonrest store
`
I was expecting id to be dynamic based on registry db like: id="dojox_mobile_ListItem_0" `