Page History
Callback handler to receive onmouseover events.onmouseover イベントを受信するコールバック・ハンドラー
| Info |
|---|
| This handler is not available for このハンドラーは jQuery Mobile or Geocharts. |
Default value
No handler.
Valid values
The name of a Javascript function to be called when the mouse rolls over an item. The function receives an object argument that has the list row and column of the item under the mouse.
...
またはジオチャートでは利用できません。 |
デフォルト値
ハンドラー無し
有効値
マウスがアイテム上に来た時に呼び出されるJavascriptファンクションの名前
このファンクションは、マウス下のリスト行と列が含まれたオブジェクト引数を受け取ります。
例:
function onmouseoverHandler(evt) {
alert("onmouseover handler: Row=" + evt.row + ". Column=" + evt.column);
}