0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Cognos Tabキーでの遷移順序指定サンプル

Posted at

Tabキー遷移順序指定

CognosでTabキーでハイライトの遷移を行う場合、デフォルトでは下図の黒数字の①~⑥の順に遷移します。
赤字の①~③のように、プロンプトのみを順番にTabキー遷移したい場合のHTMLアイテムでの実装です。
003.JPG

<SCRIPT LANGUAGE=""javascript""> 
getFormWarpRequest()._textEditBoxTB1.tabIndex = 1; 
getFormWarpRequest()._textEditBoxTB2.tabIndex = 2; 
getFormWarpRequest()._oLstChoicesDP1.tabIndex = 3; 
</SCRIPT> 

簡単ですが以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?