How to get PageName (jsff) open in a particular Region

Hi,
I developed some jspx pages. I get there binding using facesContext in my managed bean. But not I have to convert jspx into JSFF (with bounded Task) . Now I cannot get binding using facesContext. How I can get th binding of JSFF page along its Managed Bean Name dynamically.
Thanks in Advance.
Muhabbat Ali

don't the method return the page fragment , but if the code is in the managed bean of page fragment ....
id diferent if execute the method in the page that contains the fragment.
if you want pass this value at the page that contains the fragment you use the pageflow scope but
this method is correct in the fragment.
regards

Similar Messages

  • I am trying to open PDF files from safari, but when I click on them they open in a separate window and the information is encrypted. Any ideas on how to get them to open them in Adobe? Any help please!

    I am trying to open PDF files from safari, but when I click on them they open in a separate window and the information is encrypted. Any ideas on how to get them to open them in Adobe? Any help please!

    The pdf is loading as html code. If you save it, it will download as :
    605124.pdf.html
    Change the extension to .pdf
    And it opens and works perfectly, I just tested it:
    Use this link to download it automatically:
    http://saladeaula.estacio.br/arquivo.asp?dir=00/1020624/605124.pdf&num_seq=59828 4

  • Have a new PC desktop with 4 hard drives, new c, d and old c, d, My ipad library is in old c, how to get my itune open the right drive, it keeps on open in new c drive.

    Have a new PC desktop with 4 hard drives, new c, d and old c, d, My ipad library is in old c, how to get my itune open the right drive, it keeps on open in new c drive. It said my computer is not authorized. I want to move all the old c to the new c drive, or get the itune to open my old c drive when I log in.

    might be some help on one of these links.
    Windows - Change iPad default backup location
    http://apple-ipad-tablet-help.blogspot.com/2010/07/change-ipad-default-backup-lo cation.html
    Windows - Changing IPhone and iPad backup location
    http://goodstuff2share.wordpress.com/2011/05/22/changing-iphone-and-ipad-backup- location/
    Sync Your iOS Device with a New Computer Without Losing Data
    http://www.howtogeek.com/104298/sync-your-ios-device-with-a-new-computer-without -losing-data/
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    https://discussions.apple.com/docs/DOC-3141
     Cheers, Tom

  • I have a FCP event and project with all accompanying media saved on a harddrive.  I am now attempting to open the files on another computer that also has FCP X.  I cannot figure out how to get it to open.

    I have a FCP event and project with all accompanying media saved on a harddrive.  I am now attempting to open the files on another computer that also has FCP X.  I cannot figure out how to get it to open.

    The events and projects folders have to be on the top level of the drive for FCP to recognize them.

  • How to get a organization name for a particular user using API's

    Hi alll,
    How to get a organization name for a particular user using API's

    You need to do something like this:
    SearchCriteria criteria = new SearchCriteria("User Login", "XELSYSADM", SearchCriteria.Operator.EQUAL);
                   UserManager usrService = oimClient.getService(UserManager.class);
                   Set<String> retAttrs = new HashSet<String>();
                   retAttrs.add(UserManagerConstants.AttributeName.USER_ORGANIZATION.getId());
                   List<oracle.iam.identity.usermgmt.vo.User> users = usrService.search(criteria, retAttrs, null);
                   System.out.println("ORG KEY :: " + users.get(0).getAttribute("act_key"));

  • How to get documents from RMS linked to particular case id using webdynpro

    HI friends,
    Can  anybody knows " How to get documents from RMS linked to particular case id."
    From end: webdynpro
    backend: RMS.
    please do the needful.
    Thanks and Regards
    -Sujatha

    HI friends,
    Can  anybody knows " How to get documents from RMS linked to particular case id."
    From end: webdynpro
    backend: RMS.
    please do the needful.
    Thanks and Regards
    -Sujatha

  • I have tried everything that has been suggested and even deleted and downloaded Firefox again and it will not open. Any ideas on how to get it to open?

    I have been trying to get Firefox to open up and everytime I double click on the icon nothing happens. I have gone to the task manager and deleted it from the process list and tried again and still will not open. I have even tried deleting the program and downloading it again and it still will not open.

    What was the full wording of the error message? Usually there is also a number or additional information.
    Try placing the iPod in Recovery Mode and then restore
    Next try DFU mode and restore.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • How to get mail to open a PPS attachment with Keynote instead of Preview in OS 10.8.5

    How do I get Keynote to open a PPS attachment in Mail using OS 10.8.5
    It now opens automatically with Preview and I want to change this to Keynote

    One more thing. I know you can do the "get info thing" and then change the "open with" however this only works when I drag the attachment to the desktop NOT in Mail.

  • How to get icloud to open in chrome instead of IE on windows 8

    Hi,
         i have windows 8 and in my apps i have - icloud, contacts and calender which clicking on them opens icloud on internet explorer is there a way to get them to open up on google chrome instead
    Thanks intelligent community =D
    Chrisdion Altoft

    Hi,
    This is server side code , you should write in your C# code behind method for Click event of Link Button .
    - Use 1st part code in your button event handler method. (Replace <username> with current user name), best way is to find the crome.exe location at your dev machine , and paste the path here -
    process.StartInfo.FileName = @""; , default location is in user's appdata folder. Test the code.
    - If the above code works , and if your crome.exe is in user's appdata folder , then you will need to find dynamic location of AppData folder for every user. That means the path should not be hard coded. The 2nd part of the code is an hint for how you can
    find the appdata path in C#. Something like this
    //var cromePath = @"C:\Users\<UserName>\AppData\Local\Google\Chrome\chrome.exe";
    var cromePath = Path.Combine(Environment.GetFolderPath(
    Environment.SpecialFolder.ApplicationData), "\Local\Google\Chrome\chrome.exe");
    using (var process = new Process())
    process.StartInfo.FileName = cromePath;
    process.StartInfo.Arguments = "your url";
    process.Start();
    So the step will be
    - First try a direct call to crome,
    var cromePath = @"crome.exe";
    - if it not works , then try with hardcoded path of crome.exe from your dev machine for current user -
    var cromePath = @"C:\Users\<currentUserName>\AppData\Local\Google\Chrome\chrome.exe";
    - And if this work , then try it with dynamic path for any user, find appdata folder location through code 
    var cromePath = Path.Combine(Environment.GetFolderPath(
    Environment.SpecialFolder.ApplicationData), "\Local\Google\Chrome\chrome.exe");
    Hope this will help, if you are a C# developer then you can easily understand  the concept.
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • How to get pdfs to open in acrobat reader instead of quicktime

    Pdfs automatically open in quick time. How do I get them to open in Acrobat reader instead. I need step by step instructions.. Please help.

    Check here...
    System Perferences->QuickTime->Advanced - click MIME Settings and expand Images - Still images files - then uncheck PDF Images (if it is checked).
    or just click Use Defaults.
    I hope it helps.
    Tom

  • How to get pages to open in a 'New Tab' instead of a 'New Page'

    Hi there,
    I know how to get the pages of my iWeb created site to open as a 'New Page' by using the Inspector. What I want to do however, is to get them to open as a 'New Tab' instead.
    I want to do this because I have several pages that open as a 'New Page' and it litters the screen with Safari pages. So instead of a 'New Page', I want them to open as a 'New Tab' within the one Safari window.
    This is what I want to happen:
    1: user clicks on link
    2: link opens a new Tab
    3: Safari switches to the new Tab and makes it the active Tab.
    Can someone please tell me how to get this to happen. Just ot be totally clear: I am aware that I can alter [MY] Safari settings to do this on my own Mac. But I want it to happen as default for everyone who visits my site and clicks on the corresponding links.
    My site is published to MobileMe
    Regards
    Jason
    Message was edited by: JayTelford. I added details that I neglected to include.

    Window 7.
    Safari.
    Where is iWeb involved?
    Right-click > open link in new tab.
    Works with all webpages, not only iWeb ones.
    And if it drives you crazy, you may want to seek professional help with medication.
    Or learn to use your computer.

  • How to get links to open in new tabs?

    How do I make links open in a new tab rather than opening another browser? This also happens when I check gmail inbox or if I highlight something to "Search in Google". How do I get all this to open in the current active browser? I've checked the preferences and didn't see anything to fix this. Thanks in advance.

    I use SafariStand for this. It has a preference "Open Target Link in New Tab" along other cool enhancements (and some unexplainable ones).
    This is one of those Safari add-ons that uses SIMBL, so if you don't like the prospect of possibly having to update it manually in buried folders every time Safari makes a big change, you might not want to install it.

  • My Topsites wont'  open anymore on  OSX. How to get it to open?

    I  downloaded  the  new  operating  system  onto  my Iphone  and now  my Topsites won't  open  on  my MAC.  How  can I  get them  to open  again. Message  is MAC OSX  won't  recognize addresses with  TOPSITES.  my  topsites flash on  for a  second  when I  open  Safari and then  I  get that  message. Thanks

    Might be corrupted Safari preferences ..
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Safari/TopSites.plist
    Click Go then move the TopSites.pliist file to the Trash.
    Quit and relaunch Safari.
    If that didn't help, if you are syncing Safari bookmarks between your iPhoneand your Mac using iCloud ...
    On your Mac open System Preferences > iCloud
    Deselect the box next to Safari then reselect it.
    On your iPhone, tap Settings > iCloud
    Switch Safari off then back on.
    Give iCloud a few minutes to re sync the data.

  • How to get CS6 to open Epson 3170 scanner in professional mode? [was:question]

    I use an Epson 3170 scanner how do i get cs6 to open it in professional mode?

    I recommend that you check on epson's website and see if there is forum that you could ask that question on. As that is very specific question toward epson and requires someone who owns that brand to help you.
    Also let them know what version of photoshop you have and what OS you are using, as drivers are specific to each OS.

  • How to get mail to open to newest message in mailbox

    Whenever I open Mail, it defaults to showing messages from March of this year instead of the newest message. So I have to spend time scrolling down to the newest message.
    Is there a way to get it to open mail to the newest messages by default?
    Thanks!

    Did you try below in Mail/Preferences/Viewing?

Maybe you are looking for

  • Looking for a better join than a union join

    What I am trying to achieve is get sum(a.ce_ord_mhr) and sum(b.ce_ord_mhr) to display in the same line which cannot be achieved with a union join. I have tried to the tables by: join PS_CE_FSC_ADJ_DTL b on (a.location = b.location) but this just gave

  • Problem with customization of graph

    Hi experts, I am facing some problem in customizing graphs created through Report Builder. I am having some values on x-axis like employee name (emp-code). e.g. Janak Nirmal (007) I did one thing that i m only displaying emp-code on x-axis. i.e. 007

  • Internet Communication Error

    I have had my Blackberry Curve for just over a year, and have had no problems. Last week I started to have internet connection problems when I tried to connect to the internet from my office which is on the 31st floor. I keep have the Blackberry time

  • How to play back recorded audio?

    After using the mic to record some audio, how/where do I access these files to play back on the iPod Touch Gen4?

  • Silverlight stutters on Netflix

    Feels like a cache is being filled somewhere -- movie starts out fine, but ~5 minutes in, video pauses for half a second every three-four seconds -- irritating. Download speeds measure at 2.8±1 MB/s; system memory 1.04 GB, available 482 MB, system ca