Can ABNewPersonViewController be used to edit existing records? [duplicate] - iphone

This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
Can ABNewPersonViewController be used to edit existing records?
I'm trying to using ABNewPersonViewController to edit an existing record. I set the displayedPerson property and it shows up fine with all the info. If I hit 'Save', everything works as expected. However, if I hit 'Cancel', the record is deleted from the Address Book.
I can't use ABPersonViewController since I have a customized contact info page and need to open the editing page through my page. If you confirm that it is nonpossible to do like this, can you give me some other solutions.
The only solution I can think if is deep copying the record and then re-adding it to the Address Book if the user cancels out of the editing dialog. Is there really no better way?

Go through QuickContact Sample Project

Related

editing a google form response and data lost

I have created a standard google form and added a record. i have set options to edit the response . one of the questions i have added allows me to jump straight to submit or continue editing .
However When i am editing a response and i choose the my option to jump to submit and then press submit , i find the information is lost when i go back to edit the response.
However if i scroll through all my answers and submit at the end, then the data is saved.
Is there an issue with google forms ? i am not using any scripts - it is standard editing and form options.
This appears to be an issue with Google Forms when editing responses and changing the "go to" path from the initial submission. I've opened a question with a Google "Community Specialist" in the Google Help forums but so far she has not identified how to avoid this problem nor reported escalating it to get it fixed.
For those curious what to avoid, here is the scenario that causes a form to lose data:
Create a form with multiple Go To paths
Fill out a response using one Go To path of questions
Submit response
Click Edit Response
Choose an option that takes you down a different Go To path of questions
Submit the edited response
Click Edit Response
Going back to the original option Go To path, the earlier submitted data will now be gone.
Here is a form I've created that demonstrates the issue.
Here is the thread that as of this writing the Google Community Specialist has not yet solved. Perhaps if more people were to comment that it really is an issue she will pay more attention to it and bring it to the attention of who might be able to fix it.

Open Specific Help Page in Matlab [duplicate]

This question already has an answer here:
Linking to a specific (non-function's) documentation page programmatically
(1 answer)
Closed 6 years ago.
I want to open a specific help page in Matlab's offline documentation browser programmatically, for example the DAQ Properties.
This would be the page in the online help:
https://de.mathworks.com/help/daq/propertylist.html
I only know how to open specific pages like this:
doc('daq/NotifyWhenDataAvailableExceeds')
Is there a way to open the Property List directly programmatically in the offline documentation browser?
Answer from Matlab Technical Support:
To view the installed version of the page in the Help browser, run
this command:
web(fullfile(docroot, 'daq/propertylist.html?s_cid=doc_ftr'))

"Submit" for review button grayed out - Xcode 6 [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I am trying to submit my first app for iOS 8 and i am going through the new procedure of Apple's iTunes connect. I have upload my binary, fill all the details and upload all screenshots. Then i press submit for review and I see this screen with 2 option. Whatever I select the "submit" button stays greyed out.
Apple made a HTML coding mistake on this page. Specifically they forgot a quote on one of the tags making the HTML invalid. Using FireFox you can change the HTML and then the submit works. I submitted my app this way just now and it is "Waiting for Review"!
On the Export Compliance Tag they are missing a quote (") after the "section" in a tag. If you add that (") in the Inspector on FireFox (or using similar methods on other browsers to modify the HTML you are looking at) the Export Compliance question will show up and then you can answer it and submit your app.
OR you could just wait till tomorrow and Apple will probably fix their HTML coding mistake.
Removed just one "ng-hide" tag to enable third question about Export Compliance and the button submit appeared.
Finally I got the solution for this.
Last night also I tried to upload the build on App Store. I left the window idle for 2 hours after uploading the build and the button appeared. Seems to be a bug or feature in the new upload system.
Are you trying this through Chrome? Try Safari and you should get three options and the submit button will be available when all three are checked
It's and interface bug by Apple. (Wow, Apple) I cannot reach the page again so I can only give so much detail on how I could get through it and submit: I opened up Chrome inspector on the page to look at the HTML, looked for the "cryptography" string as the mistakenly hidden question is about that. I removed the "ng-hide" class off of some of the tags, and finally the crytography question appeared. (Along with the "Is your app going to be sold in the French App Store?" question for some reason.) I checked no, and the submit button was enabled.
We may have caught Apple in a middle of a deployment. It looks like they added a new question to this page for "Export Compliance". Either way, it looks like they fixed the submit button now.

Plone send e-mail twice when deleting an item (Content rules) [duplicate]

This question already has answers here:
Plone: reacting to object removal
(4 answers)
Closed 9 years ago.
I defined a Content Rule that send an e-mail when deleting an item in my Plone site.
The problem I had is when I choose "Actions/Delete" and Plone shows the floating window asking for a confirmation, the e-mail is already beign sent, even before I confirm, so I receive two e-mails: One when I select "delete" and another one when I confirm it. If I decide not to delete, the e-mail is sent.
Why is Plone sending an e-mail before I confirm the item remove?
Plone 4.2.4 (4210)
CMF 2.2.7
Zope 2.13.19
Thanks
The reason may be that the delete action actually deletes things twice. The first time happens when you select the action and is used to trigger a check for related and linked items that refer to the item you are about to delete. This first 'delete' is then rolled back. The second delete happens after you actually click confirm.

form registeration using an iPhone app [duplicate]

This question already has answers here:
Existing iOS form framework
(3 answers)
Closed 8 years ago.
Is there a way in iOS app programming that I can make an user fill up a form for registration? I mean do we have a template for that available already? Also I wanted to know that does it support something like EDIT where in if a user makes a typo then the fields along with checkboxes get auto-populated and one can update a required field?
Here's a framework for providing forms in-app:
http://www.cocoacontrols.com/platforms/ios/controls/ibaforms
As for the autocorrect thing, that is a customizable property of most, if not all, of the default iOS text-entry fields.