Spread ASP.NET 6.0 Product Documentation
IsValid
Send Feedback
Spread ASP.NET 6.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > IsValid

Glossary Item Box

Returns whether the last value the user typed is valid.

Syntax

[JavaScript]

FpSpread1.IsValid();

Parameters

None

Return Type

Bool, whether value is valid

Remarks

This method can be used to see if the last value the user typed is valid. This method does not cause a postback to occur.

Example

This is a sample that contains the method. On the client side, the script that contains the method would look like this:

JavaScript Copy Code
<SCRIPT language=javascript>
   function getHValue() {
       var ss = document.getElementById("FpSpread1"); 
       var stopedit = ss.IsValid();
   }
</SCRIPT>

See Also

Add | Delete | Scripting Members

© 2002-2012 GrapeCity, Inc. All Rights Reserved.