Focal Point
[SOLVED] Blinking cursor in start text box

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/1157004895

February 09, 2011, 04:22 AM
ChristianP
[SOLVED] Blinking cursor in start text box
Hello,
how can i allocate a blinking cusor to a text box and change the art of blinking, after the form is loaded.

Christian

This message has been edited. Last edited by: Kerry,


WF Production Version: 7.7.02M
WF Test Version: 7.7.02M
Developer Studio: 7.7.02
HTML, EXL2K, FLEX, PDF,PPT
February 09, 2011, 05:36 AM
Ramkumar - Webfous
  
<SCRIPT id=clientEventHandlersJS type=text/javascript>
function setFocus(){document.getElementById("edit1").focus();}
</SCRIPT>
<BODY style="OVERFLOW: auto" onLoad="setFocus();">
<INPUT id=edit1 tabIndex=1 name=edit1>
</BODY>




Thanks,

Ramkumar.
WebFOCUS/Tableau
Webfocus 8 / 7.7.02
Unix, Windows
HTML/PDF/EXCEL/AHTML/XML/HTML5
February 09, 2011, 08:54 AM
<FreSte>
... including changing of the cursor ...

<script id=clientEventHandlersJS type=text/javascript>
function setFocus() {
  document.getElementById("edit1").focus();
  document.getElementsByTagName("body")[0].style.cursor = "";
}
</SCRIPT>
<BODY style="OVERFLOW: auto; cursor:wait;" onLoad="setFocus();">
<INPUT id=edit1 tabIndex=1 name=edit1>
</BODY>

February 09, 2011, 09:39 AM
ChristianP
Perfect!!!!
Thanks a lot!!!
Christian


WF Production Version: 7.7.02M
WF Test Version: 7.7.02M
Developer Studio: 7.7.02
HTML, EXL2K, FLEX, PDF,PPT
February 09, 2011, 04:05 PM
Waz
Wow, Javascript and HTML support. Smiler

Is it Cross Browser compliant ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

February 10, 2011, 01:28 AM
Ramkumar - Webfous
yes Waz...

This code is cross browser compliant.

Tested in IE, Chrome and FireFox.


Thanks,

Ramkumar.
WebFOCUS/Tableau
Webfocus 8 / 7.7.02
Unix, Windows
HTML/PDF/EXCEL/AHTML/XML/HTML5
February 10, 2011, 03:40 PM
Waz
Awsome. Cool


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!