Web console hyperlink better design
This commit is contained in:
parent
440af2bf77
commit
c0f13d3fd9
2 changed files with 17 additions and 15 deletions
|
@ -126,11 +126,9 @@
|
||||||
<data name="gvInstalledApplicationsEnableConsole.Header" xml:space="preserve">
|
<data name="gvInstalledApplicationsEnableConsole.Header" xml:space="preserve">
|
||||||
<value>Web console</value>
|
<value>Web console</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="gvInstalledApplicationsConsoleUrl.Header" xml:space="preserve">
|
|
||||||
<value>Web console url</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnEnable.Text" xml:space="preserve">
|
<data name="btnEnable.Text" xml:space="preserve">
|
||||||
<value>Enable console for 1 day</value>
|
<value>Enable</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnDisable.Text" xml:space="preserve">
|
<data name="btnDisable.Text" xml:space="preserve">
|
||||||
<value>Disable</value>
|
<value>Disable</value>
|
||||||
|
|
|
@ -54,6 +54,7 @@
|
||||||
Text='<%# GetLocalizedString("btnEnable.Text") %>' CssClass="Button1"
|
Text='<%# GetLocalizedString("btnEnable.Text") %>' CssClass="Button1"
|
||||||
CommandArgument='<%# Eval("Name") %>'
|
CommandArgument='<%# Eval("Name") %>'
|
||||||
CommandName="EnableConsole"
|
CommandName="EnableConsole"
|
||||||
|
Visible= '<%# IsNullOrEmpty( (string)Eval("ConsoleUrl")) %>'
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<asp:Button ID="btnDisable" runat="server"
|
<asp:Button ID="btnDisable" runat="server"
|
||||||
|
@ -63,21 +64,24 @@
|
||||||
Visible= '<%# !IsNullOrEmpty( (string)Eval("ConsoleUrl")) %>'
|
Visible= '<%# !IsNullOrEmpty( (string)Eval("ConsoleUrl")) %>'
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ItemTemplate>
|
<asp:hyperlink
|
||||||
</asp:TemplateField>
|
CssClass="MediumBold"
|
||||||
|
NavigateUrl='<%# GetConsoleFullUrl((string)Eval("ConsoleUrl")) %>'
|
||||||
<asp:TemplateField HeaderText="gvInstalledApplicationsConsoleUrl">
|
runat="server"
|
||||||
<ItemStyle HorizontalAlign="Center" />
|
ID="lnkAppDetails"
|
||||||
<ItemTemplate>
|
ToolTip='<%# Eval("ConsoleUrl") %>'
|
||||||
|
Target="_blank"
|
||||||
|
Visible= '<%# !IsNullOrEmpty( (string)Eval("ConsoleUrl")) %>'>
|
||||||
<asp:hyperlink CssClass="MediumBold" NavigateUrl='<%# GetConsoleFullUrl((string)Eval("ConsoleUrl")) %>' runat="server" ID="lnkAppDetails" ToolTip='<%# Eval("ConsoleUrl") %>' Target="_blank">
|
Open console
|
||||||
<%# Eval("ConsoleUrl") %>
|
|
||||||
</asp:hyperlink>
|
</asp:hyperlink>
|
||||||
|
|
||||||
|
|
||||||
</ItemTemplate>
|
</ItemTemplate>
|
||||||
</asp:TemplateField>
|
</asp:TemplateField>
|
||||||
|
|
||||||
|
|
||||||
</Columns>
|
</Columns>
|
||||||
</asp:GridView>
|
</asp:GridView>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue