[jira] [Commented] (WICKET-1404) Investigate default focus support (on Page or RequestCycle)

2014-10-13 Thread James Carman (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1404?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14169481#comment-14169481
 ] 

James Carman commented on WICKET-1404:
--

Yeah, seems like the right thing to do.  Cheers

 Investigate default focus support (on Page or RequestCycle)
 ---

 Key: WICKET-1404
 URL: https://issues.apache.org/jira/browse/WICKET-1404
 Project: Wicket
  Issue Type: New Feature
  Components: wicket
Affects Versions: 1.3.1
Reporter: James Carman
Priority: Minor
 Attachments: WICKET-1404.patch


 We need something which gives a component the focus when the page loads.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (WICKET-1404) Investigate default focus support (on Page or RequestCycle)

2012-03-04 Thread James Carman (Commented) (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1404?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13221878#comment-13221878
 ] 

James Carman commented on WICKET-1404:
--

I guess it's a matter of philosophy.

 Investigate default focus support (on Page or RequestCycle)
 ---

 Key: WICKET-1404
 URL: https://issues.apache.org/jira/browse/WICKET-1404
 Project: Wicket
  Issue Type: New Feature
  Components: wicket
Affects Versions: 1.3.1
Reporter: James Carman
Priority: Minor
 Attachments: WICKET-1404.patch


 We need something which gives a component the focus when the page loads.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (WICKET-1404) Investigate default focus support (on Page or RequestCycle)

2012-03-04 Thread Martin Grigorov (Commented) (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1404?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13221880#comment-13221880
 ] 

Martin Grigorov commented on WICKET-1404:
-

I guess you are right :-)

A question: should this behavior be used only for FormComponents or it should 
be extended to add 'tabindex' parameter for non-FormComponents to be able to 
focus such ?

 Investigate default focus support (on Page or RequestCycle)
 ---

 Key: WICKET-1404
 URL: https://issues.apache.org/jira/browse/WICKET-1404
 Project: Wicket
  Issue Type: New Feature
  Components: wicket
Affects Versions: 1.3.1
Reporter: James Carman
Priority: Minor
 Attachments: WICKET-1404.patch


 We need something which gives a component the focus when the page loads.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Commented] (WICKET-1404) Investigate default focus support (on Page or RequestCycle)

2012-03-03 Thread Martin Grigorov (Commented) (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1404?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13221560#comment-13221560
 ] 

Martin Grigorov commented on WICKET-1404:
-

Is this really needed in -core ? it is quite simple to roll out yourself.
I haven't seen anyone asking for this in the mailing lists..

 Investigate default focus support (on Page or RequestCycle)
 ---

 Key: WICKET-1404
 URL: https://issues.apache.org/jira/browse/WICKET-1404
 Project: Wicket
  Issue Type: New Feature
  Components: wicket
Affects Versions: 1.3.1
Reporter: James Carman
Priority: Minor
 Attachments: WICKET-1404.patch


 We need something which gives a component the focus when the page loads.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (WICKET-1404) Investigate default focus support (on Page or RequestCycle)

2010-10-18 Thread Anatoly Kupriyanov (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1404?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12922023#action_12922023
 ] 

Anatoly Kupriyanov commented on WICKET-1404:


It's bad idea to set focus from the onload event. This event could occur after 
a control is visible and a user starts edit the control - focus suddenly jumps 
to another one.
I hate this - I open page, it still loading but login/password form already 
rendered and while I'm typing a password, page finishes loading and focus 
suddenly jumps to the login box, it could reveal my password.
Usually it's better to put getElementById(' + component.getMarkupId() + 
').focus() right after form component.

 Investigate default focus support (on Page or RequestCycle)
 ---

 Key: WICKET-1404
 URL: https://issues.apache.org/jira/browse/WICKET-1404
 Project: Wicket
  Issue Type: New Feature
  Components: wicket
Affects Versions: 1.3.1
Reporter: James Carman
Priority: Minor
 Fix For: 1.5-M3

 Attachments: WICKET-1404.patch


 We need something which gives a component the focus when the page loads.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (WICKET-1404) Investigate default focus support (on Page or RequestCycle)

2010-10-18 Thread Igor Vaynberg (JIRA)

[ 
https://issues.apache.org/jira/browse/WICKET-1404?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12922105#action_12922105
 ] 

Igor Vaynberg commented on WICKET-1404:
---

thats why there is also ondomready() which shouldnt suffer from that problem.

 Investigate default focus support (on Page or RequestCycle)
 ---

 Key: WICKET-1404
 URL: https://issues.apache.org/jira/browse/WICKET-1404
 Project: Wicket
  Issue Type: New Feature
  Components: wicket
Affects Versions: 1.3.1
Reporter: James Carman
Priority: Minor
 Fix For: 1.5-M3

 Attachments: WICKET-1404.patch


 We need something which gives a component the focus when the page loads.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.