在下拉菜单和文本输入验证上启用按钮

Enable button on drop-down & Text Input Validation

[ 添加 ] 按钮在选择所有 3 个下拉列表时启用。试图找出当用户在 Quantity TextInput

上输入数字时如何启用 [ADD]

显示模式: If(IsBlank(drpCategory.Selected.Result) || IsBlank(drpSubCategory.Selected.Result) || IsBlank(drpProductName.Selected.Result),Disabled,Edit)

TextInput 属性:我有以下正则表达式

边框颜色: If(Not(IsMatch(txtQuantity.Text, "\d*"))&&!IsBlank(txtQuantity.Text),RGBA(255,0,0,1),RGBA(0,18,107, 1))

您所要做的就是获取数量字段的值,如下所示:

('#IdOfQuantity').change(function(){
  if(typeof ValueOfQuantity =='number'){
    $( "#IdOfButton" ).prop( "disabled", false );
}
});