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
170
how can I have an ultradropdown with different list in different rows?
posted

We set the valuelist of a column to an ultradropdown, and bind the data source of the ultradropdown via setdatabinding().  Each dropdown in each row in the grid will have the same list.  If I try to plug a list on a given row (even the cell's valuelistresolved) it changes the list in the dropdown on each other row.  How can I populate the dropdowns on different rows with different items?

Parents
  • 469350
    Verified Answer
    Offline posted

    If you set the ValueList property of a cell, it does not affect any other cell. If this is happening, then something else is going on in your code that is causing it.

    Typically, if you are going to assign a ValueList to the cell, you would do so in the BeforeCellActivate or InitializeRow event of the grid - or maybe both. It depends on the behavior you want.  

Reply Children