Textfield Hint misbehaves on refresh...

Here is a link to a sample page with minimal code:
Textfield Hint Test
The hint text should be removed when the textfield gains
focus.
This works perfectly for IE and FF.
But, if I refresh the page (using F5 or the Refresh icon) the
hint text stays put (in both IE 6 & 7), forcing the user to
manually delete it. [Server response 304]
The issue does not arise if I load the same page again by
typing in the url, or if I leave the page and return.
The server response is also 304 in these last 2 cases, but
does not trigger the problem.
It seems as though
sometimes the Spry code to remove the hint text doesn't run
when the page is loaded from IE's cache.
Anyone ever seen this before? At first it seems to be a minor
inconvenience to delete the left-over hint, but it could really
frustrate users when a simple tap on F5 triggers validation
errors.

Hi  Rakshita,
you are getting an null pointer exception. Please take a look in the back end and take a look at the dump (transaction ST22). It should contain some valueable information. In this case please check if you have programmed an error in a message. The system complains that it can not read the value of MSGV1. So please take a look at the dump and try to find out which message should be read.
Regards Matthias Nutt
SAP Consulting Switzerland

Similar Messages

  • Textfield redraw bug caused by text overflow

    Situation: I have a runtime created movieclip with a dynamic
    textfield contained in it. Some fonts types cause overflow in the
    textfield (part of the text is drawed outside the textfield area)
    causing a redraw bug when dragging the movieclip. The overlow
    occurs on the left / right side of the textfield but only for
    certain characters (because they are wider then usual).
    If you have a textfield with the text "f" using the New Timer
    Roman font, an overflow will occur on the right side of the
    textfield, causing the above redraw bug. For other fonts the bug
    also happen on the left side.
    The problem is solved by recreating the movieclip, but I am
    dragging the movieclip so I will apreciate if someone have a better
    solution...

    are you adding content dynamically or using preloaded text
    with non supported Font?
    in both the case try to embed font and then once data is
    placed inside textfield use
    updateAfterEvent() to refresh or make your own refresh script
    if possible coz sometimes this method wont give u desired
    result.

  • Text Fields not retaining passed values.

    I've tried several options to fix this issue, to be more descriptive, I pass a value to the textfield and the page refreshes, after the page refreshes the value is gone. I stepped through the code and the value is there for the time being until the page refresh. I.e:
    public String test () {
    txtTest.setText("asdas");
    String temp = txtTest.getText();
    return null;
    }When i get the value of temp when stepping through the code... temp = asdas meaning it was correct. However when the page refreshes from the return null statment it clears the values, I've used this type of code several times before and it has never given me this issue.

    This has me really stumped, the only thing I really changed from the previous forms where I've done this before is the fact that I put some of the database calls into seperate methods instead of embedding them directly within the action call events.

  • Dynamic action with function works, doesnt refresh textfield

    Hi all,
    experimenting with dynamic actions so I got the following setup:
    I've built a screen with 2 text boxes
    P7_input
    P7_output
    The goal is to put some tet in P7 input and have it returned with additional text in P7_OUTPUT
    CREATE OR REPLACE PROCEDURE PRC_ECHO
      P_INPUT IN VARCHAR2  DEFAULT 'LEEG'
    , P_OUTPUT OUT VARCHAR2 
    ) AS
    BEGIN
      p_output := 'Ingevoerd: ' || p_input;
    END PRC_ECHO;I've created a dynamic action on the LOSE FOCUS event of item P7_INPUT.
    The true action executes PL/SQL (sequence number 10)
    Begin
    eigen_apps.uga_prc_echo (:p7_input, :P7_OUTPUT);
    end;"Page items to submit" are set to P7_INPUT, P7_OUTPUT
    (and I tried with just P7_INPUT).
    The second true action (sequence number 20) does a REFRESH on ITEM P7_OUTPUT (and I tried refresh region and other things I thought would make it work.)
    When I enter something in P7_INPUT and tab, click or enter away from the P7_INPUT field, nothing changes in my P7_OUTPUT textfield.
    Only when I hit the refresh button in my browser P7_OUTPUT is filled with 'Ingevoerd: <P7_INPUT value>.
    So. The procedure does return the value into P7_OUTPUT, but I cant get an instant refresh of the P7_OUTPUT to work.
    Can any of you help me?
    Robin

    Getting some other errors now, will look into this tomorrow.
    1 error has occurred
    ORA-06550: line 4, column 18: PLS-00382: expression is of wrong type ORA-06550: line 4, column 7: PL/SQL: Statement ignoredNeed to check my procedure...
    Robin

  • Fast Refresh MVs and HASH_SJ Hint

    I am building fast refresh MVs on a 3rd party database to enable faster reporting. This is an interim solution whilst we build a new ETL process using CDC.
    The source DB has no PKs, so I'm creating the MV logs with ROWID. When I refresh the MV (exec DBMS_MVIEW.REFRESH('<mview_name>') and trace the session I notice:
    1. The query joins back to the base table - I think this is necessary as there are two base tables and the MV change could be instigated from either table independently. Therefore the changes might not be in the log.
    2. However in this case shouldn't it be possible to just joij mv_log1 to base_table2 and ignore base_table1?
    3. There is a HASH_SJ hint in this join, forcing a full table scan on the 7M row base_table1.
    4. I am doing 1 update then refreshing the MV
    5. In production this table would have many 10s of single row inserts and updates per minute
    This is an excerpt from the tkprof'd trace file (I've hidden some table/column names)
    FROM   (SELECT MAS$.ROWID RID$ 
                  ,MAS$.* 
            FROM   <base_table1> MAS$
            WHERE  ROWID IN (SELECT  /*+ HASH_SJ */ 
                                    CHARTOROWID(MAS$.M_ROW$$) RID$    
                             FROM   <mview_log1> MAS$  
                             WHERE  MAS$.SNAPTIME$$ > sysdate-1/24 --:1
           ) AS OF SNAPSHOT (:2) JV$
           ,<base_table2> AS OF SNAPSHOT (:2)  MAS$0
    WHERE   JV$.<col1>=MAS$0.<col1>
    AND     JV$.<col2>=MAS$0.<col2>
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1     13.78     153.32     490874     551013          3           1
    Fetch        0      0.00       0.00          0          0          0           0
    total        2     13.78     153.32     490874     551013          3           1
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 277  (<user>)   (recursive depth: 1)
    Rows     Row Source Operation
          1  TABLE ACCESS BY INDEX ROWID <base_table2>(cr=551010 pr=490874 pw=0 time=153321352 us)
          3   NESTED LOOPS  (cr=551009 pr=490874 pw=0 time=647 us)
          1    VIEW  (cr=551006 pr=490874 pw=0 time=153321282 us)
          1     HASH JOIN RIGHT SEMI (cr=551006 pr=490874 pw=0 time=153321234 us)
          2      TABLE ACCESS FULL <base_table1_mv_log> (cr=21 pr=0 pw=0 time=36 us)
    7194644      TABLE ACCESS FULL <base_table1>(cr=550985 pr=490874 pw=0 time=158282171 us)
          1    INDEX RANGE SCAN <base_table2_index> (cr=3 pr=0 pw=0 time=22 us)(object id 3495055)As you can see there are two rows in the MV log (one update, old and new values), the FTS on the base table ensure that the MV refresh is far from fast
    I have tried this with refreshing on demand and commit with similar results. Implementing this would make my the application impossibly slow.
    I will search the knowledge base once I am given access
    SQL>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 64-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - ProductionThank you for taking the time to read/respond.
    Ben

    Thanks for looking.
    From the Knowledge Base it appears that Bug 6456841 might be the cause. I'll play around with the settings it suggests and see what happens.
    the MV query is basically:
    SELECT ...
    FROM   base_table1
          ,base_table2
    WHERE  base_table1.col1 = base_table2.col1
    AND    base_table1.col2 = base_table2.col2When 1 row in base_table1 is updated there is a FTS for that table, rather than:
    1. getting the data from the MV log or
    2. a Nested loop join to base_table1 from its mv_log on rowid
    This is due to the oracle internal code putting a HASH_SJ hint in when joining the mv log to its base table
    Ben

  • Refresh control hints lables after change the locale

    Hello,
    I'm building a web application using ADF ( JSP/BC4J/STRUTS ).
    I want to give the user the facility to change the display language, so i made an event on a Data Action that change both HTTP session locale and Application Module session locale
    the code is :
    public void onChangeLang(DataActionContext ctx)
    Locale userLocale = getLocale(ctx.getHttpServletRequest());
    String newLang = "en";
    if ("en".equals(userLocale.getLanguage()))
    newLang = "ar";
    Locale newUserLocale = new Locale(newLang,"") ;
    setLocale(ctx.getHttpServletRequest(),newUserLocale);
    ctx.getBindingContainer().getDataControl().setLocaleContext(new DefLocaleContext(newUserLocale));
    ctx.getBindingContainer().refreshControl();
    The locale change correctly after executing this action , but the control hint labels remain as it is !!
    So how i can refresh these labels, or how i correctly change the user language based on his event ?

    Hi,
    anybody can help in this problem !!

  • Refreshing textField

    Hi,
    I have a dynamic textField with custom made scrollbar into
    which the text from XML is loaded. I also have a dynamicly created
    menu. After you click on menu, a new content is loaded into a
    textField. The scrollBar is visible if the content_mc (where the
    textfield is) is higher then the mask. The problem is that
    sometimes looks like the content is not fully loaded into a
    textField and sometimes I get a blank textField, but the scrollbar
    is visible, which means that a content is loaded, but I don't know
    where is it, sometimes the content doesn't start at the begining
    and I can't even get there.I get the blank textField after a few
    clicks so I assume it has to be something with a refreshing a
    textField. Any ideas? THX for your help

    Hi, THX both of you guys
    arunbe, I do have enabled the IgnoreWhite and I'm not using a
    flash inbuilt scroll component. I modified the scroll bar from
    kirupa.com and it's working fine (i'm using it also with the menu).
    I tried both suggestions and here's the result. It still
    doesn't show the whole content (is there a limit of characters in
    Flash text fields???). If I move scroll bar to the bottom and then
    click other button in menu, it looks like the scrollbar is
    including the previous scrolled content and starts with the new
    loaded content from there so I can't see new loaded content from
    start. If I don't scroll then the new loaded content starts from
    the top. THX fro your help so far.

  • Is there any way to prevent misbehaving solved by refreshing the browser?

    When I play my published Captivate 6 file in the browser (in this case Google Chrome), it sometimes gets "stuck" --- rollovers don't  work properly or buttons don't show up when they are supposed to. Sometimes I get the audio echo problem where audio from some previous slide plays on a future slide). None of these things happen during previews.
    If I refresh the browser and then continue where I left off, the problems are gone.
    What is causing this awful behavior? I am afraid I am disappointing my client, which I never want to do and have never done in the past!  We will have to publish instructions telling people that if anything goes wrong, they should just refresh their browsers. But some may not know how to do that, some may not read the instructions, etc. etc. causing support calls to my client and general dissatisfaction with the training.
    Is this just a shoddy product or did I not do something I need to do to get it to behave itself?
    Please advise! Thank you,
    Ellen

    hmm the a64 is locked so you cannot use a cpu multipier to have only cpu go faster..
    i oc with the fsb....but noticed that i may actually be over running my power, at high oc's(233)  if i unplug at least 3 hard drives, and some fans it will run microsofts memmory tester...but not with them in.
    you may be able to oc if you drop your mem speed down in bios to 333 or 200.
    so when you oc the memm will clib from there...i have seen good results from that.
    one person was able to catch my 232 results from dropping down to 200 mem speeds.

  • JSFL - Refreshing a Textfield within a Movieclip?

    I'm making a script that updates text within several movieclips in a Flash document. Loading object names and new copy from a text file is working, opening those objects and replacing their embedded textfields' text is working, and everything looks great when you publish the SWF.
    However - the IDE only sometimes updates the text that appears in the textfield from the main timeline. So if a title is supposed to say 'New Title' instead of 'Title', it will read as 'Title' when I'm looking at the project from the root level. When I double-click on the symbol instance to view its embedded textfield, it changes to 'New Title'. Then when I return to the root, it reverts to 'Title'. It's only a cosmetic problem, but it makes it appear as though the tool does not work.

    quote:
    Originally posted by:
    kglad
    you must wait until the contents of that frame are rendered
    before trying to reference the contents. flash has a render event
    you can use for that purpose.
    Thanks for the reply. I did a little googling and it looks
    like I'm screwed:
    http://www.actionscript.org/forums/showthread.php3?t=143158
    Because my attached MC uses different frames for different
    dialog boxes (that share elements, hence on the different frames)
    there is no guarantee that it'll work.
    I did a test on my own and the Event.RENDER wasn't even
    firing at all :(

  • Want jtable  to be refreshed...on change of the textfield change..

    The code is below and question follows the code :
    import java.sql.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.event.*;
    public class sample extends JFrame
         JTable tableFindsymbol;
         JFrame FindSymbolFrame;
         JTextField symbolText = new JTextField(35);
        private String getsymbolTextfieldtext;
        private int columns;
         Vector columnNames = new Vector();
        Vector data = new Vector();
        private String query;
         public sample()
                   FindSymbolFrame = new JFrame("sample");
                  FindSymbolFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                  Container myPane = FindSymbolFrame.getContentPane();
                  myPane.setLayout(new GridBagLayout());
                  GridBagConstraints c = new GridBagConstraints();
                  setMyConstraints(c,0,0,GridBagConstraints.CENTER);myPane.add(getFieldPanel(),c);
                  setMyConstraints(c,0,1,GridBagConstraints.CENTER);myPane.add(getTable(),c);
                  FindSymbolFrame.pack();
                  Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
                  Dimension frameSize = FindSymbolFrame.getSize();
                  FindSymbolFrame.setLocation(new Point((screenSize.width - frameSize.width) / 2 , (screenSize.height - frameSize.width) / 2));
                  FindSymbolFrame.setVisible(true);
         public JPanel getFieldPanel()
              JPanel p = new JPanel(new GridBagLayout());
              p.setBorder(BorderFactory.createTitledBorder("Enter Details"));
              GridBagConstraints c = new GridBagConstraints();
              setMyConstraints(c,0,0,GridBagConstraints.CENTER);p.add(symbolText,c);
              symbolText.addKeyListener(listener);
              return p;
         KeyListener listener = new KeyListener()
                    public void keyPressed(KeyEvent e) {}
                    public void keyReleased(KeyEvent e)
                              getsymbolTextfieldtext = symbolText.getText();
                              getTable();
                   public void keyTyped(KeyEvent e){}
         public JPanel getTable()
              try{
                        query =  "SELECT SYMBOL, CO_NAME FROM CO_DB_WITH_NAME where CO_NAME LIKE '"+ getsymbolTextfieldtext +"'";
                        JOptionPane.showMessageDialog(null,query);
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                        Connection con = DriverManager.getConnection("jdbc:odbc:sdb","scott","tiger");
                        final Statement st = con.createStatement();
                        ResultSet rs = st.executeQuery(query);
                        ResultSetMetaData md = rs.getMetaData();
                        int columns = md.getColumnCount();
                        for (int i = 1; i <= columns; i++)
                               columnNames.addElement( md.getColumnName(i) );
                       while(rs.next())
                             Vector row = new Vector(columns);
                              for (int i = 1; i <= columns; i++)
                                  row.addElement( rs.getObject(i));
                          data.addElement( row );
                     rs.close();
              }catch(Exception e)
                               System.out.println( e );
                        JPanel tablePane = new JPanel(new GridBagLayout());
                        DefaultTableModel model = new DefaultTableModel(data,columnNames);
                        tableFindsymbol = new JTable(model);
                        tablePane.add(tableFindsymbol);
                         JScrollPane scrollPane = new JScrollPane(tableFindsymbol);     
                         getContentPane().add(scrollPane);
                        tablePane.add(getContentPane());
                        tableFindsymbol.setRowSelectionAllowed(true);
                        tableFindsymbol.setColumnSelectionAllowed(false);
                        tablePane.setVisible(true);
                      return tablePane;
         private  void setMyConstraints(GridBagConstraints c, int gridx, int gridy, int anchor)
              c.gridx = gridx;
              c.gridy = gridy;
              c.anchor = anchor;
         public static void main(String[] args)
              sample fsymf=new sample();
    }what i want to do is: make the jtable get updated as soon the text in the text field changes..
    how do i call the jtable panel so it updates the table or any jtable update method
    Thanks for reply in advance..

    Quit multi-posting questions.
    You where already given the answer to this question in your last posting:
    [http://forum.java.sun.com/thread.jspa?threadID=5270240]
    Also, in the future don't forget to use the [Code Formatting Tags|http://forum.java.sun.com/help.jspa?sec=formatting], so the posted code retains its original formatting.

  • Tabstrip/ Subscreen - no focus Textfields beside

    Hey,
    I want to create a Dynpro with textfields on the left and a tabstrip control on the right side in that I want to show PDF files later.
    My problem is that I can´t access/ focus the textfields left/ right or beyond the tabstrip control when I put it on the mask. It doesn´t matter if I do it with the wizard or put it manual there.
    When I move the textfields above the the ts-control everything is fine and I can access the textfield.
    Does anyone knows this strange behaviour or has a solution/ hint?
    Thanks in advance.
         Tobi

    Hi craig,
    check this thread
    Refresh ALV
    it gives you information about how to refresh ALV
    hope it helps you.
    thanks
    Sachin

  • NSArrayController and refreshing the associated TableView

    Hello,
    I'm a Cocoa rank newbie and I'm probably trying to do something too complicated for my current abilities but here goes. I've been using Hillegass' book and am building an App that uses the NSArrayController to manage an NSTableView. I can add and delete objects and all that stuff. My problem comes when the data in the objects that are bound to the TableView changes "behind the Controller's back". The values in the objects are clock-based and I need to cause the TableView to refresh it's view of the bound data every second. I have scoured the web for how to cause a refresh and the answer seems to be either use the KVO method (which I can't really do (I think) because I'm not changing the data) or "send a -fetch" to the ArrayController.
    Sending the fetch seems like what I want to do but I can't find any information on how to do it. In the end, I don't really understand how to get a reference to the ArrayController object sitting in the Doc window that has all the bindings. I basically don't understand any of the objects in the Doc window. I dutifully drag them in and make connections to them but I don't really understand why.
    Any help on refreshing the NSArrayController would be much appreciated.
    Tom

    OK, incase anyone else is struggling with this, I got this working. From various posting, it seemed that I needed to create an IBOutlet and connect it to my ArrayController. I was having a tough time getting my head around that since all I'd ever done till now was connect IBOutlets to visual things such as TextFields. I finally found a hint that said I needed to connect the outlet from File's Owner to the ArrayController. So, I created an IBOutlet in my myDocument file;
    @interface MyDocument : NSDocument
    NSMutableArray *myObject;
    IBOutlet NSArrayController *arController;
    Then, in IB, I right-clicked File's Owner and dragged from the arController Outlet to the ArrayController object in the Doc window.
    Then, in myDocument.m, in the place that I wanted to refresh the list, I did this;
    (bracket)arController rearrangeObjects(bracket);
    (how do you post code snippets in these forums without it being "interpreted"?)
    Simple enough now that I've done it but it took me awhile to connect the dots.
    Anyway, I hope this helps someone else in the same boat.

  • Not able to refresh the data in a table

    Hi In my application i fill data in a table on clikc of a button ..
    Following are the line of code i have user
    RichColumn richcol = (RichColumn)userTableData.getChildren().get(0);                                           (fetch the first column of my table)
    richcol.getChildren().add(reportedByLabel);                                                                   (reportedByLabel is a object of RichInputText)
    AdfFacesContext adfContext1 = AdfFacesContext.getCurrentInstance();
    adfContext1.addPartialTarget(richcol);
    adfContext1.addPartialTarget(userTableData);
    But on submit of that button table data is not refreshed after adding partial trigger on that table as well as that column also .... any idea??
    Edited by: Shubhangi m on Jan 27, 2011 3:50 AM

    Hi,
    The Code that you have shown adds an additional inputText component to the first column of a table.
    Is that your intention?
    If yes, please use the following code snippet to achieve your functionality:
    JSPX Code:
    <af:form id="f1">
    <af:commandButton text="Add Column" id="cb1"
    actionListener="#{EmployeesTableBean.onAddColumn}"/>
    <af:table value="#{bindings.Employees.collectionModel}" var="row"
    rows="#{bindings.Employees.rangeSize}"
    emptyText="#{bindings.Employees.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.Employees.rangeSize}"
    rowBandingInterval="0"
    selectedRowKeys="#{bindings.Employees.collectionModel.selectedRow}"
    selectionListener="#{bindings.Employees.collectionModel.makeCurrent}"
    rowSelection="single" id="t1"
    binding="#{EmployeesTableBean.table}">
    <af:column sortProperty="EmployeeId" sortable="false"
    headerText="#{bindings.Employees.hints.EmployeeId.label}"
    id="c1">
    <af:outputText value="#{row.EmployeeId}" id="ot2">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.Employees.hints.EmployeeId.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="FirstName" sortable="false"
    headerText="#{bindings.Employees.hints.FirstName.label}"
    id="c2">
    <af:outputText value="#{row.FirstName}" id="ot1"/>
    </af:column>
    <af:column sortProperty="LastName" sortable="false"
    headerText="#{bindings.Employees.hints.LastName.label}"
    id="c3">
    <af:outputText value="#{row.LastName}" id="ot3"/>
    </af:column>
    </af:table>
    </af:form>
    Bean:
    public class EmployeesTableBean {
    private RichTable table;
    public EmployeesTableBean() {
    public void setTable(RichTable table) {
    this.table = table;
    public RichTable getTable() {
    return table;
    public void onAddColumn(ActionEvent actionEvent) {
    RichInputText newRichInputText = new RichInputText();
    newRichInputText.setId("new");
    newRichInputText.setValue("Name:");
    RichColumn richcol = (RichColumn)table.getChildren().get(0);
    richcol.getChildren().add(newRichInputText);
    AdfFacesContext adfContext1 = AdfFacesContext.getCurrentInstance();
    adfContext1.addPartialTarget(table);
    Thanks,
    Navaneeth

  • How can I fast refresh the  materialized view !!

    I created a MV base on some tables in order to improve the querey speed.
    but the mv I have created falied to refresh fast.
    because there are two same table in the from clause:
    jcdm jc1,jcdm jc2
    create materialized view temp_mv
    nologging
    pctfree 0
    storage (initial 2048k next 2048k pctincrease 0)
    parallel
    build immediate
    refresh force
    on demand
    as
    select
    TAB_GSHX.rowid hx_rid,
    TAB_GSHD.rowid hd_rid ,
    JC1.rowid jc1_rid ,
    JC2.rowid jc2_rid ,
    YSHD_ID     HXID,          
    JC1.JCDM     QFD,     
    JC2.JCDM     JLD     
    FROM
    TAB_GSHX,
    TAB_GSHD,
    jCDM JC1,
    JCDM JC2
    WHERE
    YSHD_ID=YSHX_ID
    AND YSHD_QFD=JC1.JBJC_ID
    AND YSHD_JLD=JC2.JBJC_ID
    AND TO_CHAR(YSHX_time,'YYYYMMDD')='20030101'
    the column msgtxt of the table MV_CAPABILITIES_TABLE is :
    "the multiple instances of the same table or view" and " one or more joins present in mv".
    How can I succeed in fast refresh the above temp_mv!!!
    thanks.

    lianjun,
    When you are using Oracle9i there is a procedure which can help you setup the materialized view. If some option isn't working it gives you hint why it doesn't work.
    The procedure is dbms_mview.explain_mview.
    Take a look at the documentation how to use it. (In the Oracle9i DWH guide the package is explained.)
    Hope this helps
    With kind regards,
    Bas Roelands

  • Clicking a tree node does not refresh the fields in the table component

    hi all,
    I am using a tree component along with a table component in my page.so whenever i am clicking on a node it should display the relevant information of that node in the table from the database.But whenever i am doing the page is not refreshing and the old values of the textfields in the table still exist.i have written the code to populate the table in a button click event.It is working fine but the same is not working when i am clicking any node in the tree component.Can anyone provide a solution to this problem.
    Thanks and regards,
    Prasant Kumar

    Never mind... I actually found something that works...
    treeModel.nodeStructureChanged(leadSelection);

Maybe you are looking for

  • Is there a way to hook up a magic mouse to an ipad

    I am trying to hook up a mouse to my ipad 2. Is there a way to do it?

  • Select PreparedStatement execution slowdown overtime - Oracle 10.2.0.1

    This is a very confusing issue. We have a batch type application built on Hibernate using Oracle JDBC 10.2.0.1 drivers. Currently using a Spring configured connection pool (don't think this is the issue). Basically, the first step of the process invo

  • PFCG role creation and input from users

    I know that when you create a new role and add transactions to the menu you will get some default authorization objects in the role. After that you will need to fill out activities for transactions; For ex: display, create, change I also know that du

  • Under what circumstances JNI_CreateJavaVM will return 0

    Hello all, Can any one please tell me "under what cicumstances JNI_CreateJavaVM returns 0" ? The following code segment returns 0. when I try to debug the code segment using VC++ 6.0. jdk 1.4.1 ON WINDOWS 2000 Prof. The debugger first shows status =

  • Visual Basic 5/Oracle DB

    Hi, I need help to insert a date in a oracle table through VB 5. I am using ODBCDirect, but always I have run time error '3146: ODBC -- Call faild; ORA-00932:inconsistent datatypes. I can do this with text and numeric fields but I can't with date fie