Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bNzAz-000658-BT for pgadmin-hackers@arkaria.postgresql.org; Fri, 15 Jul 2016 09:12:53 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.84_2) (envelope-from ) id 1bNzAy-0004vN-VH for pgadmin-hackers@arkaria.postgresql.org; Fri, 15 Jul 2016 09:12:53 +0000 Received: from makus.postgresql.org ([2001:4800:1501:1::229]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1bNzAy-0004tU-9C for pgadmin-hackers@postgresql.org; Fri, 15 Jul 2016 09:12:52 +0000 Received: from mail-io0-x231.google.com ([2607:f8b0:4001:c06::231]) by makus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.84_2) (envelope-from ) id 1bNzAv-0002WL-B0 for pgadmin-hackers@postgresql.org; Fri, 15 Jul 2016 09:12:51 +0000 Received: by mail-io0-x231.google.com with SMTP id q83so99284734iod.1 for ; Fri, 15 Jul 2016 02:12:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pgadmin-org.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=66Ea0Gvd2G/MmKbBjbQ44eEZJ9nSGGkvK8C/nbrTyUk=; b=0te5nkF0OvJFWRK0sZ2RrZC5a1lX4NLFccppd4kg28toxfR1HBP4WfW5FCdMsbAA4k QxgVtyfu3tR4RbHcJmmg6PHr2fS4NguGAyKacjjtL8Zm1kS1lIZ4ZKo6cbKhfJ4D//ll l6I7og1suHVlngtkRRr+Up0KEm2rgcpotFSSLyO5xsjPMDpCghoyNltNYmUN8m+6gL3R xnTdGiqu+7xDzHqG4Bd4+g3DbVrqVhVmU5M4xn7SnLrvyNNgPvxnxa9N21A1zFiCm5m1 dLtBscWjp+YDhxayi/sagvzdpmV2AviQKHZIEbqec33WVo5cvA3T//1Ex6ufN9o26+fO MRjQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=66Ea0Gvd2G/MmKbBjbQ44eEZJ9nSGGkvK8C/nbrTyUk=; b=Mz8b/dlv4QHLhMlGkbjDAtWcHP334emhOas1jFBJIGp9B/LzYpm4jDYA5KchHjSq/S b/vt8pnfBFeuoOmXiRiCzpjyrMb+SVrPFw9MJi4VrSlYh62sx5/HxlsmLadzlaj8kDxn x+ieNbUIR2IgdgzCf5Eb+hfMWKXn1JO6gi5D7TiI+Dc0UwQlhwiv6SJp68O+MG89qpsO q4V2CSEhy6jZN3eakYcD8g9kb04DUqTfSJ7mTJ/7jlQkoD0Wb1zW8/OuqU1dXVb1/5rd UjA2lwGkE0T6ZPr/CUpgfW1qtDiNyp3uBcg490Xw/VMv2xyNRtVeF5KVNcoRePLwyf9N NzjQ== X-Gm-Message-State: ALyK8tIRLIC13wGSsHzWptUifOJO7dnSThUCrVZyK5qQVkXEOsMgSkRTiyZKSYrCPbc1e6/n64K6f1zX/toX6g== X-Received: by 10.107.201.138 with SMTP id z132mr19773874iof.156.1468573968523; Fri, 15 Jul 2016 02:12:48 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.208.97 with HTTP; Fri, 15 Jul 2016 02:12:47 -0700 (PDT) In-Reply-To: References: From: Dave Page Date: Fri, 15 Jul 2016 10:12:47 +0100 Message-ID: Subject: Re: PATCH: To update table dialog column definition To: Murtuza Zabuawala Cc: pgadmin-hackers Content-Type: text/plain; charset=UTF-8 X-Pg-Spam-Score: -2.6 (--) List-Archive: List-Help: List-ID: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: X-Mailing-List: pgadmin-hackers Precedence: bulk Sender: pgadmin-hackers-owner@postgresql.org Thanks, applied with minor changes to the labelling of the switches in the grid. On Tue, Jul 12, 2016 at 7:00 AM, Murtuza Zabuawala wrote: > Hi, > > PFA patch to fix below issues > > 1) User cannot select a datatype without using the mouse. > > Fixed. > > Remaining issue, > ----------------------- > We are using Switch cell to select Not NULL & Is primary key options. > But as per Backgrid design we are not allowed to enter in edit mode directly > for BooleanCell (like we can for NumberCell) from which we are Inherited our > Switch cell, so user have to click once on this cell to go into edit mode > then only they can use keyborad to toggle the values of switch cell. > > I'll check with Ashesh if we can fix this issue. > > 2) The Primary Key option in the grid cannot be toggled without opening > advanced options. > > This has been fixed already RM#1235, Once user provides column name it will > gets enable. > > 3) Fields are missing from the grid: length, precision, not null. Inherited > from should not be there. > > Fixed > > > Please review. > > -- > Regards, > Murtuza Zabuawala > EnterpriseDB: http://www.enterprisedb.com > The Enterprise PostgreSQL Company > > > -- > Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgadmin-hackers > -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers