Jump to content

Recommended Posts

Posted
3 hours ago, eduardosuruagy said:

why the filter does not follow the size of the column anymore?

Hi, 

We need to analyze this issue? 

  • 3 weeks later...
Posted
On 6/26/2019 at 8:39 AM, eduardosuruagy said:

Any answers to my problem?

Hello,

Sorry for the late reply.

If I'm not mistaken, you have created a test case, right?

Posted
10 hours ago, Sherzod said:

Olá,

Desculpe pelo atraso na resposta.

Se não me engano, você criou um caso de teste, certo?

I created yes, it is attached in this post. I've created a video showing the error.

  • 4 weeks later...
Posted
3 minutes ago, eduardosuruagy said:

Does support still work?

Sorry for late answer.
I could not solve the problem then.
This problem seems to only appear in Chrome?

  • 2 weeks later...
Posted

Try this approach:

1. Remove beforender fn.

function beforerender(sender, eOpts)
{
  /*if (sender.pagingBar) {
    sender.removeDocked(sender.pagingBar, true);
    sender.addDocked({
        dock: 'bottom',
        items: [Ext.create('Ext.PagingToolbar', {
            pageSize: sender.store.pageSize,
            store: sender.store,
            displayInfo: true,
            displayMsg: 'Visualizando {0} - {1} de <b>{2}</b>',
            emptyMsg: "Não há registros",
            plugins: Ext.create('Ext.ux.PagingToolbarResizer', {
                displayText: 'Registros por página',
                options: [25, 50, 100, 150, 200]
            })
        })]
    });
  }*/
}

2. pagingBar.beforeInit

function pagingBar.beforeInit(sender, config)
{
    config.plugins = Ext.create('Ext.ux.PagingToolbarResizer', {
        displayText: 'Registros por página',
        options: [25, 50, 100, 150, 200]
    });
}

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...