Intersoft WebCombo Documentation
How-to: Refresh other control during row addition
See Also Send comments on this topic.
Intersoft WebCombo > WebCombo Advanced Features > ClientAction Engine How-to Topics > How-to: Refresh other control during row addition

Glossary Item Box

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

  1. Create WebCombo's AddItem server side event.
  2. Add the following code in AddItem server side event after adding a row:
    C# Copy ImageCopy Code

    WebCombo1.GetClientAction().RefreshModifiedControls();


  3. Run the project.

See Also