<div dir="ltr"><div class="gmail_quote">On Mon, Jun 27, 2011 at 12:16 AM, Shaun Reich <span dir="ltr">&lt;<a href="mailto:predator106@gmail.com">predator106@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im"><br></div>
Okay, so if the data is laid out as you said, in the last example..how<br>
would I display that in the qml view? Since I need to display *both*<br>
the icon and the user&#39;s name in the model. Give me something concrete,<br>
please -- as you well know, the docs suck ;-)<br>
<div class="im"><br></div></blockquote><div>With the method you prefer, you can have something like:</div><div><br></div><div>model: mainEngineSource.keysForSource(&quot;userList&quot;)</div><div><br></div><div>Component {</div>
<div>    id: delegateItem</div><div><meta http-equiv="content-type" content="text/html; charset=utf-8">    Item {</div><div><meta http-equiv="content-type" content="text/html; charset=utf-8">        Image { source: mainEngineSource.data[&quot;userList&quot;][modelData][&quot;image&quot;] }</div>
<div><meta http-equiv="content-type" content="text/html; charset=utf-8">        Text { text: <meta http-equiv="content-type" content="text/html; charset=utf-8">mainEngineSource.data[&quot;userList&quot;][modelData][&quot;name&quot;] }</div>
<meta http-equiv="content-type" content="text/html; charset=utf-8"><meta http-equiv="content-type" content="text/html; charset=utf-8"><meta http-equiv="content-type" content="text/html; charset=utf-8"><div><meta http-equiv="content-type" content="text/html; charset=utf-8">    }</div>
<div><br></div><div>and assign delegate: delegateItem in the view.</div><div><br></div><div>Hope this helps.</div><div><br></div><div>Viranch</div><div><br></div></div></div>