Editable ObjectListhttp://forums.asp.net/t/1569056.aspx/1?Editable+ObjectListTue, 15 Jun 2010 09:54:49 -040015690563927464http://forums.asp.net/p/1569056/3927464.aspx/1?Editable+ObjectListEditable ObjectList <p>Hello All,</p> <p>I need some help on how to make my items on the mobile object list editable. Please see code sample snippet below for my object list:</p> <p><br> </p> <pre class="prettyprint">&lt;mobile:ObjectList Runat=&quot;server&quot; ID=&quot;ObjListSample&quot; ItemsPerPage=&quot;10&quot;&gt; &lt;DeviceSpecific ID=&quot;DsSample&quot; Runat=&quot;server&quot;&gt; &lt;Choice Filter=&quot;isHTML32&quot;&gt; &lt;HeaderTemplate&gt; &lt;table style=&quot;font-size: 10pt&quot;&gt; &lt;tr style=&quot;font-weight: bold;&quot;&gt; &lt;td&gt;Last Name&lt;/td&gt; &lt;td&gt;First Name&lt;/td&gt; &lt;td&gt;Status&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/HeaderTemplate&gt; &lt;ItemTemplate&gt; &lt;tr&gt; &lt;td&gt;&lt;%# Eval(&quot;LastName&quot;)%&gt;&lt;/td&gt; &lt;td&gt;&lt;%# Eval(&quot;FirstName&quot;)%&gt;&lt;/td&gt; &lt;td&gt;&lt;%# Eval(&quot;Status&quot;)%&gt;&lt;/td&gt; &lt;td&gt;EDIT&lt;/td&gt; &lt;/tr&gt; &lt;/ItemTemplate&gt; &lt;AlternatingItemTemplate&gt; &lt;tr style=&quot;background-color: #ccc&quot;&gt; &lt;td&gt;&lt;%# Eval(&quot;LastName&quot;)%&gt;&lt;/td&gt; &lt;td&gt;&lt;%# Eval(&quot;FirstName&quot;)%&gt;&lt;/td&gt; &lt;td&gt;&lt;%# Eval(&quot;Status&quot;)%&gt;&lt;/td&gt; &lt;td&gt;EDIT&lt;/td&gt; &lt;/tr&gt; &lt;/AlternatingItemTemplate&gt; &lt;FooterTemplate&gt; &lt;/table&gt; &lt;/FooterTemplate&gt; &lt;/Choice&gt; &lt;/DeviceSpecific&gt; &lt;/mobile:ObjectList&gt;</pre> <p><br> I know it can be editable using the &lt;Command&gt; tag under the object list and by putting ItemCommand on it but I think it is only applicable when not using templates like the above sample correct me if I am wrong.</p> <p><br> </p> <p>Thanks in advance!</p> <p><br> </p> <p><br> </p> <p><br> </p> 2010-06-15T09:54:49-04:00