pgAdmin 4 commit: Update the backform control to support sql-fields.

Поиск
Список
Период
Сортировка
От Dave Page
Тема pgAdmin 4 commit: Update the backform control to support sql-fields.
Дата
Msg-id E1aiPIh-0004n1-J9@gothos.postgresql.org
обсуждение исходный текст
Список pgadmin-hackers
Update the backform control to support sql-fields.

Following are the enhancements:
1. Added border to control which was missing earlier.
2. Allows user to provide height to sql-field control by specifying extraClasses field in model schema.
3. Defined new classes for sql-field control height in overrides.css
4. Added scrollbar to the control.

Usage:

{
  id: 'definition', label:'{{ _("Definition") }}', cell: 'string',
  type: 'text', mode: ['create', 'edit'], group: 'Definition',
  control: Backform.SqlFieldControl, extraClasses:['custom_height_css_class']
}

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=03349f4af65e2e4bbf4a24e278b4cc7affd44167
Author: Surinder Kumar <surinder.kumar@enterprisedb.com>

Modified Files
--------------
web/pgadmin/static/css/overrides.css      | 42 ++++++++++++++++++++++++++++++-
web/pgadmin/static/js/backform.pgadmin.js | 17 ++++++++++++-
2 files changed, 57 insertions(+), 2 deletions(-)


В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: On restarting/reloading the server establish the connections with database server smoothly
Следующее
От: Dave Page
Дата:
Сообщение: Re: [PATCH] Enhancement in sql-field control [pgAdmin4]