KeyListener never invoked on my editor

I am trying to make TAB go to the next field in my table. But none of my keylistener methods get invoked on my cell editor. Can anyone help? Here is my code...
public class MultiLineCellEditor extends DefaultGridCellEditor implements GridCellEditor, KeyListener
String value_;
JScrollTextArea textArea_;
CommonJSmartGrid grid_;
public MultiLineCellEditor()
super(new JTextField());
JTextField jtf = (JTextField) this.getComponent();
jtf.addKeyListener(this);
textArea_ = new JScrollTextArea();
value_ = null;
setClickCountToStart(2);
public void keyReleased(KeyEvent e)
System.out.println("keyReleased...");
public void keyPressed(KeyEvent e)
System.out.println("keyPressed...");
public void keyTyped(KeyEvent e)
System.out.println("keytype...");
Thanks in advance,
Steve

This info was helpful... however, I still can't get anything to register a keyevent once I am in the editor. The table has focus (I check) when I first open this screen, and loses focus when I double click on the cell containing the multiline cell editor. The thing is... what object then gains focus? I checked the scrollpane and the jTextField. Neither of these ever gets focus so adding a keylistener to them won't do any good. Any other ideas?
Thanks,
Steve

Similar Messages

  • SAXParser: method startElement of DefaultHandler is never invoked

    Hallo,
    I'm trying to parse following file: "<?xml version="1.0"?>
    <company>
         <staff>
              <firstname>yong</firstname>
              <lastname>mook kim</lastname>
              <nickname>mkyong</nickname>
              <salary>100000</salary>
         </staff>
         <staff>
              <firstname>low</firstname>
              <lastname>yin fong</lastname>
              <nickname>fong fong</nickname>
              <salary>200000</salary>
         </staff>
    </company>"
    I'm using class SAXParser. I have extended the class DefaultHandler. The parser runs without errors but the method startElement of handler class is never invoked. The method endElement istead is invoked normally. I'm trying to run an example from url: http://www.mkyong.com/java/how-to-read-xml-file-in-java-sax-parser/. I don't know why is this, no exception is thrown while running.
    with regards
    Rafal Ziolkowski

    The code comes from site: http://www.mkyong.com/java/how-to-read-xml-file-in-java-sax-parser/. An extraction:
         DefaultHandler handler = new DefaultHandler() {
         boolean bfname = false;
         boolean blname = false;
         boolean bnname = false;
         boolean bsalary = false;
         public void startElement(String uri, String localName,String qName,
    Attributes attributes) throws SAXException {
              System.out.println("Start Element :" + qName);
              if (qName.equalsIgnoreCase("FIRSTNAME")) {
                   bfname = true;
              if (qName.equalsIgnoreCase("LASTNAME")) {
                   blname = true;
              if (qName.equalsIgnoreCase("NICKNAME")) {
                   bnname = true;
              if (qName.equalsIgnoreCase("SALARY")) {
                   bsalary = true;
    I set breakpoint on line: System.out.println("Start Element :" + qName);
    But program never stops there. The output don't show the result of this line.
    Meanwhile I've tried to step into the parser-process and found at the class XMLDocumentFragmentScannerImpl.java following code:
    public boolean scanDocument(boolean complete)
    throws IOException, XNIException {
    // keep dispatching "events"
    fEntityManager.setEntityHandler(this);
    //System.out.println(" get Document Handler in NSDocumentHandler " + fDocumentHandler );
    int event = next();
    do {
    switch (event) {
    case XMLStreamConstants.START_DOCUMENT :
    //fDocumentHandler.startDocument(fEntityManager.getEntityScanner(),fEntityManager.getEntityScanner().getVersion(),fNamespaceContext,null);// not able to get*
    break;
    case XMLStreamConstants.START_ELEMENT :
    * //System.out.println(" in scann element");*
    * //fDocumentHandler.startElement(getElementQName(),fAttributes,null);*
    break;
    case XMLStreamConstants.CHARACTERS :
    fDocumentHandler.characters(getCharacterData(),null);
    break;
    the block for handling startElement is commented out!
    To get the SAXParser class I use following code:
         SAXParserFactory factory = SAXParserFactory.newInstance();
         SAXParser saxParser = factory.newSAXParser();
    perhaps I have to use more specific data for getting the instance of class SAXParser.
    Rafal Ziolkowski

  • UIX: How to invoke List Binding Editor?

    When building input form, I am dropping some message choice components which then automatically opens List Binding Editor.
    However, if I want to modify something, how to invoke List Binding Editor for the EXISTING component on the UIX page?

    0. With your UIX page active in the editor
    1. Select the "UI Model" tab in the Structure Window
    2. Select the list binding in the UI model
    (also known as your binding container)
    3. Right-mouse Edit...

  • Custom Adapter for Inbound Operations never invoked

    Hi,
    I created a custom J2CA Resource Adapter for Inbound operations. I implemented javax.resource.spi.ResourceAdapter interface with all required methods - start(BootstrapContext), endpointActivation(MessageEndpointFactory, ActivationSpec), etc.
    I created the appropriate WSDL file according Adapter Development Cookbook. Below is an excerpt from it:
    <definitions targetNamespace="urn:Adapter" .......>
      <message name="Notification">
        <part name="Notification_Part" element="ns1:Svc"/>
      </message>
      <message name="Header">
        <part name="Header_Part" element="ServiceHeader"/>
      </message>
      <portType name="EventsQueue_ptt">
        <operation name="Dequeue">
          <input message="tns:Notification"/>
        </operation>
      </portType>
      <binding name="NotificationService" type="tns:EventsQueue_ptt">
        <jca:binding/>
        <operation name="Dequeue">
          <jca:operation ActivationSpec="acme.ActivationSpec"/>
          <input>
            <jca:header message="tns:Header" part="Header_Part"/>
          </input>
        </operation>
      </binding>
      <service name="EventsQueue">
        <port name="EventsQueue_pt" binding="tns:NotificationService">
          <jca:address ResourceAdapter="acme.AdapterClass"/>
        </port>
      </service>
    </definitions>I created a BPEL process with a partner link based on this WSDL and linked a Receive activity with it. According Adapter Concepts Guide here is what should happen when the BPEL process is deployed and started:
    - The ResourceAdapter class name and the ActivationSpec parameter are captured in the WSDL extension section of the J2CA inbound interaction WSDL Adapter Integration with BPEL Process Manager Adapter Integration with Oracle Application Server Components 5-7 during design time and made available to BPEL Process Manager and Adapter Framework during run time.
    - An instance of the J2CA 1.5 ResourceAdapter class is created and the Start method of the J2CA ResourceAdapter class is called.
    - Each inbound interaction operation referenced by the BPEL Process Manager processes results in invoking the EndPointActivation method of the J2CA 1.5 ResourceAdapter instance. Adapter Framework creates the ActivationSpec class (Java Bean) based on the ActivationSpec details present in the WSDL extension section of the J2CA inbound interaction and activates the endpoint of the J2CA 1.5 resource adapter.
    The problem is that start(BootstrapContext) and endpointActivation(MessageEndpointFactory, ActivationSpec) seem never to be invoked, the adapter is never initialized and at some point the Receive activity of the BPEL process times-out.
    I put some debug System.out.println statements in these methods, but nothing appeared in the server log.
    I'm using Oracle SOA Suite 10.1.3.1.
    I will be grateful for any suggestions.
    Regards,
    Simeon
    Message was edited by:
    skirov

    user9116351 wrote:
    Hi,
    I have written a custom connector for crud operations to a table in Oracle DB. The custom code class uses oracle.jdbc.OracleDriver which is present in ojdbc14.jar. I have placed this jar in ThirdParty folder of the OIM installation but I am still getting an SQLException while connecting to the DB as my custom code is unable to find the required class. Can someone guide me to some documentation that will help me get over this?
    Thanks,
    SaieshWhich version of OIM you are in? Also you dont need to copy ojdbc14.jar as this exists already in OIM.

  • Javascript never invoked in jsff

    hi,
    the use case is in jsff, in table's row column when user presses ENTER key i need to call some methods afterwards (jdev 11.1.2.3)
    for some reason i can't see javascript code invoked.
    i use af:clientListener, af:serverListener pair.
    actually , the example is depicted by Timo Hahn in his blog
    i try to reapply it in page fragment, which doesn't contain document tag ...
    below is what i tried to do and it never helped me...
    please advise how to call js in page fragment
    i considered Frank's blog as well, but it doesn't work in my case...
    https://blogs.oracle.com/jdevotnharvest/entry/gotcha_when_using_javascript_in
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:trh="http://myfaces.apache.org/trinidad/html"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:panelGroupLayout id="pgl4">
    <af:panelFormLayout id="pfl1">
    <trh:script id="s2">
         function handleEnterEvent(evt) {
         var _keyCode = evt.getKeyCode();
         //if (_keyCode == AdfKeyStroke.ENTER_KEY ){  
         var comp = evt.getSource();
         AdfCustomEvent.queue(comp, "EnterEvent", {}, false);
         evt.cancel();
    function handleTableDoubleClick(evt){
    var table = evt.getSource();
    AdfCustomEvent.queue(table, "TableDoubleClickEvent",{}, true);
    evt.cancel();
    </trh:script>
    <af:resource type="javascript">
         function handleEnterEvent(evt) {
         var _keyCode = evt.getKeyCode();
         //check for Enter Key
         if (_keyCode == AdfKeyStroke.ENTER_KEY ){  
         var comp = evt.getSource();
         AdfCustomEvent.queue(comp, "EnterEvent", {fvalue:comp.getSubmittedValue()}, false);
         evt.cancel();
    </af:resource>
    </af:panelFormLayout>
    <af:panelBox
    <af:table value="#{bindings.DcaRegisterView1.collectionModel}" var="row" width="1200"
    <af:column sortProperty="#{bindings.DcaRegisterView1.hints.EffectiveUntil.name}" filterable="true"
    <af:inputDate value="#{row.bindings.EffectiveUntil.inputValue}"
    required="#{bindings.DcaRegisterView1.hints.EffectiveUntil.mandatory}"
    columns="#{bindings.DcaRegisterView1.hints.EffectiveUntil.displayWidth}"
    shortDesc="#{bindings.DcaRegisterView1.hints.EffectiveUntil.tooltip}" id="id3">
    <f:validator binding="#{row.bindings.EffectiveUntil.validator}"/>
    <af:convertDateTime pattern="#{bindings.DcaRegisterView1.hints.EffectiveUntil.format}"/>
         <af:clientListener method="handleEnterEvent" type="keyPress"/>
         <af:serverListener type="EnterEvent" method="#{registerBean.handleEnterEvent}"/>
    </af:inputDate>
    </af:column>
    ... page fragment code itself
    </af:panelBox

    The following is working for me:
    The js on the page:
    <af:resource  type="javascript">
            function doSomething(event) {
                alert('Doing something');
    </af:resource>Calling the js from an inputText component inside a table:
    <af:inputText value="#{row.bindings.FirstName.inputValue}"
                            label="#{bindings.EmployeesVOVI.hints.FirstName.label}"
                            required="#{bindings.EmployeesVOVI.hints.FirstName.mandatory}"
                            columns="#{bindings.EmployeesVOVI.hints.FirstName.displayWidth}"
                            maximumLength="#{bindings.EmployeesVOVI.hints.FirstName.precision}"
                            shortDesc="#{bindings.EmployeesVOVI.hints.FirstName.tooltip}" id="it1">
                <f:validator binding="#{row.bindings.FirstName.validator}"/>
                <af:clientListener type="keyPress" method="doSomething"/>
              </af:inputText>Have you checked any js error with - for example - firebug?
    Regards,
    Koen Verhulst

  • Weird thing in SLSB in WLS, never invoke ejbCreate() or setSessionContext()

    I have this piece of code:
    public class CounterBean implements SessionBean {
         private int count;
         public void ejbCreate() {
              count = 0;
         public void ejbPassivate() {}
         public void ejbActivate() {}
         public void ejbRemove() {}
         public void setSessionContext(SessionContext sc) {
              count = 0;
         public int count() {
              return ++count;
    In weblogic-ejb-jar.xml, I have this:
    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic
    6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>CounterBean
    </ejb-name>
    <stateless-session-descriptor>
    <pool>
    <max-beans-in-free-pool>2</max-beans-in-free-pool>
    <initial-beans-in-free-pool>1</initial-beans-in-free-pool>
    </pool>
    </stateless-session-descriptor>
    <jndi-name>ejb/counter</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    My test client code is like:
    CounterBean bean1 = (CounterBean)beanHome.create();
    System.out.println(bean1.count());
    bean1.remove();
    CounterBean bean2 = (CounterBean)beanHome.create();
    System.out.println(bean2.count());
    bean2.remove();
    I have thought WLS will always invoke setSessionContext() and
    ejbCreate(), if the EJB client invoke create() method on the Home
    interface. But I always get sequentially increased result,
    1-2-3-4-5...
    Can other people verify this? Running on WLS6.1+SP2 on Win2K.
    Stateful deployment works right,
    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic
    6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>CounterBean
    </ejb-name>
    <stateful-session-descriptor>
         <stateful-session-cache>
    <max-beans-in-cache>1</max-beans-in-cache>
    <idle-timeout-seconds>10</idle-timeout-seconds>
    <cache-type>LRU</cache-type>
    </stateful-session-cache>
    <persistent-store-dir>/weblogic/myserver</persistent-store-dir>
    </stateful-session-descriptor>
    <jndi-name>ejb/counter</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    It will passivate the CounterBean, and new instance, then invoke
    setSessionContext(), ejbCreate().
    Looks like, WLS doing too much caching for SLSB?
    Simon Song

    Your results are correct. The container is pooling instances. I would
    suggest that you re-read the stateless session bean lifecyle section in
    the EJB spec.
    -- Rob
    Simon Song wrote:
    I have this piece of code:
    public class CounterBean implements SessionBean {
    private int count;
    public void ejbCreate() {
    count = 0;
    public void ejbPassivate() {}
    public void ejbActivate() {}
    public void ejbRemove() {}
    public void setSessionContext(SessionContext sc) {
    count = 0;
    public int count() {
    return ++count;
    In weblogic-ejb-jar.xml, I have this:
    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic
    6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>CounterBean
    </ejb-name>
    <stateless-session-descriptor>
    <pool>
    <max-beans-in-free-pool>2</max-beans-in-free-pool>
    <initial-beans-in-free-pool>1</initial-beans-in-free-pool>
    </pool>
    </stateless-session-descriptor>
    <jndi-name>ejb/counter</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    My test client code is like:
    CounterBean bean1 = (CounterBean)beanHome.create();
    System.out.println(bean1.count());
    bean1.remove();
    CounterBean bean2 = (CounterBean)beanHome.create();
    System.out.println(bean2.count());
    bean2.remove();
    I have thought WLS will always invoke setSessionContext() and
    ejbCreate(), if the EJB client invoke create() method on the Home
    interface. But I always get sequentially increased result,
    1-2-3-4-5...
    Can other people verify this? Running on WLS6.1+SP2 on Win2K.
    Stateful deployment works right,
    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic
    6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>CounterBean
    </ejb-name>
    <stateful-session-descriptor>
    <stateful-session-cache>
    <max-beans-in-cache>1</max-beans-in-cache>
    <idle-timeout-seconds>10</idle-timeout-seconds>
    <cache-type>LRU</cache-type>
    </stateful-session-cache>
    <persistent-store-dir>/weblogic/myserver</persistent-store-dir>
    </stateful-session-descriptor>
    <jndi-name>ejb/counter</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    It will passivate the CounterBean, and new instance, then invoke
    setSessionContext(), ejbCreate().
    Looks like, WLS doing too much caching for SLSB?
    Simon Song

  • Add event(keyListener) to JTable Cell default editor.

    I've got a form(Jdialog) with a Jtable on it.
    I've added a keyListener to the JButtons and Jtable so that, wherever the the focus IS, when I hit the "F7" key, it fills the Jtable from the database connection.
    It's working REALLY fine now but there is one small glitch.
    When I'm editing a cell, the keyListener event is not thrown. I supposed it's because the "DefaultCellEditor" does not throw the event.
    How can I add such a thing??
    I'm looking for something like :
    table.getDefaultEditor().addKeyListener
    but it does not exists.
    If it's not possible, is there a way to make the JDialog listen to all the keyListener events from its childs??(Mimics the JDK < 1.4)
    Thx

    Using key binding is better implementation.
    After you read the tutorial your next move is to google for it.
    http://www.google.com/search?hl=en&q=jtable+keybinding
    Second result brings you to camickr's example:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=657819

  • How to invoke system editor by double click a file(windows)?

    how to invoke system editor by double click a file(windows)?
    Just like that, double click a file named a.doc, windows will open it by word.exe.

    I try that:
    exec("cmd /c start winword \"c:\dir\a b.doc\"");
    like this posting(http://forum.java.sun.com/thread.jspa?forumID=57&threadID=634576 ), and It is ok.
    But now I make a file list with different files, .pdf,.xls,.doc and so on, I wanna double click to open one with its default system editor.
    if no space:
    exec("cmd /c start " + file);
    will invoke the default editor to open it. if space, it can't do it.
    And now I rename all files, replace space to _.

  • External Editor in Sun Studio 8 IDE

    When I invoke any external editor (Gvim or Xemacs) via File->Open File, a note dialog comes up which says:
    Waiting for connection from external editor...... If you want to cancel external editor support and use the built-in editor instead, click Cancel
    The external editor never comes up and the dialog box stays there until I click "Cancel".
    While this might occur for a number of common reasons, which hopefully I've considered, while trying to troubleshoot, the solution was very strange. When my unix prompt contained a carriage return as in the following:
    "413:sc:/home/server_k55/rbuckwa
    as defined by:
    PS1='!:$Hostname $PWD
    the above described behavior occurred.
    However, when the unix prompt did not contain a carriage return as in:
    "sc{413}$"
    defined by:
    PS1="$Hostname{!}$ "
    the IDE opened the file and the external editor successfully.
    Does anyone have any explanation or experience with this strange behavior. BTW I'm running Solaris 8.
    thanks,
    rick

    This sounds like a bug. We probably don't test with a prompt
    containing a carriage return. You can file this bug using
    http://bugs.sun.com if you like. Look for the "Sun Studio" categories.
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                   

  • ValueChangeListener not invoked inside h:dataTable h:inpuText

    Hi,
    I'm creating a simple dataTable with an inputText in each row. Each inputText has a valueChangeListener that is never invoked.
    Does anyone know why this is happening ?
    Thanks in advance,
    - Juan

    Thanks for your answer.
    First option is excluded.
    Third option also, because we are using RichFaces dataTable components.
    You are saying that getter method for dataTable value attribute needs to return exactly the same object list which was returned in the request before when the list was populated for the first time, in order for commandButton in dataTable action method to be invoked, right?
    In my case loading managed bean fields in constructor is excluded, because we are using EJB dependency injection, so our EJB's from which we are getting data aren't available in managed bean constructors. They are available in other methods. That leaves me to the field initialization in dataTable value getter method, when the list is populated for the first time. Which is the most elegant way to preserve this list between requests, and retrieve this list in later requests? Is saving object list in FacesContext session possible solution?

  • Why my mozilla doesn't have "Cookie editor" in "Tools"??

    i want to edit my cookie but in Tools it doesn't show the Cookie editor..so, i looked up in the page info and i choose security to view cookies..it work but then i can't edit the cookie..it just have "remove cookie" and "remove all cookies" buttons only..help me~

    Firefox has never had a cookie editor, there are add-ons that allow you to edit cookies such as [https://addons.mozilla.org/firefox/addon/4510/ Edit Cookies] and [https://addons.mozilla.org/firefox/addon/92079/ Add & Edit Cookies+]

  • Value binding doesn't invoke functions in dataTable

    I have been fighting with this problem for few days now...
    It seems like value="#{bean.items}" isn't invoked. Just because it isn't. I am not getting any errors, exception, nothing.
    Code looks just like that:
    <h:dataTable id="ingredientsTableForPharmacyKind"  value="#{drughandler.drug.ingredientsList}" var="ingredient">
                        <%-- NAME --%>                   
                        <h:column>
                            <f:facet name="header">
                                <h:outputText id="ingredientNamePrompt" value="#{msgs.menuDrugFormIngredientNAME}"/>
                            </f:facet>
                            <h:outputText id="ingredientNameOutput" value="#{ingredient.ingredient_name}"/>
                        </h:column>
                        <%-- QUANTITY --%>
                        <h:column>
                            <f:facet name="header">
                                <h:outputText id="ingredientQuantityPrompt" value="#{msgs.menuDrugFormIngredientQUANTITY}"/>
                            </f:facet>
                            <h:outputText id="ingredientQuantityOutput" value="#{ingredient.quantity}"/>
                        </h:column>
                        <%-- UNIT --%>
                        <h:column>
                            <f:facet name="header">
                                <h:outputText id="ingredientUnitPrompt" value="#{msgs.menuDrugFormUnit}"/>
                            </f:facet>
                            <h:outputText id="ingredientUnitOutput" value="#{ingredient.unit.name}"/>
                        </h:column>
                        <%-- DESCRIPTION --%>
                        <h:column>
                            <f:facet name="header">
                                <h:outputText id="ingredientDescriptionPrompt" value="#{msgs.menuDrugFormIngredientDESC}"/>
                            </f:facet>
                            <h:outputText id="ingredientDescriptionOutput" value="#{ingredient.description}"/>
                        </h:column>
                        <%-- EFFECT --%>
                        <h:column>
                            <f:facet name="header">
                                <h:outputText id="ingredientEffectPrompt" value="#{msgs.menuDrugFormIngredientEFFECT}"/>
                            </f:facet>
                            <h:outputText id="ingredientEffectOutput" value="#{ingredient.effect}"/>
                        </h:column>
                    </h:dataTable>
    drughandler bean contains attribute drug, which is a bean. DrugBean method ingredientsList returns LinkedList of ingredients.
    Problem is that everything is rendered except values from ingredientList ( I have second funciton which returns an Array of ingredients, it doesn't work either). Facets are rendered correctly. There is one but. value="#{drughandler.drug.ingredientsList}" Is never invoked. I have even put System.out.println(); into that function to check if its invoked, nothing was shown on the console...
    What is wrong?? Everything on this specific page works fine....

    My bad, I got a little foggy. Ofcourse each bean has getter and setter methods. DrugBeans getIngredientsList and getIngredientsArray of DrugHandler bean methods aren't invoked in this particular code snippet.
    I have also noticed smoething like this in the AS console
    WARNING: [ComponentRule]{faces-config/component} Merge(com.mycompany.TabLabel)
    2005-12-01 07:48:12 com.sun.faces.config.rules.ComponentRule end
    WARNING: [ComponentRule]{faces-config/component} Merge(com.mycompany.Tree)
    2005-12-01 07:48:12 com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(com.mycompany.jsf.validator.LATER_THAN)
    I think it's present when code regarding dataTable is uncommented.

  • Bug: Sql Developer v1.2.1 (32.13) - Date Field Editor doesn't work properly

    Version: Sql Developer v1.2.1 (32.13)
    OS: Windows XP SP2
    Database: Oracle 10g
    Symptoms:
    I have a table with a DATE field.
    In a record of this field a have a value such as : 12/31/0003 (I know this is a strange date value) but the problem is that if I try to change this value using SqlDeveloper grid editor in 12/31/2003, it seems to not recognize the change without enabling the Commit Button and keeping the 0003 value !

    OK, I'm not understanding you exactly. It's not the formatting that you're having an issue with, but the editor. I have a date for a record that is 17-Feb-2006 and I want it to be 17-Feb-1996, so I invoke the date editor and highlight just the year and make the change. Just type in the new year and say OK. This then causes the Commit button to become available, because we have made a change and then I commit the record.
    The record is committed correctly, with the correct years, regardless of whether I have the formatting as RR, RRRR, YY or YYYY.
    Sue

  • Invoking SapScript in Doc creation from CV01N

    Hi
    I want to know how to invoke sapscript editor in a DMS doc.
      Under DMS->Define workstation application I can find an entry called SAP but the problem is that during attachment of a document in Cv01n (Applic = SAP) what do I specify under original (for non SAP document we usually specify the file path).
    Moreover under workstation application in network there is an entry called PPPICPDA %SAP-PROGRAM%
    Since PPPICPDA program is not there I have created a custom program which has got these lines.
    import draw intdraz path applicationsnumber applicationtype
    from memory id 'SAP_APPLICATION'.
    Instead of that I believe I would have to call a FM like
    EDIT_TEXT to invoke the sapscript editor. I am sure there is some standard SAP mechanism of doing it.
    We are on 4.6C
    Regards
    Saurav

    Sorry I don't know anything about Flash, but I can answer your second question.
    If you look closely at that XML, you can see that the test element has 5 children:
    1. A whitespace text node containing a line-ending character and some spaces.
    2. A bubble element.
    3. A whitespace text node.
    4. A bubble element.
    5. A whitespace text node.
    So incrementing by 2 has nothing to do with Flash. You don't have to have those spaces there, you know, they only make the XML easier for people to read.

  • UI editor error in Jdeveloper release 2

    Hi,
    I have a problem, when I invoke the UI editor , I got this error "Unknown error in source", I already compiled the project and the PJC. any suggestions is greatly appreciated.
    Thanks
    Lilibeth

    The error message may just be a left over message from a point when the source was uncompilable, and thus safely ignored. However, if you are having problems working with the UIEditor as a result, then you may want to try the following:
    - Incrementally comment out chunks of the jbInit method bit by bit until you find the offending source. The UIEditor is not a full interpretter and thus cannot handle all java source.

Maybe you are looking for

  • How to add new fields in asset master data

    Hello, i was wonder if anyone knows how to add new fields that arent defined in the asset master data. Thanks. Pedro

  • Copy Paste and dialer

    As a suggestion, if anybody who makes a difference actually reads these posts, would be to allow copy/paste functionality to work in the dialer application. This would allow us to paste phone numbers and conference codes rather than trying to remembe

  • Questions about exporting to full quality?

    Hey there - I just wanted to make sure that if I want to give my friend back a DV file from the converted tape that I choose Export, then Full Quality? I know that creates one file vs individual clips but her tape was one long one, I did chapter mark

  • How can i add new menus to dremwaver ?

    hi everybody i making a website and i need to add spry accordion menu not the one that is in dremwaver by defult i need to use extrnal tools where can i get free tools like this ? thank you

  • What can I do without unlimited data?

    I'm just wondering what Rogers will charge me extra for. For example, can I upload a picture to Facebook or Twitter if I have unlimited social networking? Or will I be able to use the GPS function?