書式
				feObj = new Spry.Widget.ValidationTextField(elementID, type, {minValue:min, maxValue:max})
				
				feObj : エレメントオブジェクト
				elementID : エレメントID
				type : 種類
				min : 最小値
				max : 最大値
			
			
				説明
		
			
			
		
入力可能な数値の範囲を指定するにはSpry.Widget.ValidationTextField()の三番目のオプションでminValue、maxValueを指定します。minValueは最小値、maxValueは最大値を示します。
				 
			
				
				
		<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
			<html>
			<head>
			<meta http-equiv="content-type" content="text/html; charset=utf-8">
			<title>Sample</title>
			<link rel="stylesheet" href="css/SpryValidationTextField.css" type="text/css" media="all">
			<script src="js/SpryValidationTextField.js" type="text/javascript"></script>
			<script type="text/javascript"><!--
			window.onload = function() {
			 new Spry.Widget.ValidationTextField("checkText1", "integer", {minValue:"-5", maxValue:"5", validateOn:["change"]});
			}
			// --></script>
			</head>
			<body>
			<h1>Adobe Spry : 入力チェック サンプル</h1>
			<p>-5〜5までの整数が入力されていればOK。チェックは入力時と送信時に行われます。
			<form action="send.html">
			 <span id="checkText1">
			  <input type="text" name="text1" id="text1">
			  <span class="textfieldRequiredMsg">-5〜5まで整数のを入れてください</span>
			  <span class="textfieldInvalidFormatMsg">-5〜5までの整数以外は受け付けません</span>
			 </span>
			 <input type="submit" value="送信">
			</form>
			</body>
			</html>