ErrorMessageTop
string ErrorMessage
Get or set the message shown when user input is not valid.
Show/Hide Code
<?php
$col = new GridBoundColumn();
$validator = new RangeValidator();
$validator->MinValue = 10;
$validator->MaxValue = 100;
$validator->ErrorMessage = "Not in range!";
$col->AddValidator($validator);
$grid->MasterTable->AddColumn($col);
?>
Supported from version: 1.3.0.0
MaxValueTop
string MaxValue
Get or set the maximum value.
Show/Hide Code
<?php
$col = new GridBoundColumn();
$validator = new RangeValidator();
$validator->MinValue = 10;
$validator->MaxValue = 100;
$validator->ErrorMessage = "Not in range!";
$col->AddValidator($validator);
$grid->MasterTable->AddColumn($col);
?>
Supported from version: 1.3.0.0
MinValueTop
string MinValue
Get or set the minimum value.
Show/Hide Code
<?php
$col = new GridBoundColumn();
$validator = new RangeValidator();
$validator->MinValue = 10;
$validator->MaxValue = 100;
$validator->ErrorMessage = "Not in range!";
$col->AddValidator($validator);
$grid->MasterTable->AddColumn($col);
?>
Supported from version: 1.3.0.0