public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Aaron Lauterer <a.lauterer@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: Re: [pve-devel] [PATCH RFC manager] ui: ceph install wizard: fix config exists note position
Date: Thu, 30 Sep 2021 11:23:47 +0200	[thread overview]
Message-ID: <bf1fbab7-b3fa-138a-809a-cc7d7f39bf2b@proxmox.com> (raw)
In-Reply-To: <20210810132726.1209136-1-a.lauterer@proxmox.com>

any news here?

On 8/10/21 15:27, Aaron Lauterer wrote:
> During the Ceph installation, in the configuration step, a note is shown
> if there already is a Ceph configuration present. This notification
> should be in the center of the wizard but is currently barely visible.
> 
> ExtJS is having trouble calculating the position and the result is that
> the note is placed almost out of the visible area.
> 
> Setting a fixed height helps ExtJS calculate the vertical position.
> Changing from the 'beforeshow' listener to the 'afterrender' one helps
> for the horizontal position.
> 
> Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com>
> ---
> This feels quite hacky, hence the RFC so we can discuss a better
> approach that I am not aware of yet.
> 
>   www/manager6/ceph/CephInstallWizard.js | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/www/manager6/ceph/CephInstallWizard.js b/www/manager6/ceph/CephInstallWizard.js
> index fc99029e..59458b0d 100644
> --- a/www/manager6/ceph/CephInstallWizard.js
> +++ b/www/manager6/ceph/CephInstallWizard.js
> @@ -337,6 +337,7 @@ Ext.define('PVE.ceph.CephInstallWizard', {
>   	    xtype: 'inputpanel',
>   	    title: gettext('Configuration'),
>   	    onlineHelp: 'chapter_pveceph',
> +	    height: 300,
>   	    cbind: {
>   		nodename: '{nodename}',
>   	    },
> @@ -350,7 +351,7 @@ Ext.define('PVE.ceph.CephInstallWizard', {
>   		activate: function() {
>   		    this.up('pveCephInstallWizard').down('#submit').setText(gettext('Next'));
>   		},
> -		beforeshow: function() {
> +		afterrender: function() {
>   		    if (this.up('pveCephInstallWizard').getViewModel().get('configuration')) {
>   			this.mask("Configuration already initialized", ['pve-static-mask']);
>   		    } else {
> 




  reply	other threads:[~2021-09-30  9:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-10 13:27 Aaron Lauterer
2021-09-30  9:23 ` Aaron Lauterer [this message]
2021-10-01  7:50 ` [pve-devel] applied: " Dominik Csapak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bf1fbab7-b3fa-138a-809a-cc7d7f39bf2b@proxmox.com \
    --to=a.lauterer@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal