Yes, and the reason is the following line in profile.ascx file.
<li runat="server" id="BuddyLi"><a href="#BuddyListTab"><YAF:LocalizedLabel ID="LocalizedLabel44" runat="server" LocalizedTag='<%# this.UserId == this.PageContext.PageUserID ? "BUDDIES" : "BUDDIESTITLE"%>' /></a></li>
The id of BuddyListTab is server id not the client one.
I changed it to the following and it is fine now.
<li runat="server" id="BuddyLi"><a href='#<%# this.BuddyListTab.ClientID %>'><YAF:LocalizedLabel ID="LocalizedLabel44" runat="server" LocalizedTag='<%# this.UserId == this.PageContext.PageUserID ? "BUDDIES" : "BUDDIESTITLE"%>' /></a></li>
Edited by user
9 years ago
|
Reason: Not specified