Click here to Skip to main content
15,881,803 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

 
GeneralRe: Reputation Suggestion Pin
Chris Maunder21-Dec-10 12:43
cofounderChris Maunder21-Dec-10 12:43 
GeneralRe: Reputation Suggestion Pin
Chris Maunder21-Dec-10 12:33
cofounderChris Maunder21-Dec-10 12:33 
GeneralRe: Reputation Suggestion Pin
Pete O'Hanlon21-Dec-10 20:18
mvePete O'Hanlon21-Dec-10 20:18 
GeneralRe: Reputation Suggestion Pin
DaveAuld21-Dec-10 11:43
professionalDaveAuld21-Dec-10 11:43 
GeneralSuggestion Pin
Khaniya20-Dec-10 23:17
professionalKhaniya20-Dec-10 23:17 
GeneralRe: Suggestion Pin
Sandeep Mewara20-Dec-10 23:33
mveSandeep Mewara20-Dec-10 23:33 
GeneralRe: Suggestion Pin
Khaniya21-Dec-10 2:40
professionalKhaniya21-Dec-10 2:40 
Generaladd an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
David Jeske20-Dec-10 9:29
David Jeske20-Dec-10 9:29 
Currently, on the article editor at the following URL...

http://www.codeproject.com/script/Articles/Edit.aspx?aid=xxxxx

One can spend a long time editing an article, and then an accidental "navigate" off the page causes all that work to be LOST!

This is especially problematic because the editor often loses key-focus, and browsers often map the backspace key to "back", so when the editor loses key focus while you are backspacing, often it causes a "back navigate" which then loses the article content.

However, there is an EASY fix for this and other problems related to navigating away. Simply set up a javascript handler for "onbeforeunload". If the user accidentally tries to navigate off the page, the dialog will give them the chance to cancel the navigate before it destroys all their work. All that's needed is the following javascript added to the page:

window.onbeforeunload = function() {
    return 'You have unsaved changes!';
}


Then, a small javascript handler should be added to the buttons which "validly" leave the page which turn off this handler.
GeneralRe: add an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
Chris Maunder20-Dec-10 16:36
cofounderChris Maunder20-Dec-10 16:36 
GeneralRe: add an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
David Jeske20-Dec-10 20:35
David Jeske20-Dec-10 20:35 
GeneralRe: add an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
Chris Maunder21-Dec-10 2:15
cofounderChris Maunder21-Dec-10 2:15 
GeneralRe: add an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
David Jeske21-Dec-10 9:04
David Jeske21-Dec-10 9:04 
GeneralRe: add an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
Chris Maunder21-Dec-10 13:37
cofounderChris Maunder21-Dec-10 13:37 
GeneralRe: add an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
David Jeske21-Dec-10 15:31
David Jeske21-Dec-10 15:31 
GeneralRe: add an "onbeforeunload" handler to the article editor to prevent accidental loss Pin
Nish Nishant21-Dec-10 5:00
sitebuilderNish Nishant21-Dec-10 5:00 
GeneralForum notifications and Microsoft's SmartScreen filter Pin
dasblinkenlight20-Dec-10 8:13
dasblinkenlight20-Dec-10 8:13 
GeneralRe: Forum notifications and Microsoft's SmartScreen filter Pin
Slacker00720-Dec-10 9:29
professionalSlacker00720-Dec-10 9:29 
GeneralRe: Forum notifications and Microsoft's SmartScreen filter Pin
dasblinkenlight20-Dec-10 9:34
dasblinkenlight20-Dec-10 9:34 
GeneralRe: Forum notifications and Microsoft's SmartScreen filter Pin
Slacker00720-Dec-10 9:39
professionalSlacker00720-Dec-10 9:39 
GeneralRe: Forum notifications and Microsoft's SmartScreen filter Pin
Chris Maunder20-Dec-10 16:37
cofounderChris Maunder20-Dec-10 16:37 
GeneralBUG: Voting Stars Not Showing Properly Pin
Slacker00720-Dec-10 7:35
professionalSlacker00720-Dec-10 7:35 
GeneralRe: BUG: Voting Stars Not Showing Properly Pin
Luc Pattyn20-Dec-10 7:39
sitebuilderLuc Pattyn20-Dec-10 7:39 
GeneralRe: BUG: Voting Stars Not Showing Properly Pin
Slacker00720-Dec-10 7:44
professionalSlacker00720-Dec-10 7:44 
GeneralRe: BUG: Voting Stars Not Showing Properly Pin
Luc Pattyn20-Dec-10 7:50
sitebuilderLuc Pattyn20-Dec-10 7:50 
GeneralRe: BUG: Voting Stars Not Showing Properly Pin
Slacker00720-Dec-10 8:00
professionalSlacker00720-Dec-10 8:00 

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.