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
295
difference between DropDown and DropDownList
posted

I'm using WebDataGrid with DropDownProvider. and I bound DataTable to the DropDownProvider.

The property "DisplayMode" of EditorControl has DropDown, DropDownList, ReadOnly and ReadOnlyList.

I know how ReadOnly (or ReadOnlyList) works.

but I couldn't find the difference between DropDown and DropDownList.

using ReadOnly, it binds only 1 item. using ReadOnlyList, it binds all item

but DropDown binds all item of the DataTable.

please explain the difference.

Thanks.

<ig:WebDataGrid ID="WebDataGrid1" runat="server" Width="100%" Height="700px" EnableDataViewState="true" DataKeyFields="RowNum" >

<EditorProviders>

     <ig:DropDownProvider ID="ddpCurrency" >

      <EditorControl ID="EditorControl1" runat="server" Width="100%" DisplayMode="DropDownList"></EditorControl>

     </ig:DropDownProvider>

</EditorProviders>  

... 

</ig:WebDataGrid>

  • 11095
    Offline posted

    Hello,

    I am still following up. Have you been able to resolve the issue?
    If you have any concerns or questions, please feel free to contact me, I will be glad to help you.
    Thank you for choosing Infragistics components!

  • 11095
    Verified Answer
    Offline posted

    Hello Chloe,

    Thank you for contacting Infragistics!

    • DropDown allows you selection, browsing, navigation and editing.
    • DropDownList allows you typing text in the input will not be allowed, selection and browsing through the items will be allowed.

    For more refer to the following.

    Let me know if you need further assistance.