Click here to Skip to main content
15,897,371 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralMessage Boards Pin
Bassam Abdul-Baki26-Jan-09 4:17
professionalBassam Abdul-Baki26-Jan-09 4:17 
GeneralRe: Message Boards Pin
Chris Maunder26-Jan-09 11:22
cofounderChris Maunder26-Jan-09 11:22 
GeneralJob Board maps Pin
Nicholas Butler25-Jan-09 11:07
sitebuilderNicholas Butler25-Jan-09 11:07 
GeneralRe: Job Board maps Pin
Chris Maunder25-Jan-09 19:10
cofounderChris Maunder25-Jan-09 19:10 
GeneralNew layout problem [modified] Pin
Hans Dietrich25-Jan-09 7:05
mentorHans Dietrich25-Jan-09 7:05 
GeneralRe: New layout problem Pin
Alan N25-Jan-09 7:31
Alan N25-Jan-09 7:31 
GeneralRe: New layout problem Pin
Chris Richner25-Jan-09 23:44
Chris Richner25-Jan-09 23:44 
GeneralRe: New layout problem Pin
Shog925-Jan-09 9:45
sitebuilderShog925-Jan-09 9:45 
CP is no longer rendering in Quirks Mode. Therefore, the function EnsureMessageVisible() in ShortCuts.js must be updated to work with the documentElement (rather than body) as the scroll container:
function EnsureMessageVisible(msgID, bShowTop) 
{
   var msgHeader = document.getElementById("F" + msgID + "_h0");
   var msgBody = document.getElementById("F" + msgID + "_h1");

   if (!msgBody||!msgHeader)return;

   // determine scroll position of top and bottom
   var scrollContainer = document.documentElement;
   var top = getRealPos(msgHeader, 'Top');
   var bottom = getRealPos(msgBody, 'Top') + msgBody.offsetHeight;

   // if not already visible, scroll to make it so
   if ( scrollContainer.scrollTop > top && !bShowTop)
      scrollContainer.scrollTop = top - scrollContainer.clientHeight/10;
   if ( scrollContainer.scrollTop+scrollContainer.clientHeight < bottom)
      scrollContainer.scrollTop = bottom-scrollContainer.clientHeight;
   if ( scrollContainer.scrollTop > top && bShowTop)
      scrollContainer.scrollTop = top - scrollContainer.clientHeight/10;
}
(changes in bold - yes, there appears to be something of a regression WRT the message ID)



GeneralThanks Shog Pin
Chris Maunder25-Jan-09 19:05
cofounderChris Maunder25-Jan-09 19:05 
GeneralRe: Thanks Shog Pin
Shog926-Jan-09 16:51
sitebuilderShog926-Jan-09 16:51 
GeneralArticle Rating Bar Problem Pin
#realJSOP24-Jan-09 23:45
professional#realJSOP24-Jan-09 23:45 
GeneralRe: Article Rating Bar Problem Pin
Chris Maunder25-Jan-09 0:28
cofounderChris Maunder25-Jan-09 0:28 
GeneralProblems with new layout Pin
Mladen Janković24-Jan-09 23:04
Mladen Janković24-Jan-09 23:04 
GeneralRe: Problems with new layout Pin
Chris Maunder24-Jan-09 23:27
cofounderChris Maunder24-Jan-09 23:27 
GeneralLinks with titles Pin
Sam Hobbs24-Jan-09 22:16
Sam Hobbs24-Jan-09 22:16 
GeneralRe: Links with titles Pin
Chris Maunder24-Jan-09 23:28
cofounderChris Maunder24-Jan-09 23:28 
GeneralRe: Links with titles Pin
Sam Hobbs24-Jan-09 23:45
Sam Hobbs24-Jan-09 23:45 
GeneralRe: Links with titles Pin
Chris Maunder25-Jan-09 0:33
cofounderChris Maunder25-Jan-09 0:33 
GeneralRe: Links with titles Pin
Sam Hobbs25-Jan-09 1:07
Sam Hobbs25-Jan-09 1:07 
GeneralRe: Links with titles Pin
Sam Hobbs25-Jan-09 1:09
Sam Hobbs25-Jan-09 1:09 
GeneralRe: Links with titles Pin
Sam Hobbs25-Jan-09 1:13
Sam Hobbs25-Jan-09 1:13 
GeneralPermaLink documentation Pin
Sam Hobbs24-Jan-09 20:30
Sam Hobbs24-Jan-09 20:30 
GeneralRe: PermaLink documentation Pin
Hans Dietrich24-Jan-09 21:10
mentorHans Dietrich24-Jan-09 21:10 
GeneralRe: PermaLink documentation Pin
Sam Hobbs24-Jan-09 21:56
Sam Hobbs24-Jan-09 21:56 
GeneralForum list Pin
Hans Dietrich24-Jan-09 20:09
mentorHans Dietrich24-Jan-09 20:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.