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
230
Row loses the values of the combos
posted

I have a grid with some columns showing combos with values. I set them with this code:

 column.ValueList.WebCombo = combo;

 

It works fine, but if I add two rows and select a value from the combo,  and next I delete the first row, the combos of the other row show the id, not the description.Does anybody know why this is happening?

 

Thanks.

  • 28464
    posted

    Hello,

    The issue you are experiencing seems familiar, I am pretty sure it is very similar to the one discussed here:

    http://forums.infragistics.com/forums/p/14206/52416.aspx

    Basically the idea is to explicitly set DataTextField / DataValueField of the respective combobox in order to get the results you want (and if possible, do it declaratively in the ASPX so that ASP.NET page lifecycle does not play role here). Still I do recommend going through the forum thread above and especially through Vince's suggestions - they will provide a lot of help, I am sure.

    HTH,