Lov command link does not get refreshed

We are using Jheadstart 11.1.1.4.26 with Jdeveloper 11.1.1.4 and we think we have found a bug.
The scenario includes two items, an inputtext (FirstName) and an LovItem (ManagerId)
The LovItem (ManagerId) is dependent on the inputtext (FirstName) with Clear/Refresh and has a Disabled Expession #{bindings.EmployeesFirstName.inputValue==null} so that when the Firstname is null the LovItem (ManagerId) is disabled.
This seems to work fine except from the commandLink of the LovItem which does not get refreshed. This is probably because the Id of the commandLink is not included in the componentsToRefresh item inside the EmployeesFirstNameDependsOnItem.
Of course we could create a custom vm for the default/misc/facesConfig/dependsOnItemBean.vm and pass the id of the commandlink but we are looking for a more generic way.
<managed-bean id="__168">
<managed-bean-name id="__169">EmployeesFirstNameDependsOnItem</managed-bean-name>
<managed-bean-class id="__170">oracle.jheadstart.controller.jsf.bean.DependsOnItemBean</managed-bean-class>
<managed-bean-scope id="__171">application</managed-bean-scope>
<managed-property id="__172">
<property-name id="__173">itemsToClear</property-name>
<list-entries id="__174">
<value id="__175">EmployeesManagerId</value>
</list-entries>
</managed-property>
<managed-property id="__176">
<property-name id="__177">componentsToRefresh</property-name>
<list-entries id="__178">
<value id="__179">EmployeesManagerId</value>
</list-entries>
</managed-property>
</managed-bean>
I sent a testcase to '[email protected]' last friday.
Regards
Vasileios

Vasileios,
Thank, I was able to reproduce this. We will fix it in the next release.
Here is how you can fix it using custom templates:
- add the following macro to your custom macros file:
#macro (ITEM_LINK_PARTIAL_TRIGGERS)
partialTriggers = "#foreach($item in $JHS.current.item.dependsOnItems) #if (($JHS.current.pageComponent.hasOverflowRight || $JHS.current.pageComponent.hasOverflowRightWithSplitter || $JHS.current.pageComponent.hasOverflowBelow || $JHS.current.pageComponent.hasOverflowBelowWithSplitter) && $JHS.current.item.displayInTableOverflow && !$item.displayInTableOverflow)${JHS.current.group.shortName}PC:${JHS.current.group.shortName}Tab:#end${item.id}#end" #end
- in the custom formLovItem and tableLovItem templates, add this macro to the commandLink element:
<af:commandLink immediate="true" partialSubmit="true" #ITEM_DISABLED_IN_FORM() #ITEM_UPDATEABLE_IN_FORM() id="#NEW_ID("cl")" #ITEM_LINK_PARTIAL_TRIGGERS()
Steven Davelaar,
JHeadstart team.

Similar Messages

  • Need to format the drive on a 2006 MacBook Pro 10.6.8. Command R does not get it to recovery mode. I need to format, reload OS10 and partition the drive.

    I tried command R to get into recovery mode. My goal is to format the MBP drive, partition the drive and load Windows through Boot Camp. Disk Utility will not allow access to reformat the drive. Is there another access method to format the drive?

    jjoside,
    Snow Leopard (Mac OS X 10.6.8) does not come with Recovery mode; you’d need Lion (Mac OS X 10.7) or newer for that. If you’d like to reformat your internal disk and reïnstall Snow Leopard on it, you’ll need to boot from the white retail Snow Leopard DVD which was originally used to install Snow Leopard on your MacBook Pro. [Your 2006 MacBook Pro came from the factory with Tiger (Mac OS X 10.4.something) installed.] If you no longer have your white Snow Leopard DVD, you can purchase a replacement Snow Leopard DVD from Apple.

  • Cube does not get refreshed after maitainence

    Hi
    I have a cube in a schema that was existing.
    I have added new data to the fact table that is mapped to the cube.
    I maintained the cube by using the complete refresh option in the analytical workspace manager.
    After maintaining the cube and selecting from the cube view I do not see the new data that I have added.
    I have even tried dropping and recreating the cube but still it does not work.
    I have also tried adding the clean step for all measures and yet it does not work.
    Creating the cube with a different view name is a solution but that is not what I want. I want to be able to refresh the same view.
    Please advise / suggest
    Edited by: CelestialCitizen on Sep 4, 2011 9:53 PM

    Hi All
    The above is a false alarm.
    Basically it turned out that one of the keys in the fact table was not a leaf node in the dimension.
    After rectifying that all works fine now.

  • My jsp page does not get refreshed

    I have a jsp page which looks like -
    the top portion of the page has 3 textboxes and a submit button to add an entity.
    the rest of the page displays a list of all the entities in the system.
    when i load the jsp and add a new entity, the new entity shows up on the list. when i try to add a new entity second time, the entity does get added into the database, but does not show up in the list.
    In the action class, i make a request to the dao and print all the values from the list, returned by the dao. Since the newly added values are present in the list, returned by the dao, i dont think there is anything wrong with my business layer or the DAO layer.i dont understand, why it does not show up in the jsp page.
    any ideas. i am wondering if the data is being cached, so, in the jsp page i have also set the following parameters:
      <head><meta http-equiv="Expires" CONTENT="0"><meta http-equiv="Cache-Control" CONTENT="no-cache"><meta http-equiv="Pragma" CONTENT="no-cache">
    --------------------------------------------------------------------------------Has this to do anything with Struts and Hibernate which i use in my application? The same thing happens, when i edit. when i click on edit button, it takes the user to a different page, i edit the details and click on save button. the control returns back to the list page, but the changes are not shown, although the changes are saved to the db. how do i prevent cache. i am putting my entire list in a request object, before doing an action forward to the jsp page

    Hi,
    instead of using the cache in the meta tag try with the following lines,
    response.setHeader("Cache-Control", "no-cache");
    response.setHeader("Pragma", "no-cache");
    response.setDateHeader("Expires", 0); Regards,
    Bala A

  • Java does not get file list from shared folder in another server.

    Hi,
    I'm using java 1.4.2.16,
    Command below does not get file list.
    import java.io.;*..
    File file = new File("\\\\10.242.22.28\\SapMII");
    File[] files = file.listFiles();
    SapMII folder is Everyone full Control permission.
    How can i solve this problem?
    Thanks.

    Could you please post replies in a more helpful way? Just informing me that it was an NPE doesn't really tell me anything. Post the stacktrace (Exception#printStackTrace()). And the listFile() methods API has this to say:
    Returns null if this abstract pathname does not denote a directory, or if an I/O error occurs.I'm able to run this sample code easily:
    import java.io.File;
    public class TestFileList {
         public static void main(String[] args) {
              File file = new File("\\\\10.40.55.33\\shared");
              File [] files = file.listFiles();
              for(File currentFile: files )
                   System.out.println(currentFile.getName());
    }

  • ALV tree  not getting refreshed

    Hi
    I have 2 fields A and B in the main screen and a tabstrip with 4 tabs.
    Each tab contains a ALV tree
    Now when I open the main screen for the first time the ALV tree data is coming properly as per the default values of A and B.
    But when I change the values of A or B the ALV tree does not get refreshed. The final table has the changed data but the ALV shows only the old data.
    I am doing the ALV tree for the first time in module pool. Please provide some sample code to refresh the ALV tree.
    Regards,

    Hi
    Alv tree is now getting refreshed.The subscreen refresh problem is solved
    we have to use REFRESH_TABLE_DISPLAY method to do it.
    if tree1 is initial
       create object
       create container
      call method set_table_for_first display
    else.
      call method refresh_table_display.
    endif.
    Regards,
    Mozila

  • I'M AN AMERICAN ON TEMPORARY ASSIGNMENT IN ITALY AND CANNOT GET TO ANY HELP SOURCE ONLINE OR BY THE PHONE NUMBERS LISTED ONLINE.  I'M TRYING TO RENEW MY ONE TO ONE SUPPORT PROGRAM AND THE "RENEW NOW" LINK DOES NOT WORK!  HELP!

    APPLE SENT ME AN E-MAIL WITH A LINK TO RENEW MY ONE TO ONE SUPPORT.  THE LINK DOES NOT WORK.  AFTER I LOG INTO MY APPLE ACCOUNT AND CLICK "RENEW NOW" FOR ONE TO ONE, AN ERROR MESSAGE APPEARS SAYING "PAGE NOT FOUND".  AMAZING.  WHEN I TRY TO CALL THE TOLL FREE APPLE SUPPORT NUMBER FROM MILAN, ITALY WHERE I AM NOW LIVING, IT DOESN'T WORK. THE ITALIAN SUPPORT DESK APPEARS TO BE AVAILABLE ONLY ON WEEKDAYS DURING NORMAL BUSINESS HOURS.  HOW CAN I REACH A LIVE APPLE SUPPORT PERSON?

    Start by going here - https://expresslane.apple.com/GetproductgroupList.action?locale=it_IT
    Best of luck.

  • Hme0:DLPI link does not exist

    hello guys,
    This is my first post in this forum....I've installed Solaris 10 recently in my ia64 pc.
    I've encountered a problem configuring my network to create a pppoe connection to my ISP. To add a network interface I issued the following command:
    #ifconfig  hme0 plumbbut it gave me 'unknown interface hme0:DLPI link does not exist' error
    on issuing#ifconfig -a I got there was only a loopback interface lo present in the list
    I have two question here:
    1) I've nVidia Corporation MCP73 Ethernet controller( is that called a NIC? ). Does Solaris 10 recognize them?
    2) Is there any GUI tool to configure network in Solaris like network-manager in Linux?
    and obviously a final question:
    How to finally get rid of this error?

    Thanks for your informations.Now I've been gradually realising the CLI-orientation of Solaris.In a large server environment automation is king. The easiest way to automate things is to use some scripting language. Not a GUI.
    I've modified /etc/ppp/peers/myisp.tmpl and other /etc/ppp/*.tmpl file according to my need and added /etc/resolve.conf and /etc/defaultrouter files with primary and secondary IP and defaultroute in them.At last I issuedpppd call <ISP> and got a sppp0 pppoe interface connected.
    My DNS client is in offline state and the following commandsvcadm -v enable dns/client
    svcadm -v refresh(or restart) dns/client showed the resultsvcs -a|grep dns/client as offline.Impossible. There simply is no such thing as a DNS client. All the DNS client is, is a mechanism that support hostname lookups through the resolver libraries.
    You need to check /etc/nsswitch.conf for the dns tag on the hosts and ipnodes lines. After that make sure that /etc/resolv.conf is populated correctly.
    You can use dig or nslookup to see if it is setup correctly. Post the complete output of either one so we can see what you're seeing.
    alan

  • Tree Table is not getting refreshed properly in Jdev 11.1.2.0

    Hi,
    I am seeing a peculiar issue with tree table not getting refreshed in Jdev 11.1.2.0.
    Let me explain you my use case.
    I have a tree table in a page, where the first column is displayed as selectBooleanRadio component. When user selects this selectBooleanRadio component, that treetable node should get expanded and at the same time all the child records(I have a select boolean check box component(transient attribute) at the child level) for that node should get selected. This is to allow user to unselect the child records, which he/she does not want to process further(some functionality).
    Now when the user selects any radio button, the tree table node is not expanded, but the arrow beside the radio button for that node can be seen as expanded.
    I thought it may be a partial trigger issue, so i tried refreshing the tree table programatically as well. But it was of no use.
    Then I set the partial triggers wrt to SelectBooleanRadio component on the parent container of the TreeTable. After which somehow the node got expanded but the tree table shrinks in width and the actual disclosure functionality of a tree table is lost.
    The same use case works perfectly fine in Jdev 11.1.1.5.
    For reference:
    I created a sample test case(Dept/Emp) in jdev version 11.1.1.5, which works fine. Workspace: http://adf-use-cases.googlecode.com/files/TreeTable1.rar
    But the same test case, when i created in jdev version 11.1.2.0, gives issues. Workspace: http://adf-use-cases.googlecode.com/files/TreeTableUseCase.rar
    If you download the application and run in respective jdev version, you will get to know more about the issue.
    Please let me know, If I am doing anything wrong in the implementation of this use case.
    Any help/suggestions are appreciated.
    Thanks
    Umesh
    Note: My complete application is in Jdev 11.1.2.0, so I can't degrade my jdev version to 11.1.1.5.

    Thanks Frank for the reply.
    But upgrading the jdeveloper to 11.1.2.2 is not an ideal solution for us now, because of the size of the project.
    Some how, the issue of refreshing the tree table is resolved. I am using a command button with clientComponent to true and causing a full page refresh.
    I am not sure, if this is a perfect solution.
    As you said, that this behavior may be an issue with the Jdev version 11.1.2.0, I am using. I am going with the above said approach.

  • Hostname verifier does not get invoked

    Hi All,
    I am new to weblogic and currently facing an issue with SSL. I checked this forum but none of the solutions really worked for me, so seeking advice starting a new thread. Kindly help.
    Problem 1
    I have a REST webservice running in one weblogic server and another weblogic server contains a client which is based on the code from the following link -
    http://wiki.open-esb.java.net/attach/RestBCEchoSSL/SslClient.java
    One way handshaking is enabled in both the weblogic and the KeyStore and Truststore are read from configurable directory in the client java code. I specify a directory which resides outside weblogic home.
    Even though there is an HostnameVerifier implemented in the code to return true always, it does not get invoked and I get a certificate exception as below -
    <Warning> <Security> <BEA-090542> <Certificate chain received from xx.yy.zz.rrr - xx.yy.zz.rrr was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    But when I run the java client from Eclipse I am able to invoke the webservice methods using HTTPs.
    So is not it possible to add a default hostname verifier as in the java code when the application is deployed in weblogic?
    Problem 2
    I another attempt to solve the above issue I turned off the hostname verification from weblogic admin console in the client weblogic side. In the console for the server Configuration > SSL->Hostname Verification field is set to "None". But that did not help.
    Then I added the '-Dweblogic.security.SSL.ignoreHostnameVerification=true' flag into the <domain>/bin/startWebLogic.sh file and restarted the weblogic. No luck again.
    ${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} ${JAVA_OPTIONS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WL_HOME}/server/lib/weblogic.policy -Dweblogic.security.SSL.ignoreHostnameVerification=true ${PROXY_SETTINGS} ${SERVER_CLASS}
    I tried recreating the certificate using the' hostname' instead of the ip address ( also added an entry into the /etc/hosts file putting the ip and hostname so that I can do ping <hostname> from the client and get response returned from the server side). Again no luck :(. I keep getting the same handshake failure as mentioned above.
    The weblogic version is 10.x.
    Thanks,
    Amrit

    I did some more research for the issue mentioned which I yet to get rid of.
    1) I wrote a REST web service which makes a call to another REST service deployed on another weblogic using HTTPs (same code as mentioned above is used). I delpoyed the war and made a http call to the first webservice, the other REST service was invoked successfully using HTTPs. So this confirmed that there is no problem with the certificates or keystore or hostname verifictaion.
    2) My actual application still throws the handshake exception as below -
    <Warning> <Security> <BEA-090542> <Certificate chain received from xx.yy.zz.rrr - xx.yy.zz.rrr was not trusted causing SSL handshake failure. Check the certificate chain to determine if it should be trusted or not. If it should be trusted, then update the client trusted CA configuration to trust the CA certificate that signed the peer certificate chain. If you are connecting to a WLS server that is using demo certificates (the default WLS server behavior), and you want this client to trust demo certificates, then specify -Dweblogic.security.TrustKeyStore=DemoTrust on the command line for this client.>
    So I think the problem is something else but weblogic is priniting the exception message wrong.
    The process hierarchy ( in UNIX ) is as shown below -
    bea 31914 31913 0 14:29 ? 00:00:00 /bin/sh <DOMAIN HOME>//bin/startWebLogic.sh
    bea 31989 31914 0 14:29 ? 00:01:25 /opt/bea/jdk160_24/bin/java <The weblogic start server process> started by startWebLogic.sh
    bea 32107 31989 0 14:29 ? 00:00:09 /opt/bea/jdk160_24/bin/java <One of custom process>
    bea 2038 32107 0 18:38 ? 00:00:15 /opt/bea/jdk160_24/bin/java <Another custom process which contains my java classes containing the REST client>
    The problem is there in both Weblogic 11 and 10.3 version.
    I will be grateful if someone gives any clue about the problem.

  • Firefox 34.05 does not always refresh screen

    When I move from one tab to another the screen does not always refresh. Same happens when I close a tab - the screen will still show the deleted tab. This does not happen all of the time - but enough to be an issue.

    ''James [[#answer-672408|said]]''
    <blockquote>
    Firefox 34.0.5 is not doing the blocking as it is due to the blocklist. https://addons.mozilla.org/firefox/blocked/
    Adobe Reader '''10.0 to 10.1.5.*''' has been blocked for your protection.
    https://addons.mozilla.org/firefox/blocked/p158 (Blocked on October 5, 2012)
    You were looking at another blocklist page which was https://addons.mozilla.org/firefox/blocked/p156 posted on same day.
    The https://www.mozilla.org/plugincheck/ is not always accurate or reliable (needs to be manually updated) as Adobe has not been keeping the Adobe products versions to check for updated on that page as the recent Flash updates on December 9 has shown.
    It is however accurate when it says versions in Plugins panel of Addons Manager is outdated.
    There is Adobe Reader 11.0.10 though it seems like Adobe still provides 10.1.4 at http://get.adobe.com/reader/otherversions/ yet newer versions are at http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    </blockquote>
    James, why does the Firefox addon page link to the 9.5 "blocked for your protection" page instead of the 10.5 blocked page? Is that a mistake/failure to update on Adobe's part? That seems like something that should be controlled on the Mozilla side, since it has the 10.5 blocked page in existence as well. Should someone be notified that it's giving the wrong page to people?
    The adobe update you linked to made it stop saying it's out of date, but what about the Java Development Toolkit? (As pictured in attached image #3). How should I go about getting that up to date?

  • Data is not Getting refresh in Dashboard

    Hi I have implemented Xcelsius on the top of SAP BI System.
    I have the following architecture -
    SAP BI Cube --> BO XI 3.1 Universe Based on Cube --> QWaaS on the Universe --> Xcelsius Dashboard on the QWaas.
    When i created a dashboard and run it , it worked fine and showed me data , which is lying in Cube.
    But When the Data get updated in Cube and i again refresh the Dashboard , It still showing me the old data , the Data is not getting refresh in Dashboard .
    what could be the possible casue ?
    Is QWaas always fetch the dat at run time ?
    Thanks

    QaaWS web service call needs to be invoked to get the data updates from the datasource. Xcelsius provides several options to command how frequently web services connections are calle/refreshed ('refresh on load', 'refresh every X seconds' or trigger cells...).
    You should also keep in mind, that, since QaaWS hits datasource each time web service is called, this can bring some performance issues (web service calls WebI server to run corresponding query, which performs a refresh). In order to mitigate this, since XI 3.0, QaaWS features a cache mechanism, that is used to store data results from each query refresh (corresponding to a web service call), in order to serve it again with better efficiency, in case same request is performed during a specific time interval (which typically corresponds to dashboard interactions).
    Cache sessions are sorted according to the user names and prompt values used, cache is emptied after a defauilt duration without any interaction (request from the same session).
    Cache timeout duration is set for each QaaWS query, and can be tuned from QaaWS Designer when modifying/creating the query : go to Advanced... button on first step of query edition wizard, cache lifetime corresponds to timeout value (in seconds) displayed on Advanced parameter panel (default value being set to 60 seconds).
    Cache lifetime may also be an explanation why you do not see data refreshed (if you are with QaaWS XI 3.0 or later).
    Hope that helps,
    David.

  • Oracle BI Publisher Report from OEM12c data is not getting refreshed...

    Hello,
    We've integrated BI Publisher with EM12c. I've developed a report which checks a given database extents information (initial, next, maxextents) at tablespace level. The dataset is chosen as EM repository. The report runs absolutely fine until new data is added to a database. For eg, I created a new tablespace. The new tablespace related info is not getting refreshed despite the fact that I've refreshed the data source and checked that the tablespace exists in the database.
    Can anyone pls help.
    Thanks,
    Dhananjay

    Dhananjay,
    Has the data in the EM repository view been refreshed? The report retrieves data via the published repository views. If the view does not display the latest information, then you will have to wait till the relevant config or monitoring collections are complete.

  • Solution Manager does not get service definitions from SAP in self diagnosi

    Hi,
    In our production solution manager transaction solution_manager, self diagnosis we are getting a warning message on our development solution manager. 
    Solution Manager XXX does not get service definitions from SAP.
    The production Solution Manager is the master in SDCCN for the test Solution Manager.  In the test Solution Manager, the scheduled task REFRESH SERVICE DEFINITIONS has task System ID of O01.  It is pointed to RFC destination SDCC_OSS, not the production Solution Manager system.
    It gives the same warning if I point the task to the production Solution Manager system.
    Has anyone seen this before?  Any ideas?
    Best regards,
    Russ

    Hi,
      i guess have you activated SDCCN from your solution manager system too?
    if not please activate. since that setup helps solman retrive the service definitions used in SDCCN from SAP (SAPOSS).so this ultimately allows you to set solution manager system as Master, so all the satellite system get the service definition from solman and do not need a direct SAPOSS connection.
    and Please check this Note 1143775 - SAP service content update
    the wiki for trouble shoot ["EarlyWatch Alert is Red Flagged - how to resolve" |http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=228262728]
    please check.
    Thanks,
    Jansi

  • Cell data not getting refreshed in which user enters data OO ALV(editable)

    Hi Friends,
    I am using OO ALV for editable grid display.
    I am unable to change grid data in the cell in which user enters something, using OO ALV. Did through debugging of my own program and found that some problem with system program. Then I did all system debugging. Could not find out why is the grid not getting refreshed with the new data in the cell in which user had entered some value. Rest of the cell's data are getting refreshed with the values which i am updating in the final internal table. I can see that the data in the final internal table is changed for the cell in which user enters data. But even after the call of
          CALL METHOD obj_alvgrid1->refresh_table_display
    does not refreshes the data in the cell in which user had entered data. Rest of the cells data are getting refreshed.
    Piece of code:
      SET HANDLER obj_event_receiver->handle_data_changed
                                         FOR obj_alvgrid1.
        METHODS: handle_data_changed
                       FOR EVENT data_changed OF cl_gui_alv_grid
                           IMPORTING er_data_changed
                                     e_onf4
                                     e_onf4_before
                                     e_onf4_after.
    METHOD handle_data_changed.
      DATA : v_valid    TYPE char1,
             v_refresh  TYPE char1.
    *--check mt_good_cells semantically
      CALL METHOD perform_semantic_checks( er_data_changed ).
    *--If PBO is again visited, just refresh the ALV grid.
      CALL METHOD obj_alvgrid1->refresh_table_display
        EXCEPTIONS
          finished = 1
          OTHERS   = 2.
      IF sy-subrc <> 0.
        EXIT.
      ENDIF.
    ENDMETHOD.
    METHOD perform_semantic_checks.
        LOOP AT er_data_changed->mt_good_cells INTO w_good.
          v_index = sy-tabix.
          CASE w_good-fieldname.
            WHEN 'ZASCAS'.
    *Now here based on some conditions I am changing my final internal table i_zamtsmatnp
                              MODIFY i_zamtsmatnp FROM w_zamtsmatnp INDEX
                                               w_good-row_id TRANSPORTING
                                                 zascas modif.
    User enters data in zascas field. Based on the data entered, I am changing other fields which is getting refreshed. I am also changing zascas in the program even after user had already entered the value which was bit wrong and i am correcting it in the program on the even "data_changed" even.
    Please help me friends as i m strugling past hours wondering why the data is not getting refreshed for the cell in which user enter data.
    Regards,
    Surya

    Hi Surya,
       The approach you are following is correct. You need to use the comibnation of all these things:
    Event - DATA_CHANGED
    Methods - CHECK_CHANGED_DATA
                 -  GET_CHANGED_DATA.
    However, here are few standard programs which are having similar functionality.
    BCALV_EDIT_03
    BCALV_EDIT_07
    Check out these once.
    Note: If anything is helpful, dont forget to reward points
    Thanks,
    Adithya K
    SAP Practise
    [email protected]

Maybe you are looking for

  • How can I edit the right-click context menu?

    I seem to have two entries for every Adobe product when I right-click a file and choose "Open With..." Is there a way to either clean it out automatically, or fix this myself? ...Mike

  • [solved] zsh, compinit and colors

    Hi all, I've just updated my zsh package to version 4.3.11-1 and now I can't run two of its built-in functions, namely compinit and colors. My .zshrc contains the following code: # rest of ~/.zshrc ... zstyle :compinstall filename '/home/andre/.local

  • Problem in whatsapp and opera mini

    after upgrading to that version of whatsapp in which new smiley's were added i am facing this problem. I cant send and recieve images or ne media through cell network but it works through wifi , but before that update i was able to send or recieve me

  • Semi-transparent JFrame

    I'm creating an address book for my java class and was wondering if theres any way to make a JFrame semi-transparent like how winamp and trillian skins so you can see the desktop behind it. I've messed with a few different things I've found on the we

  • Ingest question for any Red users

    Hi there, just wanted to get a rough idea on which of the following Red cutters prefer as their ingest method. (I'm going back to R3D files for main post but all ingest is to Pro res for cutting now) 1. use FCP log & transfer tool 2. use Redcine-x 3.