Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
290
How to activate a row click in Infragistics V14.1 web data grid using VB .NET 2010
posted

We have a Web Data grid V14.1 in our VB .NET 2010 project. We want to get some information  in a new window based on the Web data grid Acitive row click. How to achieve this using VB .NET?

Regards

Parents
  • 71886
    Offline posted

    Hello,

    You can do that by handling the WebDataGrid's RowSelectionChanged server side event and get any cell value from the CurrentSelectedRows collection from the arguments of the event, like this:

        protected void WebDataGrid1_RowSelectionChanged(object sender, Infragistics.Web.UI.GridControls.SelectedRowEventArgs e)
        {
            e.CurrentSelectedRows[0].Items[0].Value
        }

    I have attached a sample demonstrating this.

    WDGGetSelRowVal.zip
Reply Children