Af:panelTabbed not working in safari 4 & 5

Hi,
af:panelTabbed is not working in safari 4 and 5 .
On click of each tab it calls a javascript method.
the javascript method do the functionality of watermark.
The code i use for watermark is
function adf$noValueText$intialize(event) {
var component = event.getSource();
component.visitChildren(adf$noValueText$replaceEmptyWithText, null, false);
function adf$noValueText$onFocus(event) {
adf$noValueText$replaceTextWithEmpty(event.getSource());
function adf$noValueText$onBlur(event) {
adf$noValueText$replaceEmptyWithText(event.getSource());
function adf$noValueText$replaceTextWithEmpty(component) {
var noValueText = component.getProperty("noValueText");
if (typeof noValueText != 'undefined') {
var domNode = document.getElementById(component.getClientId() + "::content");
if (domNode.value == component.getProperty("noValueText")) {
domNode.value = "";
function adf$noValueText$replaceEmptyWithText(component) {
var noValueText = component.getProperty("noValueText");
if (typeof noValueText != 'undefined') {
var domNode = document.getElementById(component.getClientId() + "::content");
if (domNode.value == "") {
domNode.value = component.getProperty("noValueText");
function refresh() {
location.reload();
Can somebody tell me whether this javascript is correct and the reason why af:paneltabbed not working in safari 4 & 5 browser.
Pls reply asap.
Thanks in advance

<af:panelTabbed id="pt2" >
<af:showDetailItem text="Team Members"
id="sdi2" immediate="true">
<af:clientListener method="refresh" type="disclosure"/>
<af:outputFormatted value="TEAM MEMBERS" id="of49" />
<af:subform id="s2">
<af:panelLabelAndMessage label="FIRST_AND_LAST" id="plam1"/>
<af:inputText id="it1FnLastValid" value="#{ForgotUsernameBean.initials}" required="true"
maximumLength="2" autoSubmit="true" requiredMessageDetail="ENTER_FIRST_AND_LAST">
<af:clientAttribute name="noValueText" value="Ex.AA"/>
<af:clientListener method="adf$noValueText$onFocus" type="focus"/>
<af:clientListener method="adf$noValueText$onBlur" type="blur"/>
</af:inputText>
<af:panelLabelAndMessage styleClass="label-msg" label="BIRTH_DATE(DD/YY)" id="plam2"/>
<af:inputText value="#{ForgotUsernameBean.dateOfBirth}"
requiredMessageDetail="ENTER_BIRTH_DATE"
required="true"
maximumLength="5"
autoSubmit="true" id="it1">
<af:clientAttribute name="noValueText"
value="DD/YY"/>
<af:clientListener method="adf$noValueText$onFocus"
type="focus"/>
<af:clientListener method="adf$noValueText$onBlur"
type="blur"/>
</af:inputText>
<af:panelLabelAndMessage styleClass="label-msg"
label="RESTAURANT_NUMBER"
id="RTM3"/>
<af:inputText label="" id="it3ValidnRestNo"
styleClass="errorTextForgotUN"
value="#{ForgotUsernameBean.restaurantNumber}"
required="true"
maximumLength="4"
autoSubmit="true"
requiredMessageDetail="RESTAURANT_NUMBER'">
<af:clientAttribute name="noValueText" value="****"/>
<af:clientListener method="adf$noValueText$onFocus" type="focus"/>
<af:clientListener method="adf$noValueText$onBlur" type="blur"/>
</af:inputText>
<af:panelLabelAndMessage styleClass="label-msg" label="POS_ID" id="plam3"/>
<af:inputText label="" id="it4InpPosIdValidn"
value="#{ForgotUsernameBean.posId}"
required="true"
maximumLength="4"
autoSubmit="true"
requiredMessageDetail="POS ID">
<af:validateLength minimum="3" maximum="4"
messageDetailNotInRange="POSID NOTINRANGE"/>
<af:validateRegExp pattern="[0-9]*"
messageDetailNoMatch="POSID INVALID"/>
<af:clientAttribute name="noValueText"
value="****"/>
<af:clientListener method="adf$noValueText$onFocus"
type="focus"/>
<af:clientListener method="adf$noValueText$onBlur"
type="blur"/>
</af:inputText>
<af:commandButton styleClass="pollsVote backBt"
text="#{resources['COMMON.ENTER']}"
action="#{ForgotUsernameBean.validateUserDetailsTM}"
partialTriggers="it4InpPosIdValidn it3ValidnRestNo it1FnLastValid it1"
disabled="#{ForgotUsernameBean.posId==null||ForgotUsernameBean.restaurantNumber==null||ForgotUsernameBean.dateOfBirth==null||ForgotUsernameBean.initials==null}"
id="teambutton1"/>
</af:subform>
</af:showDetailItem>
<af:showDetailItem text="RESTAURANT MANAGERS" id="sdi3" immediate="true">
<af:outputFormatted value="RESTAURANT MANAGERS" id="magH"/>
<af:subform id="s1">
<af:panelLabelAndMessage styleClass="label-msg" label="RESTAURANT NUMBER"id="m3"/>
<af:inputText label="" id="it5"
styleClass="errorTextForgotUN"
value="#{ForgotUsernameBean.rmRestaurantNumber}"
required="true"
maximumLength="4"
autoSubmit="true"
requiredMessageDetail="RESTAURANT NUMBER">
<af:clientAttribute name="noValueText"
value="****"/>
<af:clientListener method="adf$noValueText$onFocus"
type="focus"/>
<af:clientListener method="adf$noValueText$onBlur"
type="blur"/>
</af:inputText>
<af:panelLabelAndMessage styleClass="label-msg" label="BIRTH DATE(MM/DD/YYYY)" id="m9"/>
<af:inputText value="#{ForgotUsernameBean.rmdateOfBirth}"
required="true"
autoSubmit="true"
requiredMessageDetail="BIRTH DATE" id="it6" maximumLength="10">
<af:clientAttribute name="noValueText"
value="MM/DD/YYYY"/>
<af:clientListener method="adf$noValueText$onFocus"
type="focus"/>
<af:clientListener method="adf$noValueText$onBlur"
type="blur"/>
</af:inputText>
<af:panelLabelAndMessage styleClass="label-msg"
label="EMPLOYEE_ID"
id="m26"/>
<af:inputText label="" id="it7"
value="#{ForgotUsernameBean.last4DigitEmpId}"
required="true"
autoSubmit="true"
maximumLength="4"
requiredMessageDetail="EMPLOYEE_ID">
<af:clientAttribute name="noValueText"
value="****"/>
<af:clientListener method="adf$noValueText$onFocus"
type="focus"/>
<af:clientListener method="adf$noValueText$onBlur"
type="blur"/>
</af:inputText>
<af:commandButton styleClass="pgrl_loginbutton login_button floatL"
text="#{resources['COMMON.ENTER']}"
partialTriggers="it5 it6 it7"
disabled="#{ForgotUsernameBean.rmdateOfBirth==null||ForgotUsernameBean.last4DigitEmpId==null||ForgotUsernameBean.rmRestaurantNumber==null}"
action="#{ForgotUsernameBean.validateUserDetailsRM}"
id="m40"/>
</af:subform>
</af:showDetailItem>
</af:panelTabbed>
this is the code i used for paneltabbed.
refresh method is called after each showdetailitem <af:clientListener method="refresh" type="disclosure"/>
when i remove this clientlistener which calls refresh method,panel tab is working fine in safari.
But the problem is watermark functionality works only if a refresh is given
So now im stuck up.. :(
Can somebody pls provide me a soln for this issue.... ??

Similar Messages

  • YouTube will not work on safari for me on the ipad. Is there anyway to fix this? I can go anywhere else on the internet fine and it works on google chrome, but on safari it shows a blank screen with the bar on top after it loads.

    YouTube will not work on safari for me on the ipad. Is there anyway to fix this? I can go anywhere else on the internet fine and it works on google chrome, but on safari it shows a blank screen with the bar on top after it loads, if it's even loading at all.
    I do not know if it's relevant or not, but I got a message on my ipad while on safari saying that my iPhone has a virus. I looked it up and it seems it might have just been an ad from the website I was on, but it happened around the same time YouTube stopped working.

    You will find that using the YouTube app will provide a better viewing experience for YouTube videos.

  • Flash not working in Safari 5

    Flash has been buggy for me in Safari 5, ever since I updated the Flash player last week to "10.1 r53". Either Flash files don't play at all, or just the audio plays without video.
    Per the instructions on these boards, I have:
    1. reset Safari
    2. uninstalled flash player
    3. installed the flash player
    4. repaired permissions
    5. restarted
    The issue is still there. Firefox plays Flash files, YouTube, etc. just fine. Safari does not.
    I'm running SL 10.6.4, latest Software Updates.
    Any suggestions?
    Thanks!

    I created a new account. Flash works in the new account. That's cool, but I really don't want to re-locate all my prefs, etc., just for a buggy plugin.
    So, I next...
    1. grabbed the Safari plist from the new account
    2. logged out of the new account
    3. logged into the old account (where Flash does not work)
    4. moved the old account's com.apple.safari plist file out of the Preferences folder
    5. moved the clean Safari plist file (from the new account) into the Preferences folder
    6. reset and restarted Safari
    7. Flash worked...for about two minutes. I tested on YouTube, Vimeo and Google Analytics. Back to Flash not working in Safari.
    I then tried repeating the earlier steps.
    1. reset Safari
    2. uninstall flash player
    3. install flash player
    4. repaired permissions
    5. restarted
    Still doesn't work.
    Just one other thing to note: whenever I pull up a web page with Flash, I get a "file not found" error in Safari's activity monitor (link is below)...could this be an error with Adobe's website rather than a Safari-permission thing?
    http://fpdownload2.macromedia.com/get/flashplayer/update/current/install/version .xml10.1.53.64~os=Mac&osVer=10.6.4&playerType=pl&cpuWordLength=32&cpuArchitectur e=i386&lang=en

  • NYT videos not working in Safari 5

    NYT videos not working in Safari 5

    Work fine for me - they are just normal Flash videos.
    Make sure your Flash Player is up to date.
    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • Cross-frame scripting is not working in Safari 3.0.4. Minimal example code.

    Hello,
    I've found that cross-frame scripting is not working in Safari 3.0.4, as it worked
    ok on Safari 3.0.1, and in other browsers I tried: Firefox, Mozilla, IE.
    document.domain property is set to "ds2ps.net", correctly to the best of my knowledge
    in the frameset and in both frames. Both frames and frameset are loaded
    from subdomains of the same domain "ds2ps.net"
    Please have a look at this mimimal example:
    http://frameset.ds2ps.net/frames-test/frameset.html
    Press buttons to get alert with value of a variable defined in the frameset
    and in the first frame.
    This gives "undefined" in Safari 3.0.4, and give following message in Safari
    JavaScript console:
    Unsafe JavaScript attempt to access frame with URL http://frameset.ds2ps.net/frames-test/frameset.html from frame with URL http://frame2.ds2ps.net/frames-test/frame2.html. Domains, protocols and ports must match.
    Works ok in all other browsers and in earlier versions of Safari.
    Apperently, I'm doing something incorrectly.
    I would appreciate if Apple Safari developers have a look at this problem and suggest solution.
    My company is developing web application which depends on cross-frame scripting,
    and we would like to continue supporting Safari browser.
    Thank you,
    John

    Thank you, iBod,
    We've submitted this bug at http://bugs.webkit.org
    Bug 16444: Cross-frame scripting not working in Safari 3.0.4 despite proper document.domain set in all frames
    Thank you for your suggestion!

  • My youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome

    my youtube does not work on safari only when i try to play a video it says "This video is not available on mobile add to playlist" But i am using a mac air 11 inch it is not a mobile. Please Help. i have to use the youtube on firefox or chrome. At times it also say QuickTime Player can't open "video.3gp". and
    The file may be damaged or may not be a movie file that is compatible with QuickTime Player. when i try to open a video on youtube on safari

    I too am having the same issue as the OP.
    Your USER AGENT information is Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    Every webserver that receives a request from your browser is able to determine the HTTP USER AGENT information unless it has been removed by some software (e.g. firewall) before the request was trasmitted.

  • Google Voice Widget Not Working in Safari 5.1 which is Adobe flash wmode transparent based

    Google Voice Widget Not Working in Safari 5.1 which is Adobe flash with wmode transparent set. For that matter all flash text fields in Safari 5.1 are not working accross the web when wmode is set to transparent. This is a Safari bug! Other browsers work fine.
    Well after much research Adobe flash text field with wmode transparent set is not working in Safari 5.1 when any flash object has the wmode set to "transparent", or "opaque". The problem is many site must layer flash objects with html so the wmode transparent must be used.
    Affecting sites like BEST BUY, WALMART, CVS, STAPLES, Chechout their flash based weekly ads and find one that you need to update the quantity in the flash pop-up and the text field with keyboard strokes will not work. Flash text fields were all working fine until several month ago when Safari rolled out 5.1 working for Google Voice Flash based widget which uses the wmode transparent. HELP!
    John Hooper
    Techno Online Problem Solver
    http://www.johnrhooper.com

    All 3 examples seem to render just fine in IE and FF.
    See comparison photo:
    http://www.cidigitalmedia.com/web_devel/background.jpg
    If not working for you, try clearing your cache to remove any old, non working versions.
    Test on some other machine besides yours.
    Code looks fine and seems to work.
    Best wishes,
    Adninjastrator

  • Uploading files to website not working with Safari in Windows 7

    Safari version: 5.1.7
    OS: Windows 7
    Hi,
    I am a website owner, and I have a feature on my site where users can upload large (up to 50MB) music files to my server. The feature works in Firefox on OSX & Windows platforms and it also works in Safari on OSX. The uploading feature is not working with Safari for Windows. Do you have any idea why and how to fix this? It can't be an issue with my server as it works in other browsers fine and works fine in Safari for OS X.
    If you have any information on how to solve this or things for me to try to rectify this for use with Windows operating system it would be much appreciated.
    Thanks.

    GREAT NEWS!!!!
    I have solved this issue myself with some help from my a user on Microsoft Forums. The issue stems from the mime type of each Browser Chrome, IE, & Safari for Windows defaults as audio/wav. When the mime type is changed to audio/x-wav everything works. Firefox defaults to audio/x-wav and when changed to audio/wav it DOES NOT work.
    Once I input some code in my .php upload page to change the mimetype if audio/wav is detected everything works GREAT!!!
    So Here is what you need to do: Find your upload page and input this code:
    echo "<p>MIME Type: ".$_FILES["file"]["type"]."</p>";   
    right before your "If/then" statement of file type. For me it was near line 30 in my upload.php page, but I'm sure this is different for everyone.
    This will detect and DISPLAY the default mime type of your browser on the error page when your upload doesn't work. Once you know what mime type works for your file type then you can change your "if/then" statement for mime type upload to change your mime type to the correct one.
    I don't want to give the code here, because I'm sure it's specific to your file types and your site construction, but this should lead you on the right track.
    ***This is the solution if you ARE NOT ABLE to upload any certain file in a certain Browser. It has to do with mime type construction***
    I hope this helps others like it helped me!!!!!

  • Text entry boxes in CP6 - Enter key to validate input does not work in Safari?

    I'm using Captivate 6 to create a step by step walkthrough of some different processes that are commonly completed in my workplace. Some of the example processes have portions where text is entered to simulate a process the end user might need.  I have text entry boxes in these slides that require validation of the input to move along, with Enter used as a shortcut key. This works great in Firefox, Chrome and IE all the way down to 8....but if the course is run in Safari, the enter key does nothing.  Is this a known issue?
    Additional info: For many of these text entry boxes, the point is that it is a search field that has a little binoculars icon next to it that executes the search in the actual software we are simulating. For these slides I actually have the submit button associated with the text box made invisible (no fill, no stroke) and placed on top of the binoculars icon. This is an acceptable method of doing the task we're demonstrating, and just so happens to be a workaround for the enter key not working in Safari. However, a few places we have text entry that doesn't have the search/binocular icon next to it because there is a different goal on that section of the software we're visualizing. In those cases, there is no place for me to put an invisible submit button, and I can't make the submit button visible because that's not how the software we're demonstrating would work (thus defeating the purpose of the training).

    Sorry, this is a known bug with no fix available yet, but the makers of SwiftKey are aware of it and we will work with them to fix it: https://bugzilla.mozilla.org/show_bug.cgi?id=617298
    For now, the only solution is to use a different keyboard when using Firefox.

  • Skype click to call is not working in Safari 6 wit...

    My Skype click-to call is not working on Safari 6 with OS X 10.7.4.  The number highlights, but when I click on the number, nothing happens. I do have Skype installed on the computer and it works fine. I am running Skype for the mac 5.8.0.1027 and skype extension for safari 2.1.0.10405. I have two other macs which are running OS X 10.6.8 and Safari 5.1.7 and the click to call (2.1.0.10405) works great on both of those. I can not get it to work on the mac running Lion. Any help? Thanks

    I reverted back to Safari 5.1.7 from Safari 6 and now Click To Call works.
    For anyone wondering how I did this, you can view instructions here:
    http://apple.stackexchange.com/posts/59342/revisions
    I am new to using Macs and was able to follow these simple instructions. Takes a while for Pacifist to install 5.1.7, but it's worth it to have Click To Call working now.
    You will not be able to do this if you have Mountain Lion as Mountain Lion requires Safari 6.
    Lastly, the next time you update your Mac and it asks if you want to upgrade to Safari 6, say NO. At least not until you see that a fix has been posted here in these forums by either Skype or Apple.
    P.S. I posted this reply using OSX 10.7.4 and Safari 5.1.7

  • Flash Player 10.3.183.10 will not work in Safari on Mac OS X 10.5.8

    Mac OS X 10.5.8
    Safari 5.0.6
    Flash Player 10.3.183.10
    Flash Player10.3.183.10 will not work in Safari on Mac OS x 10.5.8
    The instillation says that it is successful, however when using Safari I'm informed I do not have flash player installed. When I check the hard drive, flash player in no where to be found. I have tried all of the troubleshooting from the Adobe website, and I am still stumped. I was able to get the Flash Player to run in firefox 5.0, but not Safari.
    Please Help!!!! I have searched the discussion boards for days now in my spare time and have not been able to find an answer.
    I am not the most savvy person with computers, what am I missing here??

    In my Library/Internet Plug-ins folder I have a file named Flash Player.plugin (it's 22.8 MB however, not 23.9mb) and another named flashplayer.xpt (it's 4 KB however, not856 bytes).
    I am unable to open the Plug-Ins menu (the browser pops up but wont load)...is there another way to check for Shockwave Flash?? When I do a search for "Shockwave" on my hard drive I do find a plug-in named "DirectorShockwave.plugin" (76 KB)
    Also...The "Open using Rosetta" checkbox was already unchecked

  • Back button not working in safari

    back arrow button not working in safari.

    Safari 6
    Empty Caches
    1. Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        "Develop" menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    2. Quit Safari if open.
        Option click the "Go" menu in the Finder menu bar.
        Select "Library" and then "Caches".
        Look for the folder 'com.apple.Safari"
        Right click "com.apple.Safari" and select "Move to Trash"
        Relaunch Safari.

  • Adobe Flash Player does not work with Safari. What can I do?

    Hi,
    I have a MacBook Pro, Retina, 15 inch, late 2013,  2 GHz Intel Core i7, using OS X 10.9.4. I have installed Adobe Flash Player. In my System Preference, in the advanced settings, it is set to install updates also tells me that I have the NPAPI Plug-in (version 14.0.0.145) installed but not the PPAPI Plug-in. Is this the reason why it does not work with Safari (keeps telling me to download the app, which I did but still does not work)? Is there any way I could fix the problem? Please, help.
    Thanks.

    If you can't install or update Flash, follow these instructions.
    If you have installed the latest version of Flash, please take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. For a "missing plug-in" error, start with Step 8. Back up all data before making any changes.
    Step 1
    You might have to log out or restart the computer before a Flash update takes effect.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Close the window. Then select
               ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.
    Step 3
    If you're only having trouble with YouTube videos, log in to YouTube and load this page. You may see a link with the text "Leave the HTML5 Trial." If so, click that link.
    Step 4
    a. If you get a warning of a "blocked" or "outdated" plug-in, then select the Security tab in the Safari preferences window. In the list of plugins on the left, there should be one—and only one—entry for "Adobe Flash Player," showing the same version number that you installed. Select that entry. On the right there will be a list of websites for which you have specifically allowed Flash, if any. It's normal for the list to be empty. Below that is a menu labeled
              When visiting other websites
    From that menu, select either Allow or Ask.
    b. If you still get the alerts, then go back to the Flash Player preference pane and select the Advanced tab. Click Check Now. Quit and relaunch the browser.
    c. If the alerts still persist, triple-click anywhere in the line below on this page to select it:
    /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources
    Right-click or control-click the highlighted text and select
              Services ▹ Open
    from the contextual menu.* A folder should open. Inside it, there should be a file named "XProtect.meta.plist". If that file is missing and you know why it's missing, restore it from a backup or copy it from another Mac running the same version of OS X. Otherwise, reinstall OS X.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    Step 5
    In the Safari preferences window, select the Advanced tab and uncheck the box marked
              Stop plug-ins to save power
    Step 6
    Open this folder as in Step 4:
    /Library/Internet Plug-Ins
    Delete the following item, or anything with a similar name, if present:
              Flash Player (failing).plugin 
    You may be prompted for your login password.
    Step 7
    Re-download and reinstall Flash. Download it from the domain "get.adobe.com". Don't click a link from any other website, including this one, because you can't trust links. They may be an attempt to trick you into installing malware masquerading as Flash. Type the address into the browser window. Never download a Flash update from anywhere else.
    Step 8
    If you get a "missing plug-in" error, select
              Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked  
              Allow (or Enable) plug-ins
    Then click the button marked
              Manage Website Settings...
    if present and make sure that the website is not blocked for Flash.
    Step 9
    Select
              Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.

  • I have downloaded the latest Adobe Flash on my laptop and it is not working on safari for youtube.I have uninstalled and installed it multiply times and it still wont show me youtube videos

    I have downloaded the latest Adobe Flash on my laptop and it is not working on safari for youtube.I have uninstalled and installed it multiply times and it still wont show me youtube videos

        Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Press " Manage Website Settings" button for more options.

  • HT5364 Adobe flash player not working on Safari after being installed, System OS X 10.9.2 has been just updated to Maverick

    Adobe flash player not working on Safari after being installed, System OS X 10.9.2 has been just updated to Maverick

        Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Click "Manage Website Settings"
        Highlight "Adobe Flash Player", "Allow" and then "Done".

Maybe you are looking for

  • Unzipping  zipfile with sub folders...using zlib java

    Hello, I am encounterig a problem while unzipping a zipfile using zlib.The zip file contaings subdirectories.so i am not able to unzip the zipfile.Since my code is able to unzip only the files which are in current directory.Please help me out to unzi

  • OSA Appraisal - want to filter ROLE

    Hi, We are using 5 different roles(mgr,hmgr,emp,del,co) in our appraisl system.While creating appraisal, the employee selects the part appraiser name and then he  assigns a role to him from the dropdown box(which lists all the roles).But we don't wan

  • Forecast planning functions/sequences

    Hi, I want  to ask you for some advice in two issues. We want to create forecast that is based on actual data from Actual data cube and this forecast save to Forecast data cube (both cubes are in multiprovider) 1) I created sequence , for that I use

  • LR 5.5 and CC 2014 Edit In

    I moved to LR 5.5 and CC 2014. When I'm in LR I no longer have the Edit In capability. All the options are grayed out! Anybody have ideas?

  • Send key sequence to specific window in awesome

    I need send key sequence to foobar2000 running on wine. I think it could be done by focusing foobar window somehow, pasing to it key sequence "ctrl+c" or other, and then focus back to previous window Can i do this in awesome? How? Any reference is ap