Merge
This commit is contained in:
commit
d8764b1fd4
6 changed files with 23 additions and 9 deletions
|
@ -9764,6 +9764,8 @@ SELECT
|
|||
EA.PrimaryEmailAddress,
|
||||
EA.SubscriberNumber,
|
||||
EA.UserPrincipalName,
|
||||
EA.LevelID,
|
||||
EA.IsVIP,
|
||||
(CASE WHEN LU.AccountID IS NULL THEN ''false'' ELSE ''true'' END) as IsLyncUser
|
||||
FROM ExchangeAccounts AS EA
|
||||
LEFT JOIN LyncUsers AS LU
|
||||
|
|
|
@ -111,7 +111,7 @@
|
|||
<wsp:SendToControl id="sendToControl" runat="server" ValidationGroup="CreateMailbox" ControlToHide="PasswordBlock"></wsp:SendToControl>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="PasswordBlock" runat="server" Visible="false">
|
||||
<tr id="PasswordBlock" runat="server">
|
||||
<td class="FormLabel150" valign="top"><asp:Localize ID="locPassword" runat="server" meta:resourcekey="locPassword" Text="Password: *"></asp:Localize></td>
|
||||
<td>
|
||||
<wsp:PasswordControl id="password" runat="server" ValidationGroup="CreateMailbox" AllowGeneratePassword="false">
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
<wsp:SendToControl id="sendToControl" runat="server" ValidationGroup="CreateMailbox" ControlToHide="PasswordBlock"></wsp:SendToControl>
|
||||
</td>
|
||||
</tr>
|
||||
<tr id="PasswordBlock" runat="server" Visible="false">
|
||||
<tr id="PasswordBlock" runat="server">
|
||||
<td class="FormLabel150" valign="top">
|
||||
<asp:Localize ID="locPassword" runat="server" meta:resourcekey="locPassword" Text="Password: *"></asp:Localize></td>
|
||||
<td>
|
||||
|
|
|
@ -71,8 +71,8 @@
|
|||
|
||||
|
||||
<script>
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
function BindPopup() {
|
||||
$('#<%=txtPassword.ClientID%>').poshytip({
|
||||
className: 'tip-bluesimple',
|
||||
showOn: 'focus',
|
||||
|
@ -84,5 +84,15 @@
|
|||
return $('#password-hint-popup').html();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
$(document).ready(function () {
|
||||
BindPopup();
|
||||
});
|
||||
|
||||
var prm = Sys.WebForms.PageRequestManager.getInstance();
|
||||
|
||||
prm.add_endRequest(function () {
|
||||
BindPopup();
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -241,8 +241,7 @@ namespace WebsitePanel.Portal
|
|||
{
|
||||
if (!Page.ClientScript.IsClientScriptIncludeRegistered("wspValidationFunctions"))
|
||||
{
|
||||
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "wspValidationFunctions", @"
|
||||
|
||||
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "wspValidationFunctions", @"
|
||||
|
||||
function wspValidatePasswordNumbers(source, args)
|
||||
{
|
||||
|
@ -279,9 +278,12 @@ namespace WebsitePanel.Portal
|
|||
", true);
|
||||
|
||||
|
||||
Page.ClientScript.RegisterClientScriptInclude("jqueryui-tooltip", ResolveUrl("~/JavaScript/jquery.poshytip.min.js"));
|
||||
}
|
||||
|
||||
|
||||
if (!Page.ClientScript.IsClientScriptIncludeRegistered("jqueryui-tooltip"))
|
||||
{
|
||||
Page.ClientScript.RegisterClientScriptInclude(this.GetType(),"jqueryui-tooltip", ResolveUrl("~/JavaScript/jquery.poshytip.min.js"));
|
||||
}
|
||||
}
|
||||
|
||||
private void ToggleControls()
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<tr>
|
||||
<td class="FormLabel150"></td>
|
||||
<td>
|
||||
<asp:CheckBox ID="chkSendPasswordResetEmail" runat="server" meta:resourcekey="chkSendPasswordResetEmail" Text="Send Password Request" AutoPostBack="true" Checked="True" OnCheckedChanged="chkSendPasswordResetEmail_StateChanged" />
|
||||
<asp:CheckBox ID="chkSendPasswordResetEmail" runat="server" meta:resourcekey="chkSendPasswordResetEmail" Text="Send Password Request" AutoPostBack="true" OnCheckedChanged="chkSendPasswordResetEmail_StateChanged" />
|
||||
</td>
|
||||
</tr>
|
||||
<tbody id="SendToBody" runat="server" visible="False">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue