Extjs-components-tooltip

提供:Dev Guides
移動先:案内検索

Ext.js-ツールチップ

何らかのイベントが発生したときに表示される小さな情報。 基本的に、イベントにカーソルを合わせるために使用されます。

構文

以下は、ツールチップを作成する簡単な構文です。

T1 = new 'Ext.ToolTip'({properties});

以下は、ツールチップを示す簡単な例です。

<!DOCTYPE html>
<html>
   <head>
      <link href = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css"
         rel = "stylesheet"/>
      <script type = "text/javascript"
         src = "https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>

      <script type = "text/javascript">
         Ext.onReady(function() {
            toolTip = new Ext.ToolTip ({
               id : 'toolTip',
               anchor : 'bottom',
               html : 'This is a basic toolTip',
               title : 'Tool - Tip Title',
               closable : true,
               closeAction : 'hide'
            });
            Ext.create('Ext.Button', {
               renderTo: Ext.getElementById('buttonId'),
               text: 'Hover Me',

               listeners: {
                  mouseover: function() {
                     toolTip.show();
                  }
               }
            });
         });
      </script>
   </head>

   <body>
      <div id = "buttonId"></div>
   </body>
</html>

上記のプログラムは、次の結果を生成します-