Occurs when an error message is displayed on the client side.
[Inline HTML]
<ELEMENT ErrorMessageShown = "handler" ...>
[JavaScript]
FpSpread1.addEventListener("ErrorMessageShown", handler, ...)
or
FpSpread1.onErrorMessageShown = handler
None
This event is triggered when an error message is displayed on the client side.
This is a sample that contains the event. On the client side, the script that contains the event would look like this:
JavaScript |
Copy Code
|
---|---|
<script type="text/javascript"> function error(event) { alert("error"); } </script> |