Skip to content

Commit

Permalink
Add ToolTips for Static Tags imagebuttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Wagner committed Mar 16, 2021
1 parent de8c205 commit 6ae9893
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ucSubmitNews.ascx
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,15 @@
<td class="SubHead" id="tdAllTagsTitle" width="150"><dnn:label id="plAllTags" text="All Tags:" runat="server"></dnn:label></td>
<td runat="server" id="tdAllTagsList">
<asp:ListBox ID="lstTags" runat="server" CssClass="Normal" DataTextField="Name" DataValueField="Name" Width="300px" Height="150px" SelectionMode="Multiple" />
<asp:imagebutton id="addTags" resourcekey="btnAddTags.Help" runat="server" alternatetext="Add Tags To Article" commandname="add" imageurl="~/images/action_import.gif"></asp:imagebutton>
<asp:imagebutton id="addTags" resourcekey="btnAddTags.Help" runat="server" alternatetext="Add Tags To Article" ToolTip="Add Tags To Article" commandname="add" imageurl="~/images/action_import.gif"></asp:imagebutton>
</td>
<td runat="server" id="tdStaticTagsList">
<dnn:label id="plArticleTags" text="Article Tags:" runat="server" controlname="txtArticleTags"></dnn:label>
<asp:ListBox ID="lstFinalTags" runat="server" CssClass="Normal" DataTextField="Name" DataValueField="Name" Width="300px" Height="150px" SelectionMode="Single" />

<asp:imagebutton id="cmdUp" resourcekey="cmdUp.Help" runat="server" alternatetext="Move Tag Up In Tags List" commandname="up" imageurl="~/images/up.gif"></asp:imagebutton>
<asp:imagebutton id="cmdDown" resourcekey="cmdDown.Help" runat="server" alternatetext="Move Tag Down In Tags List" commandname="down" imageurl="~/images/dn.gif"></asp:imagebutton>
<asp:imagebutton id="cmdDeleteTag" resourcekey="cmdDeleteTag.Help" runat="server" alternatetext="Delete Tag From Tags List" commandname="cmdDeleteTag" imageurl="~/images/action_delete.gif"></asp:imagebutton>
<asp:imagebutton id="cmdUp" resourcekey="cmdUp.Help" runat="server" alternatetext="Move Tag Up In Tags List" ToolTip="Move Up" commandname="up" imageurl="~/images/up.gif"></asp:imagebutton>
<asp:imagebutton id="cmdDown" resourcekey="cmdDown.Help" runat="server" alternatetext="Move Tag Down In Tags List" ToolTip="Move Down" commandname="down" imageurl="~/images/dn.gif"></asp:imagebutton>
<asp:imagebutton id="cmdDeleteTag" resourcekey="cmdDeleteTag.Help" runat="server" alternatetext="Delete Tag From Tags List" ToolTip="Remove Tag" commandname="cmdDeleteTag" imageurl="~/images/action_delete.gif"></asp:imagebutton>
</td>
</tr>
</table>
Expand Down

0 comments on commit 6ae9893

Please sign in to comment.