一些常用的方法集合
lineEdit输入框事件
function value_change_event(sValue, sType)
if sType == 'return' then--回车事件
print( sValue )
elseif sType == 'finish' then--失去焦点和回车都会触发该事件
print( sValue )
elseif sType == 'search' then--如果启用了属性is_search,输入框右侧会有一个搜索按钮,点击按钮触发该事件
print( sValue )
else--输入值改变
print( sValue )
end
end
ui:setValueChangeEvent('id_line_edit', 'value_change_event');
页面关闭截获方法,页面是否允许关闭
function close_dialog_event()
if ui:msgConfirm('确认关闭?') == false then
ui:setClose(false);--取消关闭页面操作
end
end
ui:setCloseScript('close_dialog_event()');