Skip to main content
A newer version of this page is available. .

ASPxClientGridViewCustomButtonEventArgs.buttonID Property

Gets the value that identifies the custom button.

Declaration

buttonID: string

Property Value

Type Description
string

Identifies the clicked custom button.

Remarks

<dx:ASPxGridView ID="ASPxGridView1" runat="server" ClientInstanceName="gridView">
    <ClientSideEvents CustomButtonClick="grid_CustomButtonClick" />  
    <Columns>  
        <dx:GridViewCommandColumn VisibleIndex="0" Width="100px">  
            <CustomButtons>  
                <dx:GridViewCommandColumnCustomButton Text="Show New Window" ID="ShowNewWindow">  
                </dx:GridViewCommandColumnCustomButton>  
            </CustomButtons>  
        </dx:GridViewCommandColumn>  
        ...
    </Columns>  
</dx:ASPxGridView>
See Also