Thread Rating:
  • 320 Vote(s) - 2.88 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ValueFineshed 発生直前の値
03-07-2013, 08:42 AM,
#1
ValueFineshed 発生直前の値
TextField にある値が入力された際に値のチェックを行い、
ある条件の場合に、変更前の値に表示を戻したいです。

変更前の値を簡単に取得するには、どうすればよいですか?

value セッター が呼ばれるたびに、値を保持する方法しかないでしょうか。

undo メソッドが使えるかと思いましたが、スタック数の問題もあり、確実ではないと思っています。

Code:
{curl 8.0 applet}
{curl-file-attributes character-encoding = "utf8"}
{applet manifest = "manifest.mcurl",
{compiler-directives careful? = true}
}
「0」 が入力されたら、「変更前の値」をポップアップする
{def tf =
    {TextField
        {on ValueFinished at tf:TextField do
            {if tf.value == "0" then
                {tf.undo}
                def val = tf.value
                {popup-message "「0」が入力されたので、変更前の「" & val & "」に戻しました。"}
            }
        }
    }
}
{value tf}
{CommandButton
    label = "set-value-with-events \"test\"",
    {on Action do
        {tf.set-value-with-events "evnets test"}
    }
}
{CommandButton
    label = "set-value-with-events \"0\"",
    {on Action do
        {tf.set-value-with-events "0"}
    }
}
{CommandButton
    label = "set .value \"test\"",
    {on Action do
       set tf.value = ".value test"
    }
}
{CommandButton
    label = "set .value \"0\"",
    {on Action do
        set tf.value = "0"
    }
}



Messages In This Thread
ValueFineshed 発生直前の値 - by umemura - 03-07-2013, 08:42 AM
Forum Jump:


Users browsing this thread:
1 Guest(s)

MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1017 - Can't find file: 'mybb_threadviews' (errno: 2)
Query:
INSERT INTO mybb_threadviews (tid) VALUES('866')