Button to go from the Master page to the "New" Detail page

Hi,
I have an application with some Master/Detail pages, on one of the Master/Details the client wants a button on the Master page to go directly to create a new Detail, instead of enter on the Detail page and then press the New button.
Is it possible? Can I make this kind of button?
Thanks
Tony

Tony,
Add the button with drag and drop post-generation and test it, then move the button code to a custom template, and uncheck group-level check box "Clear Page Definition Before Generation".
Steven Davelaar,
JHeadstart Team.

Similar Messages

  • How do I save documents from the new Pages into a Word Document

    How do I save documents from the new Pages into a Word Document?

    Thank you so much - so simple!  I had been using the 'share' option (worked in old Pages) and only had icloud or email as options.  I have to attach word documents to emails to send to work. I don't want to use icloud because it's too public and I don't trust it.  Also, you have to be able to access the internet and I need word documents on my USB stick for work where there's no internet.
    I love my Mac but I do wish Apple would remember those of us living in less-than-perfect computer-land.
    Thanks again
    Lindsay

  • The bookmarks button is missing from the navigation tool bar. When I right click and select customize it appears and when I click done on the customization box button, it disappears.

    The bookmarks button is missing from the navigation toolbar. It appears when I right click on the navigation and click customize. As soon as I close the customization window it disappears again. I can no longer access the library to back up my bookmarks. Why did you change it from Firefox 3 where you could clock on the bookmarks tab and be able to backup your bookmarks?

    Actually the Bookmarks Menu button doesn't appear because you have the Menu Bar visible in your first screenshot. The Bookmarks Menu button should appear to the right of the overflow chevron on the Bookmarks Toolbar if the Menu Bar is hidden.

  • Back button not removing from the stack?

    Hi,
    I have the following code:
    [[self navigationController]pushViewController:_newsDetailController animated:YES];
    However, It doesn't seem to be removing from the stack when the user hits the back button on the UINavigationBar.
    The reason I believe this, is because when you then select another item in my UITableView, it loads exactly the same details as the first time.
    I have tried [_newsDetailController release]; but it still doesn't make any difference. It just crashes after the third selection.
    This is what I'm doing in my didSelectRowAtIndexPath:
    - (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath {
    [[self appDelegate] setCurrentlySelectedBlogItem:[[[self rssParser]rssItems]objectAtIndex:indexPath.row]];
    [self.appDelegate loadNewsDetails];
    Any help would be greatly appreciated. I've spent ages on this!
    It worked fine until I added a UINavigationController.
    Thanks,
    Nick

    Hi Nick, and welcome to the Dev Forum,
    nrawlins wrote:
    ... It doesn't seem to be removing from the stack when the user hits the back button on the UINavigationBar.
    I understand how your observations could make it seem like your _newsDetailController is somehow staying on the stack, but that's not what's going on here. If you want to see the stack, just add some logging before and after pushing or popping:
    NSLog(@"stack: %@", self.navigationController.viewControllers);
    I think we'll need to see more of your code to isolate the problem, but what we're looking for is a logic mistake which causes the detail controller to always display the info for the same item, regardless of which item is selected next. Here's a list of questions to guide your search, and/or show you which code we need to look at:
    1) What's in the array returned by [[self rssParser]rssItems] ? It might help to add some logging in tableView:didSelectRowAtIndexPath like this:
    - (void)tableView(UITableView *)tableView didSelectRowAtIndexPath(NSIndexPath *)indexPath {
    NSArray *item = [[[self rssParser]rssItems]objectAtIndex:indexPath.row]];
    NSLog(@"%s: item=%@", _func_, item);
    [[self appDelegate] setCurrentlySelectedBlogItem:item];
    [[self appDelegate] loadNewsDetails];
    2) What does loadNewsDetails do? It looks like it finds the details for the item stored in currentlySelectedBlogItem. Is that right? Some logging in loadNewsDetails might help to make sure the correct details are loaded there. From your description it sounds like you already had this part of the code working right, but it wouldn't hurt to be sure it's still doing what you expect;
    3) How does the data obtained in loadNewsDetails find its way to the details controller? This is the missing link not shown in the code you've posted so far. I think we need to look at:
    3.1) Where and when the details controller is created;
    3.2) Whether the same controller object is intended to persist from item to item, or whether a new instance of the controller is created each time an item is selected. The latter scheme is usually preferred for best memory management;
    3.3) Is the current item and detail data stored in the detailsController or the app delegate? When is it stored, and when is it used?
    For example, suppose the details controller is only created once and persists for the life of the table view. Then suppose loadNewDetails saves the new details in an ivar of the app delegate, and the code to fetch the new details is in viewDidLoad of the controller.
    In the above scenario, viewDidLoad would run after the details controller was created, and if the details of the first selection were loaded by then, the details for the currently selected item would
    be presented as expected. But viewDidLoad will normally only run once, so when the selection was changed, the new details would never be fetched, and the previous details will be displayed again.
    The best way to avoid this and other related scenarios, is to create a new details controller each time a new selection is made from the table view:
    // MyTableViewController.m
    #import "myAppDelegate.h"
    #import "NewsDetailController.h"
    // called by loadNewsDetails as soon as details have been loaded
    - (void)presentDetailController {
    NewsDetailController *viewController = [[NewsDetailController alloc] // vc retainCount is 1
    initWithNibName:@"NewsDetailController" bundle:nil];
    // store new details in the detail controller; e.g.:
    viewController.navigationItem.title = [self appDelegate].currentlySelectedBlogItem;
    viewController.textView = [self appDelegate].currentDetails;
    [self.navigationController pushViewController:viewController // vc retainCount is 2
    animated:YES];
    [release viewController]; // vc retainCount is 1
    By releasing the new controller in the last line, we reduce its retain count to 1. Now the new controller is only retained by the stack, so when the stack is popped, the new controller will be dealloced.
    If none of the above is helpful, please answer all the questions as best you can and post the indicated code, ok?
    - Ray

  • I just went from OS 10.6 to 10.8. The arrow button is gone from the scrollbar. I do not see the option in "Systems Preference" any more. Am I missing something. If it is gone, is Apple going to bring it back?

    I just went from OS 10.6 to 10.8. The arrow button is gone from the scrollbar. I do not see the option in "Systems Preference" any more. Am I missing something. If it is gone, is Apple going to bring it back?

    John R M wrote:
    Thank you. I believe Apple shoud give you the option as to whether or not you may want to use the arrows.
    Apple give users what they want?
    Good luck there, the head of iOS Scott Forstall was canned, I suspect this was his favorite picture.
    However I bring salvation and sanity, the option to go back to the wonderous Snow Kitty.
    How to revert your Mac to Snow Leopard
    How to erase and install Snow Leopard 10.6
    Be sure to vent to Apple for the stupid changes here
    https://www.apple.com/feedback/macosx.html

  • I am on OS X and i am having problems sending pictures from the new pictures app via email.  when i hit the sharing button i have the option to send via iMessage or Facebook but the email option is ghosted and can't be checked off.  any suggestions?

    I am on OS X and i am having problems sending pictures from the new pictures app via email.  when i hit the sharing button i have the option to send via iMessage or Facebook but the email option is ghosted and can't be checked off.  any suggestions?

    I've resolved my problem now.  It wasn't iphoto: preferences:@ that I needed but iphoto:preferences:general where there is the option to choose email for sending photos.  Can't believe I missed that before.

  • Cannot download bpm jdev extension from the new set of binaries

    People:
    I cannot download http://download.oracle.com/otn/beta/bpmbeta1/bpm-jdev-extension.zip from the new set of binaries. I tried using firefox 3.6 and IE 8
    and i always get:
    We're sorry, the page you requested was not found.
    Please any help will be appreciated :)

    Seems to be working okay now. Try again, Nico and let me know how it goes.
    Heidi.

  • How do you edit photos with photoshop from the new  Photos app?  The edit in external editor menu item seems to be gone.

    How do you edit photos with photoshop from the new  Photos app?  The edit in external editor menu item seems to be gone.

    Tell Apple what additional features you want in Photos via both http://www.apple.com/feedback/macosx.html and http://www.apple.com/feedback/iphoto.html  since they don't have a feedback page for Photos as yet.

  • Hide content type from the new menu but show in edit form

    SharePoint Online, I have following 4 site content types Word Document Excel document PowerPoint document General document
    These content types are being used in a document library and "Word Document" is the default content type, When user clicks on "new" menu, all 4 content types are shown.
    I don't want to show "General document" in the new menu but I want to show in edit form, I have marked it hidden in the library settings but now it is not visible in the edit form.
    Any idea how can I hide content type from the new button but show in edit form?

    Hi,
    Whether you use SharePoint online 2013.
    If we hide the content type in the library settings, the content type will not be displayed in both new menu and edit form.
    To accomplish your qequirement, we need to use css code:
    style <style type="text/css">
    ul.ms-cui-menusection-items32 li:nth-child(4) {
    display: none !important;
    </style>
    perhaps your environment is different with mine, you need to make a little change to the code. 
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have
    feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive w

    How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive without opening a browser?
    The guts of my computer were rearranged and I got a new main hard drive. My old one is still in there and I can get stuff from it, but when I go to the Mozilla folder on the old one, I can't figure out if there's anything I can do to get all my bookmarks from that drive to my new one, where Firefox is newly installed.

    If you open Firefox then Firefox will always use the default profile folder as found via profiles.ini on your system drive.
    You either need to import the file in your current default profile or copy the file to your current profile folder while Firefox is closed.
    Firefox 3 stores the bookmarks and the browser history in [http://kb.mozillazine.org/places.sqlite places.sqlite] and no longer creates an HTML backup by default.
    There are also (five) JSON backups in the bookmarkbackups folder within the Firefox profile folder.
    You can either copy the file places.sqlite to your [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] or import the most recent JSON backup from the bookmarkbackups folder of that old profile.
    See:
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See http://kb.mozillazine.org/Profile_folder_-_Firefox
    "Application Data" in XP/Win2K and "AppData" in Vista/Windows 7 are hidden folders.
    See http://kb.mozillazine.org/Show_hidden_files_and_folders
    Go to: Control Panel > Folder Options > "View" tab > under "Hidden files and folders", select "Show hidden files and folders".
    You may want to un-check the box "Hide extensions for known file types" to see the file extensions of all files.

  • When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified

    When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified because it is already in use ??? What am I doing wrong?

    settings -> iTunes & App Store
    click on apple ID listed there
    select Sign Out
    sign in with the proper account
    from then on, when the store ask for your password it should be with the correct ID

  • I used Target mode to transfer files to a new iMac running Snow Leopard 10.6.8 from an older Dual core Intel machine (EMC 2105) also on 10.6.8. but originally Tiger 10.4. The operation was successful and I ejected the disk icon from the new machine and po

    IS THE SITUATION HOPELESS
    I used Target mode to transfer files to a new i7  iMac running Snow Leopard 10.6.8 from an older Dual core Intel machine (EMC 2105) also on 10.6.8. but originally Tiger 10.4. The operation was successful and I ejected the disk icon from the new machine and powered down the old machine. When this was restarted the next day there was a grey screen with flashing Mac symbol alternating with a 'no entry' sign and occasionally a question mark.Keyboard and mouse were unusable so k inserted the original instal disc (No.1 for 10.4. with installer 1.0.4) which came with the machine in 2006 in an attempt to boot from this. The ensuing window said this was not possible and now it cannot be ejected.I have tried everything ! It offers Disk Utility and other options like Terminal but that doesn't work either.I 'repaired disk' and that was pronounced o.k. None of the various keystrokes at start up will work, and the computer will only offer the installer disc continually.The only option would seem to be is to erase the hard drive completely from the disc in the machine.I don't want to do this as there is still material which I need to recover. I think the drive has in some way been corrupted by using it in target mode, and I don't know if there are any other options to try.
              Please tell me how to get this disc to eject !

    Graham Giles wrote:
    Have you seen this type of problem before? I think it could be a serious issue for anyone in a similar position.
    No; but then, I've not had occasion to use TDM. I've been using firerwire drives for over 10 years, both FW400 and FW800, with no issues except a bit of instability using a B&W G3 machine.
    TDM should be safe. Using cautious, manual copying of files from the Target machine to the Host machine should not result in unexpected loss of files or damage to the Target drive's directories. It should behave exactly the same as if it were an external (to the Host) firewire drive.
    •  I don't suppose there is anything I can do to 'put back' lost items from a separate Time Machine drive which has an up to date backup on it.
    There is probably a way to do that - seems to me that's one of the reasons for a Time Machine volume.
    On the other hand, if the Time Machine volume is rigidly linked to the now-absent OS on the original drive, there may be no way to effectively access the files in the TM archive.
    I know that using a cloned drive would work well in this instance.
    I have no experience with Time Machine, so perhaps someone who has will chime in with suggestions.
    With the machine in TDM with the other machine, have you tried running Disk Utility to see if you can effect repairs to the drive?

  • I have signed into a new account on my itunes on my computer. How do I get the music from the new account to be displayed in my library, because I can only see the old accounts music.

    I have signed into a new account on my itunes on my windows computer. How do I get the music from the new account to be displayed in my library if only the old account's music is showing up?

    You can transfer the music purchased from iTunes Store to the computer but not music acquired somewhere else.
    Syncing is one way street, computer to iPhone. You have to use 3rd party tool to transfer music not from iTunes Store to the computer.

  • I have moved my iTunes library to a new Windows 7 PC and cannot transfer music from the new iTunes PC to my iPhone. The iPhone only accepts transfers from the original iTunes PC.

    I have moved my iTunes library to a new Windows 7 PC and cannot transfer music from the new iTunes PC to my iPhone 4S. The iPhone will only accept music transfers from the original iTunes PC. I have come to understand that an iPhone can have only one "daddy" iTunes PC, but have not been able to find out how to change the "daddy". I have done a backup of the iPhone, and a "Restore to Original Settings". Then I restored the content using the new iTunes PC. My Apps and contacts, etc. are back on the iPhone, but it still won't accept music from the new iTunes PC.

    What happens when you try to sync the iphone to the new computer?

  • How should I best import HD Videos from the new iPad to my mac without loosing video quality?

    The new HD video on the new iPad is awesome, but it can eat up a lot of memory in no time. I would like to know what is the most recommended way to export my ipad movies to iLife on my mac without loosing image quality, so i can free up space on my iPad.
    If I use iPhoto I notice that the file size of the video from the new iPad is a lot smaller then if I use iMovie to import the same video.
    Example: I import a 53 second video from the new iPad to iPhoto and the imported file has a file size of 143 MB in iPhoto. (iphoto save the video as IMG_0048.mov)
    I import the same video to iMovie manually and the imported file size is 843 MB in iMovie. BIG DIFFERENCE. (iMovie saves that same video as clip-2012-03-20 16;13;08.mov)
    Now to really be confusing: I go to Image Capture program and locate the file manually on my iPad and is has the same name and file size is what is in iPhoto.
    So either iMovie is making the File a lot larger when it imports to an event, or the file I'm looking at is actually the iPhoto version that I get because I sync with iPhoto.
    The second issue that I have is that now I have 2 videos on my hard drive: one in iPhoto, and one in iMovie for a combined data storage of close to 1 GB.
    I would like to be able to import ALL my iPad recording into iPhoto and then delete the video from the device when done.
    But if I loose video quality, I'm not happy about that. Secondly, by importing video from my iPad into multiple iLife programs, I'm creating duplicates with sometimes different quality. Any suggestions? is there a setting in iPhoto that can do all this for me?
    Robert

    Don't use iphoto to deal with movies. it's not really meant for that. use Quicktime or iMovie to work with your videos

  • My wife has bought an iPad from a friend. My wife has an iphone with an iCloud account. When trying to connect to iCloud from the new iPad it says her username and password are not authorised. Any help

    MMy wife had bought an iPad from a friend. My wife already has an iPhone, which is registered to iCloud. She cannot acces iCloud from the new iPad. It says her username and password is not authorised. What do we need to do.

    This could be a couple different things.
         The device is not authorized to the Apple ID.
             Continue setup for the ID on the device.
      There is an account issue
            Is she able to get signed in at
                   Appleid.apple.com
                       and manage the account
    Can she get signed in at
      Supportprofile.apple.com  ?
             How many devices are registered to that Apple ID?

Maybe you are looking for

  • Message processing failed if we receive attachments via E-Mail

    Dear ladies and gentlemen, we have follow proccess: We get some e-mails with an attachment. The E-Mail pick up the messages and send it to an RFC Channel. I changed the payload via the localejbs/AF_Modules/PayloadSwapBean : localejbs/AF_Modules/Paylo

  • Disk Utility and Bad External Drive

    I have a drive that has just suddenly started to not be recognised by the system. It's a pain but no big deal as I didn't have much on it. However, I don't want to just give up on 200GBs of space and tried to erase/partition it. Nothing happens thoug

  • Calling a servlet in java class

    Hello, I try to call a servlet from java class but is dose not work what should be the problem    public void callServlet()           try                         // xxservlet is the servlet name                URL url = new URL("http://www.mydomain.c

  • How to do the cost assignement mandatory in  infotype 0014

    Hi everybody, does any of you know how to do the cost assignment mandatory in infotype 0014? We have use the feature COBLT  and table T588N for Function Module RP_TIME_COBL_002, and now the field COBL-AUFNR is mandatory, but we need the cost assignme

  • 3.1.3 & Keynote Remote

    I have been using Keynote Remote for a while now. When I upgraded to 3.1.3 I have a really hard time connecting to the Mac running Keynote. It started with the upgrade anyone else having this problem or does anyone have a fix. About 1/3 of the time I