Is there any reason that itemDoubleClick would not produce an event ?
I'm trying this itemDoubleClick="evtHandler(event)", but the function doesn't
get called. The code for this list is below (but I don't have the
itemdoubleclick in there now)
(ProjectList is an *.as file that overrides List just so that I could have the
custom event for the checkbox)
<mycomp:ProjectList
labelField="name"
itemClick="OnItemClick(event)"
x="8" y="30"
width="263" height="313"
id="projectList"
itemRenderer="EditableTask"
dataProvider="{projectListAC}"
clickTaskCheckBox="clickTaskCheckBoxHandler(event)"/>
-Steve