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
20
Press Arrow Server Event ?
posted

Hi,

I am a new with Infragistics controls, and I have been searching for a while for a server event when i press de arrow button, this for refreshing the datasource with filtering rows on several columns based on the DisplayValue.

The company version of the product is 7.2.20072.61 so we can't workaround that problem just with properties, i think, any help will be appreciated.

 

Parents
No Data
Reply
  • 12333
    posted

    Hi,

    You may want to handle the following event to accomplish what you are looking for:

    In C#:

    protected void WebCombo1_SelectedRowChanged(

    object sender,

    Infragistics.WebUI.WebCombo.SelectedRowChangedEventArgs e)

    {

    Response.Write(e.Row.Cells[0].Value);

    }

     

    In this event, you can access the value of any cell of the Row that was selected, available through e.Row.

Children
No Data