Hi,

I have an issue and stuck with it for quite sometime now. Can someone please guide me. I need to bind a onclick event to an anchor element dynamically, I checked the examples that Giuseppe's pointed out but still no luck. Let's say I have my html code like :

<td id="msg" class="revSubject highlight" style="text-align:left;" nowrap="">
<a href="#" data-source="lightstreamer" data-field="click" data-update="onclick">
<span><div data-source="lightstreamer" data-field="msg"></div></span>
</a>
</td>


In my js code I did set node types as well :
grid.setNodeTypes(["div","tr","a"]);

From my java adapter I'm send the click field :
map.put("click", "getCCSInboxMsgBody(109539,0,&quot;SysTrdInbox &quo t;return false;");

but still the event is not getting attached to the <a> element, I'm using DynaGrid with ADD command.