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
0
IgbMultiColumnComboBox SelectedValueChanged?
posted

What is the definition for SelectValueChanged?

<IgbMultiColumnComboBox @ref="ddCourseStatus" Width="150px"
DataSource="@dropdownData" ColumnHeadersVisible="false" ShowClearButton="false"
Fields="@(new string[]{ "status_desc" })"
TextField="status_desc" Label="Course Status"
Value=@ComboValue
SelectedValueChanged="OnSelect">

// This doesn't seem to be correct?

public void OnSelect(ChangeEventArgs e)
{
}

  • 7535
    Offline posted

    Hello Sean,

    You are right , your SelectedValueChanged should be like this:

    private void OnSelectedValueChanged(IgbMultiColumnComboBoxValueChangedEventArgs e)

     {

     this.ComboValue = e.NewValue.ToString();

    }