Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードはエラーを示しています。
req.Display = "dynamic"; cell.Controls.Add(req);
エラーが表示されます。ダイナミックを表示する方法は?
Validator で使用できる列挙型を使用する必要があります。
req.Display=ValidatorDisplay.Dynamic;
これが役立つと思います。