<script>
function OnInit(s, e) {
var input = s.GetInputElement();
var MyValue = TextBox.GetValue(); // Question is here
ASPxClientUtils.AttachEventToElement(input, "click", function (event) {
s.SetText("");
});
}
function onLostFocus(s, e) {
if (s.GetText() == '')
s.SetSelectedIndex(0);
}
</script>
onLostFocus 関数で「MyValue」を使用したい。
onLostFocus 関数で「MyValue」を取得するにはどうすればよいですか?
どんな助けでも大歓迎です。