Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4E9DA18115 for ; Wed, 14 Oct 2015 05:24:30 +0000 (UTC) Received: (qmail 93414 invoked by uid 500); 14 Oct 2015 05:24:30 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 93379 invoked by uid 500); 14 Oct 2015 05:24:30 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 93370 invoked by uid 99); 14 Oct 2015 05:24:30 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Oct 2015 05:24:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 060E4E02FF; Wed, 14 Oct 2015 05:24:30 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anovikov@apache.org To: commits@ignite.apache.org Message-Id: <5cec1ede7df744afa90b71f21c35845f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: ignite git commit: IGNITE-843 Min width for column on sql result table. Date: Wed, 14 Oct 2015 05:24:30 +0000 (UTC) Repository: ignite Updated Branches: refs/heads/ignite-843-rc1 f9cdac6b2 -> 64b85ba03 IGNITE-843 Min width for column on sql result table. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/64b85ba0 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/64b85ba0 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/64b85ba0 Branch: refs/heads/ignite-843-rc1 Commit: 64b85ba0372c1fc42f9df1dcb5cdc716e2bc25ee Parents: f9cdac6 Author: Andrey Authored: Wed Oct 14 12:24:29 2015 +0700 Committer: Andrey Committed: Wed Oct 14 12:24:29 2015 +0700 ---------------------------------------------------------------------- .../control-center-web/src/main/js/controllers/sql-controller.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/64b85ba0/modules/control-center-web/src/main/js/controllers/sql-controller.js ---------------------------------------------------------------------- diff --git a/modules/control-center-web/src/main/js/controllers/sql-controller.js b/modules/control-center-web/src/main/js/controllers/sql-controller.js index 9a59c14..b674a32 100644 --- a/modules/control-center-web/src/main/js/controllers/sql-controller.js +++ b/modules/control-center-web/src/main/js/controllers/sql-controller.js @@ -387,7 +387,8 @@ consoleModule.controller('sqlController', columnDefs.push({ headerName: meta.fieldName, - valueGetter: $common.isJavaBuildInClass(meta.fieldTypeName) ? colValue : 'JSON.stringify(' + colValue + ')' + valueGetter: $common.isJavaBuildInClass(meta.fieldTypeName) ? colValue : 'JSON.stringify(' + colValue + ')', + minWidth: 50 }); } });