Added support of Aggregate and Operator node in view-only mode. Fixes #3834

This commit is contained in:
Akshay Joshi
2021-10-29 16:14:33 +05:30
parent 7b85253465
commit 39992a817d
30 changed files with 1698 additions and 4 deletions

View File

@@ -44,6 +44,8 @@ function MappedFormControlBase({type, value, id, onChange, className, visible, i
return <FormInputText name={name} value={value} onChange={onTextChange} className={className} inputRef={inputRef} {...props} type='int'/>;
case 'numeric':
return <FormInputText name={name} value={value} onChange={onTextChange} className={className} inputRef={inputRef} {...props} type='numeric'/>;
case 'tel':
return <FormInputText name={name} value={value} onChange={onTextChange} className={className} inputRef={inputRef} {...props} type='tel'/>;
case 'text':
return <FormInputText name={name} value={value} onChange={onTextChange} className={className} inputRef={inputRef} {...props}/>;
case 'multiline':