Using a RadGrid I'd like to raise a postback from the client side on the event RowDblClick.
My difficulty is to pass the DataKey value of the row who was raise by dbl click and should be pass as argument to the postback.
Thanks for help
My difficulty is to pass the DataKey value of the row who was raise by dbl click and should be pass as argument to the postback.
Thanks for help
<ClientSettings AllowKeyboardNavigation="true">
<ClientEvents OnRowDblClick="ctrlListeSejourGV_RowDblClick"/>
</ClientSettings>
function
ctrlListeSejourGV_RowDblClick(rowIndex){
var dataKeyValue = {....} <<< the code i'm looking for
_doPostBack(
"<%= ctrlListeSejourGV.UniqueID %>", "RowDblClick:" + dataKeyValue );
}
