**** BEGIN LOGGING AT Thu May 09 02:59:58 2013 May 09 16:04:04 I am using a List in which are multiple Kinds that have a textarea populated with data. I'd like to be able to PUT that data back to a RESTful webservice but the textareas all end up with the same id attribute May 09 16:04:22 is there a proper way to give these individual id's? May 09 16:57:07 pmarsh: that's how enyo.List works. If you have a small number of items, you can use an enyo.Repeater instead and have access to each individual element. With enyo.List, you might try the renderRow() method and pass it the index of the row you need to process and it will be the "active" element and allow you to access its data May 09 16:57:40 or is it prepareRow()…one of those, check the source/API May 09 17:00:08 ok thanks May 09 17:04:08 prepareRow() starts modification of the internals May 09 17:04:54 or, actually, you probably want performOnRow() if you're in 2.2 May 09 17:05:06 it'll run a function on a given row, and return results May 09 17:05:10 yeah, that's the one May 09 17:05:19 pmarsh: ^^^ May 09 17:05:26 err... sorry, not returns results, but you know May 09 17:06:42 thanks we're giving it a try now May 09 17:35:30 performOnRow? that sounds interesting May 09 17:43:34 ok interesting we changed it to use a Repeater May 09 17:44:03 and the