Occurs when Spread is going to display a touch strip.
[Inline HTML]
<ELEMENT TouchStripOpening = "handler" ...>
[JavaScript]
FpSpread1.addEventListener("TouchStripOpening", handler, ...)
or
FpSpread1.onTouchStripOpening = handler
None
This event is triggered when the touch menu is being opened. The TouchStripOpening event occurs regardless of the touch strip setting from the server-side. The area argument can be TOUCHSTRIP_CELL, TOUCHSTRIP_ROW, TOUCHSTRIP_COLUMN, or TOUCHSTRIP_CHART.
This example JavaScript code maps the event for the Spread on the client side.
JavaScript |
Copy Code
|
---|---|
<script type="text/javascript"> window.onload = function () { </script> |