WebCombo provides a method to refresh other controls using RefreshModifiedControls method.
In this topic, you will learn how to implement the method.
To refresh other control during row addition
- Create WebCombo's AddItem server side event.
- Add the following code in AddItem server side event after adding a row:
C# Copy Code WebCombo1.GetClientAction().RefreshModifiedControls();
- Run the project.