I want to keep boxes checked after I submit form. Usual checkbox I would just write code checked="checked", but how can I do this with Igcombobox?
Hello Mallor,
In order to keep their state my suggestion is to persist the selection somewhere, for example in sessionStorage or localStorage and after the postback to restore them as selected again.
Methods that you can use in order to select them back:
https://www.igniteui.com/help/api/2016.2/ui.igcombo#methods:value
https://www.igniteui.com/help/api/2016.2/ui.igcombo#methods:index
Let me know if I can be of further assistance.