Occurs on the client when the editor's item is double clicked.
ItemDoubleClick: ASPxClientEvent<ASPxClientEventHandler<ASPxClientListBox>>
The ItemDoubleClick event handler receives an argument of the ASPxClientEventArgs type.
The ItemDoubleClick event allows you to react to a double click on an item. Note that the ItemDoubleClick event was created for internal use only, so it is not displayed in IntelliSense or the client-side event editor. If you wish to handle this event, subscribe to it in code behind.
protected void Page_Load(object sender, EventArgs e) {
ASPxListBox1.ClientSideEvents.ItemDoubleClick = "function(s,e) {alert('OK');}";
}
Protected Sub Page_Load(sender As Object, e As EventArgs)
ASPxListBox1.ClientSideEvents.ItemDoubleClick = "function(s,e) {alert('OK');}"
End Sub
Or manually write the event handler in markup:
<dx:ASPxListBox ID="ASPxListBox1" runat="server">
...
<ClientSideEvents ItemDoubleClick="function(s, e) {alert('OK');}" />
</dx:ASPxListBox>
The ItemDoubleClick does not work if the ASPxListBox.Native property is enabled, except in Internet Explorer.