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
300
Server side support for IgniteUI controls
posted

I am wondering if there is any support for server side controlling for IgniteUI. Specifically, I am interested in getting/setting values of an IgCombo from code behind on ASPX web form pages. I am using version 2013.1.

Parents
No Data
Reply
  • 4315
    Verified Answer
    Offline posted

    Hi, Bertm 13.

    Thank you for using our product and let me see if I can help you.

    The combo control has MVC wrapper and there you can set data source on the sever and retrieve combo value on the server. You can follow this sample for more information. It's important to use ComboFor() method that will render input, holding the igCombo value.

    But I see that you are using Web Forms and there you can use only the client-side igCombo. You need to create your own mechanism - if you want server-side data source, you should render it on the client as JSON or other format and then bind it to the igCombo. For getting the value you also should create some input that will be updated simultaneously with the igCombo and then send its value to the server.

    That's why for WebForms we have another bundle of controls - ASP.NET and there is a specific control for your needs - WebDropDown.

    I hope this will help you and I will wait for your feedback.

    Best regards,

    Nikolay Alipiev

Children