CommandLink Not Firing Action

Hi,
I am trying to use the commandLink to fire a action but somehow it does not fire at all !!!
I am doing just like in the commandButton, is submiting the form but the action method does not fire at all.
here is my code:
---------------- JSP ------------------------------
<h:commandLink binding="#{main.cmdDelCatDayItem}" id="cmdDelCatDayItem" action="#{main.delCatDayItem}" value="">
<h:graphicImage style="border-width: 0" value="/images/NextArrow.gif"/>
<f:param name="itemId" value="#{item.itemId}"/>
<f:param name="categoryId" value="#{cat.categoryId}"/>
</h:commandLink>
-------------- main.java ---------------------------------
private HtmlCommandLink cmdDelCatDayItem = new HtmlCommandLink();
public HtmlCommandLink getCmdDelCatDayItem() {
return cmdDelCatDayItem;
public void setCmdDelCatDayItem(HtmlCommandLink hcl) {
this.cmdDelCatDayItem = hcl;
// ACTION METHOD
public java.lang.String delCatDayItem()
try {
FacesContext fc = FacesContext.getCurrentInstance();
int cat_id = Integer.parseInt(fc.getExternalContext().getRequestParameterMap().get("categoryId").toString());
int item_id = Integer.parseInt(fc.getExternalContext().getRequestParameterMap().get("itemId").toString());
// int dated = Integer.parseInt(fc.getExternalContext().getRequestParameterMap().get("day"));
//DAL dal = new DAL();
//boolean res = dal.delCatDayItem(cat_id, item_id, dated);
return "test2";
catch ( Exception e) {
log("Delete error", e);
throw new FacesException(e);
} //delCatDayItem
Can someone help to fire this lazy commandLink ?
Tx for yor help

Well...its a bug that they are still trying to fix...I used this code and it works...try this
<h:dataTable value="#{progs.rows}" var="g" id="grid1" binding="#{mainBean.d1}">
<h:column id="c1">
<f:facet name="header"><h:outputText value="Codice" id="h1"/></f:facet>
<h:commandLink actionListener="#{mainBean.aggCampi}" action="schedaProg" id="link1">
<h:outputText value="#{g.ID}" id="c1Text" />
<h:inputHidden id="hid" value="#{g.ID}" binding="#{mainBean.UIID}" />
</h:commandLink>
</h:column>
<h:column id="c2">
<f:facet name="header"><h:outputText value="Nome" id="h2"/></f:facet>
<h:outputText value="#{g.NOME}" id="c1Text2" binding="#{mainBean.UINome}" />
</h:column>
<h:column id="c3">
<f:facet name="header"><h:outputText value="Descrizione" id="h3"/></f:facet>
<h:outputText value="#{g.DESCRIZIONE}" id="c1Text3" binding="#{mainBean.UIDesc}" />
</h:column>
<h:column id="c4">
<f:facet name="header"><h:outputText value="Riferimento" id="h4"/></f:facet>
<h:outputText value="#{g.ID_SUP}" id="c1Text4"/>
</h:column>
</h:dataTable>
I just added the tag <f:facet> before the command link to avoid the problem...
let me know...
Best regards,
Gabriele

Similar Messages

  • On Command Link Action is not Firing

    Hi
    I am using JDev Version 11.1.1.6
    I have command link where i wrote a method in bean for Action. And the same command link has the showpopup behaviour
    My assumption was on click of command link Action method fires first then showpopup behaviour fires next.
    But when i click on command link action method is not firing, only showpopup behaviour is firing .
    is it expected behaviour?
    Many Thanks,
    ~Jagadeesh Badri

    Hi Jagadeesh
    Yes, it is an expected behaviour. The documentation about af:showPopUpBehaviour says that:
    The showPopupBehavior tag cancels the client event defined by the triggerType. Canceling the client event will prevent delivery to the server. This is significant for action events raised by command family components because the server-side action listeners will be ignored. All actionListener method bindings and associated action listeners will not be invoked when the triggerType of "action" is used.
    This means that if you use the triggertype of action, then your action method in the link will be ignored. Maybe if you change the triggerType to 'Click' you will get your actionListener triggered and the popup showed.

  • ActionListener not firing within panelGrid (which is within a dataTable)

    I have a page with several forms on it:
    <h:form>
    ... commandLinks here are working
    </h:form>
    <h:form>
    <h:panelGrid>
    ...the actionListener here is firing
    </h:panelGrid>
    </h:form>
    <h:form>
    ... commandLinks here are working
    </h:form>
    <h:dataTable value="#{collection}" var="item">
    <h:column>
    <h:form>
    <h:panelGrid>
    ...actionListeners here ARE NOT FIRING!
    </h:panelGrid>
    </h:form>
    </h:column>
    </h:dataTable>
    I've tried many things to get this to work. I've checked spelling at least 10 times. I've put the whole page in a single form. Nothing seems to work. The bean associated with the actionListener is not even being instantiated unless I include a value binding expression in the form somewhere, but even then the listener is still not fired.
    So, please tell me if this is a known bug, or if it should work. I'm using JSF 1.1_1.
    All the data and form fields get displayed correctly, just the actionListeners are not firing. I've tried both methods of triggering an actionListener. Neither work.
    Why doesn't anyone from Sun post here anymore?????

    Could you please copy/paste the whole jsp page?I had to abandon the previous page structure due to time constraints. But, now I am having the same problem on another page, pasted below. In this case, the contactInfoForm.populate actionListeners are not firing:
    <?xml version="1.0" ?>
    <jsp:root version="2.0"
      xmlns:jsp="http://java.sun.com/JSP/Page"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:c="http://java.sun.com/jstl/core"
      xmlns:x="http://java.sun.com/jstl/xml"
      xmlns:fmt="http://java.sun.com/jstl/fmt"
      xmlns:t="http://jakarta.apache.org/struts/tags-tiles"
      xmlns:htm="http://jsftutorials.net/htmLib">
      <f:subview id="content">
        <htm:div styleClass="heading">
          <htm:h2>
             <h:outputFormat value="#{msgs[heading]}">
                <f:param value="#{param.firstName}" />
                <f:param value="#{param.lastName}" />
             </h:outputFormat>
          </htm:h2>
        </htm:div>
        <htm:div styleClass="contentContainer">
        <h:messages/>
        <h:form>
          <h:commandLink id="backToPersons" styleClass="commandLink1" action="section.persons">
             <h:outputText value="#{msgs['persons.common.command.backToPersons']}"/>
          </h:commandLink>
        </h:form>
        <h:form style="padding-top: 10px">
          <h:commandLink id="newContactInfo" styleClass="commandLink1" action="/persons/contactInfo/newContactInfo">
             <h:outputText value="#{msgs['persons.person.contactInfo.list.command.new']}"/>
             <f:param name="personId" value="#{param.personId}"/>
             <f:param name="firstName" value="#{param.firstName}"/>
             <f:param name="lastName" value="#{param.lastName}"/>
          </h:commandLink>
        </h:form>
        <h:form>
           <h:dataTable value="#{contactInfoForm.contactInfoList}" var="contactInfo" cellpadding="5" cellspacing="0" styleClass="dataTable" headerClass="dataTableHeader" rendered="#{contactInfoForm.hasContactInfo}">
              <h:column>
                <f:facet name="header">
                   <h:outputText value="#{msgs['persons.person.contactInfo.list.header.contactInfoId']}"/>
                </f:facet>
                <htm:center><h:outputText value="#{contactInfo.contactInfoId}" styleClass="dataTableContent"/></htm:center>
              </h:column>
              <h:column>
                <f:facet name="header">
                   <h:outputText value="#{msgs['persons.person.contactInfo.list.header.description']}"/>
                </f:facet>
                <h:outputText value="#{contactInfo.description}" styleClass="dataTableContent"/>
              </h:column>
              <h:column>
                <f:facet name="header"></f:facet>
                <htm:center>
                   <h:commandLink styleClass="commandLink1" action="/persons/contactInfo/viewContactInfo" actionListener="#{contactInfoForm.populate}">
                      <f:param name="firstName" value="#{param.firstName}"/>
                      <f:param name="lastName" value="#{param.lastName}"/>
                      <f:param name="contactInfoId" value="#{contactInfo.contactInfoId}"/>
                      <h:outputText value="#{msgs['command.view']}"/>
                   </h:commandLink>
                </htm:center>
              </h:column>
              <h:column>
                <f:facet name="header"></f:facet>
                <htm:center>
                   <h:commandLink styleClass="commandLink1" action="/persons/contactInfo/editContactInfo" actionListener="#{contactInfoForm.populate}">
                      <f:param name="firstName" value="#{param.firstName}"/>
                      <f:param name="lastName" value="#{param.lastName}"/>
                      <f:param name="contactInfoId" value="#{contactInfo.contactInfoId}"/>
                      <h:outputText value="#{msgs['command.edit']}"/>
                   </h:commandLink>
                </htm:center>
              </h:column>
           </h:dataTable>
           <h:outputText value="#{msgs['persons.person.contactInfo.list.noRecords']}" styleClass="copy2" rendered="#{not contactInfoForm.hasContactInfo}"/>
        </h:form>
        </htm:div>
      </f:subview>
    </jsp:root>

  • Why actionlistener not fired?

    Dear All,
    I have two tables with different data bindings, rendering output in one column as comnadLink component
    On both tables comnadLink components has actionlistener binded to one method on backing bean.
    For some reason actionListener is not firing for one of the tables. It does not metter which compannent I will use for rendering (table or tree) actionListener never fires when this particualr binding is used.
    What could be the reson?

    Hi Again,
    Below is page definition and actual page source.
    Workflow is following:
    1. There is page showResult to render some report outcome
    2. Page definition has one invokeMethod which accepts parameter resultId and calls remote EJB
    3. During workflow resultId is stored by another backing bean in requestScope #{requestScope.resultId} and call forwarded into showResult page
    4. Outcome rendered correct by showResult page. Part of the outcome is comandLink component within iterator (or table)
    5. Clicking on comandLnk should result in calling method on backing bean but it is not happen. Method is not called.
    6. Any other comandLink components out of iterator work correctly.
    I tried to use table and ADF component instead of trinidad, but result is the same.
    If I replace #{requestScope.resultId} by hardcoded value in page definition , then commandLink works
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel" version="11.1.1.56.60" id="showResultPageDef"
                    Package="client.pageDefs">
      <executables>
        <variableIterator id="variables" Refresh="always"/>
        <methodIterator Binds="getResultBytId.result" DataControl="ResultEJB" RangeSize="200"
                        BeanClass="model.entity.Result"
                        id="getResultByIdIterator" Refresh="always" CheckParams="true"/>
      </executables>
      <bindings>
        <methodAction id="getResultById" Action="invokeMethod"
                      MethodName="getResultById" DataControl="ResultEJB"
                      InstanceName="ResultEJB.dataProvider"
                      ReturnName="ResultEJB.methodResults.getResultById_ResultEJB_dataProvider_getResultById_result">
          <NamedData NDName="resultId" NDValue="#{requestScope.resultId}"
                     NDType="java.lang.Object"/>
        </methodAction>
        <tree IterBinding="getResultByIdIterator" id="Result" ChangeEventPolicy="none">
          <nodeDefinition DefName="model.entity.Result" Name="Result0">
            <AttrNames>
              <Item Value="description"/>
              <Item Value="header"/>
              <Item Value="value"/>
            </AttrNames>
            <Accessors>
              <Item Value="resultDetails"/>
            </Accessors>
          </nodeDefinition>
          <nodeDefinition DefName="model.entity.ResultDetails" Name="Result1">
            <AttrNames>
              <Item Value="description"/>
              <Item Value="nextParams"/>
              <Item Value="nextStep"/>
              <Item Value="value"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
      </bindings>
    </pageDefinition>Page:
    <tr:iterator var="h" rows="0" first="0" value="#{bindings.Result.collectionModel}" id="hiter">
    <tr:commandLink text="#{h.value}" id="cl1"
                                            actionListener="#{backing_showResult.proceedDrillDown}" immediate="true"/>
    </tr:iterator>Any suggestions?
    Thank you.

  • WHEN-NEW-ITEM-INSTANCE TRIGGER NOT FIRING IN FORM PERSONLIZATION

    We are upgrading to R12, when-new-item-instance trigger written for radio group not firing. using USO-821 Order Administrator Responsibility the function order capture.After clicking on actions push button
    opening Copy Quote for this Form Personalization written.
    For Radio Group Copy-Group when-new-item-instance trigger written but this trigger not firing,but In 11i Instance its Firing.
    trigger-event: when-new-item-instance
    Trigger-object:copy_group
    condition:when copy_group='ALL'
    Action: showing message.
    The same when-new-instance trigger written in form item level and trigger execution hierarchy properties 'OVERRIDE'.
    Just I am thinking this overriding by Item level trigger of form.
    Please kindly help me quickly .What I need to do?
    How can I make trigger to Fire?
    Please kindly give solution.....Its very urgent Requirement.pls help me.
    Regards,
    Basavaraj

    Please kindly help me quickly .What I need to do?
    > Please kindly give solution.....Its very urgent Requirement.pls help me.
    Kindly log a SR for urgent issues.
    Thanks,
    Hussein

  • WHEN-NEW-ITEM-INSTANCE TRIGGER NOT FIRING IN FORM PERSONLIZATION(R12 UPGRAD

    We are upgrading to R12, when-new-item-instance trigger written for radio group not firing. using USO-821 Order Administrator Responsibility the function order capture.After clicking on actions push button
    opening Copy Quote for this Form Personalization written.
    For Radio Group Copy-Group when-new-item-instance trigger written but this trigger not firing,but In 11i Instance its Firing.
    trigger-event: when-new-item-instance
    Trigger-object:copy_group
    condition:when copy_group='ALL'
    Action: showing message.
    The same when-new-instance trigger written in form item level and trigger execution hierarchy properties 'OVERRIDE'.
    Just I am thinking this overriding by Item level trigger of form.
    Please kindly help me quickly .What I need to do?
    How can I make trigger to Fire?
    Please kindly give solution.....Its very urgent Requirement.pls help me.
    Regards,
    Basavaraj

    Please kindly help me quickly .What I need to do?
    > Please kindly give solution.....Its very urgent Requirement.pls help me.
    Kindly log a SR for urgent issues.
    Thanks,
    Hussein

  • Tirgger not firing sometimes

    Hi,
    Here is the problem:
    Table A has 4 triggers and one of them is updating a field in table B. On all but one installation table B does not get updated all the time. (We have this code on different versions of Oracle on Solaris, Windows and Linux)
    From the triggers one is on delete and the other three are on "insert or update" including the one, which is supposed to update the B table. A simple update of the record usually takes care of the problem meaning that the trigger gets fired and the B table gets updated. At one point I had to run the update two times for the trigger to fire but I have not been able to reproduce this (update not firing the trigger)
    There is nothing to disable the triggers. We have not been able to find anything special about the records, which when inserted in A and for which the trigger did not fire at the time.
    Could it be that the existence of several triggers all of which are on "insert or update" causes the problem? What else can we look into? It is rather annoying because it happens only every so often and it is usually discovered days after the fact.
    Thanks,
    Jivko

    HI,
    Generally if the trigger size exceeds 64K, it may not fire for the given action even though it is a right action. What i will suggest you is, Please split your "insert OR update" trigger into two different individual triggers, i.e, one with insert and another with update. Even if it exceeds, incorporate some of the functionality into PL/SQL block (procedures) and call it inside the Trigger.
    Regards,
    G. Rajakumar.

  • Alert not firing for SQL Statement Script

    Hi All,
    I have defined an alter which will trigger when a requisition is stuck with the requestor.
    At the time i need to send an email to the requestor and update the status of the requisition to 'INCOMPLETE'.
    i have defined two action sets one for email and another for update. The email part is working fine but the sql script which updates the status is not firing.
    It is a standard script residing in PO directory sql.
    It has two parameters
    1) Requisition number 2) org_id
    these two are the output of the mail alert query.
    i have defined the application as 'Puchasing'
    arguments as &SQL_REQ_NUMBER &SQL_ORG_ID
    and gave the file name 'poresreq.sql' in the file location.
    but the status is not updating.
    how can i know the reason for not firing.
    Regards,
    Jana

    Hi Jana;
    What is your EBS and OS? Did you run query manualy? Did you get any error message?
    Regard
    Helios

  • Firefox not firing the IOErrorEvent

    Firefox not firing the IOErrorEvent when load fails due to
    unavailability of internet connection in URLLoader.
    I am loading data in my application based on user actions. If
    the user is disconnected and he makes a request for data load, the
    IOErrorEvent tied to the URLLoader object is not being thrown in
    firefox. The same thing works fine for IE where on IOErrorEvent I
    am displaying appropriate message but in case of firefox nothing is
    happening.
    Any ideas about what is going on.
    Rahil

    I guess we don't have a lot of .Net developers on this site.
    Obviously your server-side .Net code has to be translated into corresponding client-side JavaScript in order to add event handlers to the page. And errors running that JavaScript should appear in the Error Console (Ctrl+Shift+j).
    If the console doesn't provide any insight, can you provide a link to the page that has the problem? Then it would be possible to view the code that Firefox actually is (or is supposed to be) executing.

  • Event.deactivate is not firing with flash plugin 10,2,152,26 embeded in IE 8 and above

    I am working on a portal which is built in flex. I wanted to perform some action based on my applications is in focus or out of focus. So  I tried to use two Events for this purpose Event.Activate and Event.Deactivate inside my flex code.
    These events fire perfectly in FF 3.0 and above, Safari, Chrome and these events get triggered till IE 7.
    But when I switch to IE 8 and above versions with latest flash player plugin 10,2,152,26 the Event.deactivate is not firing, and I am not able to detect whether my Flex application is out of focus.
    I tried doing some research around this issue both using Flex Events and Javascript approach using window.onfocusin and window.onfocusout, but still no luck in IE 8 and higher versions with latest Flash plugin 10,2,152,26.
    Has someone faced this kind of issue. Any help or solution to this problem would be appreciated. As we have a large number of users viewing this portal in IE 8 with latest flash plugin.
    The code is simple and I have pasted below:
    package {
      import flash.display.*;
      import flash.utils.*;
      import flash.events.*;
      public class Main extends Sprite {
        public function Main() {
          this.addEventListener(Event.ACTIVATE, activateListener);
          this.addEventListener(Event.DEACTIVATE, deactivateListener);

    this is a known issue (or, really a collection of issues) related to how the deactivate event works in different browsers.  check colin moock's blog.
    for most, but not all, purposes using a mouseleave event works well-enough.

  • Autocomplete search appearing but search not firing?

    I am using the following in my interactive report to provide an autocomplete Jquery search fields
    When typing in an item in the search boxes the autocomplete works find but for some reason it is not firing the search anymore? Any ideas on what I am missing with this? I have spent the week on it and it would be great to sign off the week with a working report!
    Many Thanks
    In the Javascript section of the page I am using
    function srch2(pItem, pColumn) {  
    $.post('wwv_flow.show',
    {"p_request" : 'APXWGT',
    "p_widget_action" : 'FILTER',
    "p_widget_action_mod" : 'ADD',
    "p_widget_mod" : 'ACTION',
    "p_widget_name" : 'worksheet',
    "p_flow_id" : $v('pFlowId'),
    "p_flow_step_id" : $v('pFlowStepId'),
    "p_instance" : $v('pInstance'),
    "x01" : $v('apexir_WORKSHEET_ID'),
    "x02" : $v('apexir_REPORT_ID'),
    "x03" : pColumn,
    "f01" : ['COLUMN', pColumn, '=', $v(pItem), null, 'minutes']
    function(data){
    //when the filter has been successfully applied the report has to be refreshed
    if(data=="true"){
    gReport.pull();
    //clear the item
    $s(pItem,'');
    $('#P4_AC').bind("result", function(){   
    //on selecting a value then fire the search function
    srch2(this, 'INDSNAME');
    // ac item P4_AC2
    $('#P4_AC2').bind("result", function(){   
    srch2(this, 'INDFNAME');
    // ac item YEARD
    $('#YEARD').bind("result", function(){
    srch2(this, 'NEWYEAR');
    });

    Nico Martens wrote:
    Console the most left tab of firebug. It shows all dynamic actions that are firedyes, exactly. Open up firebug and watch the console. Ideally, when selecting a value from the autocomplete 2 ajax calls should appear. The first one is the one to apply filters, the second on if the refresh (report pull). You can easily identify them through watching the headers. Be sure to check out the response tab for the 'apply filter' ajax: the response should be 'true'.
    If no ajax call pops up however, the problem is with the onSelect of the autocomplete and/or the search button.

  • af:serverListener not fired on a jspx page load

    Hi,
    I'm using JDeveloper 11g Update 1.
    I would like to fire a serverListener on a jspx page load.
    The javascript method that i'm using is fired while the server listener is not fired.
    Here's the code.
    <pre>
    //In my jspx
    <af:document title="Page Title" clientComponent="true">
    <af:clientListener method="fireServerListener" type="load"/>
    <af:clientAttribute name="serverListenerType" value="serverMethod"/>
    <af:serverListener type="serverMethod" method="#{myBean.serverMethod}"/>
    <f:facet name="metaContainer">
    <trh:script source="js/lib.js"></trh:script>
    </f:facet>
    //In lib.js
    function fireServerListener(event){
    var source = event.getSource();
    var immediate = this._immediate;
    var params = {};
    var srvLstnrType = source.getProperty("serverListenerType");
    AdfCustomEvent.queue(source, srvLstnrType, params, immediate );
    //In my bean
    public void serverMethod(ClientEvent clientEvent) {
    System.out.println("serverMethod() is called");
    </pre>
    Please, give any ideas how to resolve it.
    Best Regards,
    JavaDeVeLoper

    Hi Frank,
    I've tried what's suggested. I've placed the trh:script at the bottom of the page.
    The server listener in this piece of code at the bottom is fired, but in my case the problem (to fire a server event on body load) still exists.
    <pre>
    <af:commandButton text="Button" partialSubmit="true" clientComponent="true">
    <af:clientListener method="fireServerListener" type="action" />
    <af:clientAttribute name="serverListenerType" value="serverMethod" />
    <af:serverListener type="serverMethod"
    method="#{myBean.serverMethod}"/>
    </af:commandButton>
    </pre>
    Any suggestions :)
    Best Regards,
    JavaDeVeLoper

  • PlEASE HELP EASY QUESTION: unload event is not firing at all.

    Hi, onUnload event is not firing in Safari browser. I tried with different ways to capture that event but i failed to capture that event. So please help me on this, give suggestions to capture that event. Or any other event is firing when window is closing. Actually, i need to execute when window is closing. But in Safari the window is closing without firing of any events.

    Safari doesn't execute the unLoad action when closing windows, period!
    It only executes it when loading another page.
    I might be wrong but I think Safari doesn't allow you to close a window with Javascript at all. All close events are blocked.
    Maybe a SWF file can do it somehow. But I'm not sure...

  • TweenEvent.MOTION_FINISH not firing

    I have created a class which loads an image (using another
    custom class), and provides a transition each time the image source
    is changed. Here, when the swapImage() method is called, it should
    set a new image source for the imageLoader object (which is simply
    a wrapper for a Loader class), set a fade out, and then an event
    listener for the end of the tween is supposed to fire off,
    providing a fade back in and new image load. For some reason, no
    matter what I do here, the TweenEvent is not firing off (the trace
    action I put in confirms this, as it never traces). I've tried
    moving addEventListener for the tween event to both the constructor
    and the swapImage method, with no success. For some reason it's
    like the TweenEvent is not registering across the class somehow.
    I've done simliar things many times, and never encountered this
    issue. Is it a scope issue? Any help would be appreciated..thanks!

    your TweenEvent is a tween class event, not a movieclip
    event: add your listener to your tween.

  • Key-nextrec not firing in forms 10g

    I have a code in the above trigger, but it is not firing, I have it in the block property and no other place in the form
    message('In key next rec----'); message(' ');
    IF :SYSTEM.Last_Record = 'TRUE' Then
    Null;
    Else
    next_record;
    End If;

    when-new-record-instance runs when you navigate to the next record.
    Key-Nxtrec (Nxtrec is the correct spelling) only runs when you press the key assigned to call that trigger. In my environment, it is the Shift+ Down-Arrow key, but it could be just Down-Arrow -- it all depends on what key sequence is assigned to Forms Function Number 67 in your Forms Resource file, FMRWEB.res (or fmrusw.res).
    So if the trigger runs when you press the correct keyboard key, and you issue the message but do not call the Next_Record; built-in, focus will not navigate to the next record in your running form.

Maybe you are looking for

  • How do I make my screen look better when watching movies?

    I notice when I watch movies on my Macbook that there are negative parts when I'm sitting on an angle. Is there any way to solve this through calibrating it or the right lighting. This doesn't happen on my sister's older Powerbook G4 that has a matte

  • Ibook G4 boot problem

    my g4 won't boot up. All I get is the start up "beep" and a grey screen. No apple icon or anything. Any ideas??

  • Downgrade PowerMac G5 from 10.5 to Classic-capable OS?

    Just acquired a dual-processor very early PowerMac G5.  I was able to install OS X 10.5, but I really need a Classic-capable earlier version of OS X.  Where might I find one.  I have an "Install DVD for OS 10.1", but that won't load.

  • Unable to post messages to Weblogic JMS queue

    Hi All, I am using weblogic 10.3.3.0, SOA and JDev 11.1.1.3.0. (Weblogic came with JDev.) I have created a JMS Server, JMS Module, ConnectonFactory and Queue in weblogic. I am able to see that queue in my JDev and trying to enque some simple message

  • Curves adjustment Bug

    I have PS 6.0.1. yes I know its an old version but it does everything i require so I have no need for upgrade. One of the main function i use it for is adjusting curves. recently I have noticed when i open a jpg and select adjustment/curves. Photosho