fix Actions List
This commit is contained in:
parent
3e3db0fa03
commit
e6f7a2f529
3 changed files with 9 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
|||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<wsp:WebsiteActions ID="websiteActions" runat="server" GridViewID="gvItems" CheckboxesName="chkSelectedIds" />
|
||||
<wsp:WebsiteActions ID="websiteActions" runat="server" GridViewID="gvItems" CheckboxesName="chkSelectedIds" Visible="False" />
|
||||
</td>
|
||||
<td class="FormButtonsBarCleanSeparator"></td>
|
||||
<td>
|
||||
|
|
|
@ -91,6 +91,12 @@ namespace WebsitePanel.Portal.UserControls
|
|||
set { EnsureChildControls(); QuotasPanel.Visible = value; }
|
||||
}
|
||||
|
||||
public bool ShowActions
|
||||
{
|
||||
get { EnsureChildControls(); return QuotasPanel.Visible; }
|
||||
set { EnsureChildControls(); websiteActions.Visible = value; }
|
||||
}
|
||||
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
//HideServiceColumns(gvWebSites);
|
||||
|
|
|
@ -6,4 +6,5 @@
|
|||
CreateControlID="add_site"
|
||||
GroupName="Web"
|
||||
TypeName="WebsitePanel.Providers.Web.WebSite, WebsitePanel.Providers.Base"
|
||||
QuotaName="Web.Sites" />
|
||||
QuotaName="Web.Sites"
|
||||
ShowActions = "True" />
|
Loading…
Add table
Add a link
Reference in a new issue