Re: [pgadmin-hackers] Numeric control optionally allow null values [pgadmin4]

2016-03-04 Thread Dave Page
Hi On Fri, Mar 4, 2016 at 6:28 AM, Harshal Dhumal < harshal.dhu...@enterprisedb.com> wrote: > Hi, > > Please find attached patch for numeric and integer control with optionally > null value support. > > Usage: > > 1] Integer > > id: 'fillfactor', label: '{{ _('Fill factor') }}', deps: ['index'],

Re: [pgadmin-hackers] Numeric control optionally allow null values [pgadmin4]

2016-03-03 Thread Harshal Dhumal
Hi, Please find attached patch for numeric and integer control with optionally null value support. Usage: 1] Integer id: 'fillfactor', label: '{{ _('Fill factor') }}', deps: ['index'], type: 'int', group: '{{ _('Definition') }}', allowNull: true, 2] Numeric id: 'fillfactor', label: '{{

[pgadmin-hackers] Numeric control optionally allow null values [pgadmin4]

2016-03-03 Thread Harshal Dhumal
Hi, Please find attached patch for numeric control with optionally allow null values Null values: undefined/empty string/null By default numeric control value can not be null. Use flag *allowNull: true* to allow null values. Usage: id: 'fillfactor', label: '{{ _('Fill factor') }}', deps: