[]
Hides the error message from the ShowMessage method.
[JavaScript]
FpSpread1.HideMessage(row,column);
row
Integer, row index
column
Integer, column index
None
This method hides the error message for the specified cell. This method does not cause a postback to occur.
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
<script type="text/javascript">
function hide() {
FpSpread1.HideMessage(1,1);
}
</script>