Skip to main content

ASPxClientGridViewCustomButtonEventArgs.visibleIndex Property

Gets the value that identifies the row whose custom button has been clicked.

Declaration

visibleIndex: number

Property Value

Type Description
number

The visible index of the row whose custom button has been clicked.

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