Hi Devo Mani,
The solution provided by @Rajendra is totally correct But be careful since it only applies a CSS style that hides the container, the form is sent to the client anyways. The best option is to create a variable, a Boolean for example, which you can use to manipulate the display of any widget accordingly to your needs.
Quick and easy example:
- Create a Boolean variable and call it "ShowContainer" and set it by default to false;
- Click on your container and go to the display property and change it to ShowContainer -> If the ShowContainer variable is set to true it shows the container otherwise it hides the container;
- On your Button Click action, assign the value of ShowContainer to true.
And that's it, as simple as that.
Hope it helped !
Best Regards,
Diogo Romero