[Wicket-user] lastFocusId

2007-02-26 Thread ChuckDeal
Wicket 1.3 (revison 511857) (IE6) I remembered a thread on the Wicket-dev list that was talking about implementing a feature that would store the id of the last edited field so that AJAX could then set the foxus back to it when execution returned. As of this morning, it appears that this code

Re: [Wicket-user] lastFocusId

2007-02-26 Thread ChuckDeal
ChuckDeal wrote: INFO: Response parsed. Now invoking steps... INFO: Response processed successfully. INFO: Invoking post-call handler(s)... ERROR: Error while parsing response: 'lastFocusId' is undefined I did my best to trace the problem and it appears to be line 1366 or

Re: [Wicket-user] lastFocusId

2007-02-26 Thread Johan Compagner
that that patch works for you is pretty strange. For example this error: ERROR: Error while parsing response: 'lastFocusId' is undefined that has to be because of: requestFocus: function() because that is called in the ajax post handlers. I updated the js file again can you test it

Re: [Wicket-user] lastFocusId

2007-02-26 Thread ChuckDeal
Johan Compagner wrote: For example this error: ERROR: Error while parsing response: 'lastFocusId' is undefined that has to be because of: requestFocus: function() because that is called in the ajax post handlers. Well, actually, that error happened BEFORE I updated to the newer

Re: [Wicket-user] lastFocusId

2007-02-26 Thread Johan Compagner
Well, actually, that error happened BEFORE I updated to the newer revision from source. It didn't happen after the update, instead I saw a message that said last focus id was not set yes that is the log message you should get thats fine. johan