MESCIUS InputMan for ASP.NET 10.0J > 製品の概要 > 10.0Jの変更点 > Service Pack 5の新機能 |
ここでは、Service Pack 5(以下、SP5)の新機能について解説します。
実行時にクライアント側で検証アクションを初期化する際に、既存のGcValidatorActionに設定を追加するか、GcValidatorActionを新規に作成するかを決める「IsAppendMode」プロパティを検証アクション(GcValidatorAction)エクステンダに追加しました。
IsAppendModeプロパティを True に設定すると、既存のGcValidatorActionに検証アクション設定を追加します。デフォルトは False です。
本製品の検証コントロールをSPREAD for ASP.NETのロードオンデマンド機能を有効にした状態で使用する場合、IsAppendModeプロパティを True に設定します。
Dim GcValidatorAction1 As New GrapeCity.Web.Input.IMExtenders.GcValidatorAction With { .ID = "GcValidatorAction1", .IsAppendMode = True }
GrapeCity.Web.Input.IMExtenders.GcValidatorAction GcValidatorAction1 = new GrapeCity.Web.Input.IMExtenders.GcValidatorAction { ID = "GcValidatorAction1", IsAppendMode = true };
|