Hi,
I want to show & Hide group box according to certain condition:
Then in code behind do this:
If true
MyDiv.visible := true
else
myDiv.visible := false;
Is this the best way to achieve that ?
Thank you
I want to show & Hide group box according to certain condition:
ASP.net:
<div id="MyDiv" runat="server" visible="true" style="margin-top: 10px; margin-bottom: 10px;">
<asp:Panel runat="server" ID="pnlTest" GroupingText="My Group">
Then in code behind do this:
If true
MyDiv.visible := true
else
myDiv.visible := false;
Is this the best way to achieve that ?
Thank you