一个简单的问题。我有 2 个控制更改事件。
我有第一个事件:
ctrlProducto_tipo.on ('change', function(e){
if (this.getValue()== 'Up'){
var strProducto = 'U';}
if (this.getValue()== 'Down'){
var strProducto = 'D';}
if (this.getValue()== 'Left'){
var strProducto = 'L';}
if (this.getValue()== 'Right'){
var strProducto = 'R';}
ctrlTest1.setValue(strProducto);
});
当我选择“向下”时,我的text1.textfield“D”中有
在我要显示的第二个事件中Test2.textbox:
ctrlEspesor.on ('keyup', function(e){
if (this.getValue()!== ''){
var strEspesor = ctrlEspesor.getValue();}
ctrlTest2.setValue(strEspesor);
当我输入'4'时,我有'4'。
这两个事件有效。但是现在我尝试连接strProducto和strEspesor到ctrlTest3.textbox(在ctrlTest1&之前不显示ctrlTest2)。
但是每次用户更改两个值之一时,我都需要ctrlText3即时更新。
我试试这个,没有成功。
var valueFinal = strProducto.concat(strEspesor);
ctrlTest3.setValue(valueFinal);
示例ctrlTest3:'D4'
欢迎提供大帮助,谢谢.....
慕的地6264312
函数式编程
慕码人8056858
随时随地看视频慕课网APP
相关分类