Tagged Questions
The unsaved tag has no wiki summary.
30
votes
10answers
14k views
Detecting Unsaved Changes using JavaScript
I have a requirement to implement an "Unsaved Changes" prompt in an ASP .Net application. If a user modifies controls on a web form, and attempts to navigate away before saving, a prompt should ...
11
votes
6answers
10k views
Client/JS Framework for “Unsaved Data” Protection?
Hey all- we have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability ...
5
votes
6answers
5k views
How can I cancel a user's WPF TreeView click?
I've got a WPF application with a Treeview control.
When the user clicks a node on the tree, other TextBox, ComboBox, etc. controls on the page are populated with appropriate values.
The user can ...
2
votes
3answers
113 views
Saving form data when POST submission is not validated
I need to validate a form in php and display some error messages in the view if there are validation errors. The problem is that once the form is submitted, sending the user back to the page will ...
1
vote
1answer
70 views
How to detect unsaved data in form when user leaves the page?
I need to detect unsaved data in form when user leaves the page without submitting the form. I would like to implement that without adding a value change listener to each input.
This is the ...
1
vote
2answers
2k views
Why does Visual Studio 2008 want to save my project file repeatedly?
I have a semi-large solution file in Visual Studio 2008, with around 25-30 projects in it.
I notice that a lot of times when I want to either close the solution file, or check in pending changes to ...
0
votes
0answers
167 views
object references an unsaved transient instance - save the transient instance before flushing
We have 4 entities in our program. E1-E2-E3-E4. E1 contains collection of E2. E2 contains collection of E3. E3 contains collection of E4. We set Bidirectional One-to-Many association in between 2 ...
0
votes
0answers
126 views
virtualbox host-only ethernet adapter resets ip address [closed]
I specified an ip address in the host-only network details dialog; but when I reopen, it has another ip address there.
0
votes
2answers
159 views
showing the alert on moving through one page to another by Unsave Change
Scenario:
I have a CaseEdit.aspx page in which on have 3 buttons
AddImage, FinalPage, QuestionAns
and one web user control that CaseContentList.ascx
in casecontentlist I have datalist in that i am ...
0
votes
1answer
94 views
Mark document as dirty in non-document based application
I'm creating a simple Cocoa non-document based application. I want to show visually that the "document" app is working with has unsaved changes (the close button displaying a dot).
Is this possible ...
0
votes
1answer
844 views
NHibernate ManyToMany relationship - using AuditInterceptor - object references an unsaved transient instance - save the transient instance before flushing
The domain model the DomainObject's audit fields are populated using an AuditInterceptor.
DomainObject
Id
EstablishDate
EstablishId
UpdateDate
UpdateId
Message : DomainObject
...
0
votes
1answer
1k views
How do I properly handle a PreviewMouseDown event with a MessageBox confirmation?
Earlier I asked how to cancel a WPF TreeViewItem.Selected event.
The answerers suggested I instead handle the PreviewMouseDown event before the selection even takes place. That makes sense.
I've ...