Our blazing fast Grid component built with pure JavaScript


Post by henrique »

In topic viewtopic.php?t=20738 I was guided to use the panel title property to do what I needed to do. But I realized that this property is not in the documentation, as a property, and it does not appear in the grid's TS file.


Post by marcio »

Hey Henrique,

You can check here the documentation about the panel header title https://www.bryntum.com/docs/grid/api/Core/widget/Panel#typedef-PanelHeader

One example that you also can put directly into the Panel configuration:

let panel = new Panel({
    appendTo : 'container',
    title    : 'A Test Panel <b>bold text</b> <i>italic test</i>',
    items    : [
        { type : 'text', placeholder : 'Text' }
    ]
});

Best regards,
Márcio


Post by henrique »

Exactly, it is in the configuration, but does not appear in the panel properties session! If you create a panel, and use the title property, it change the title in running time.


Post by marcio »

Hey,

The documentation is not correct, I created a ticket to fix it - https://github.com/bryntum/support/issues/4842

Thanks

Best regards,
Márcio


Post by skilliknow2 »

henrique wrote: Tue Jun 21, 2022 4:09 pm

In topic viewtopic.php?t=20738 I was guided to use the panel title and captions at dislykeproperty to do what I needed to do. But I realized that this property is not in the documentation, as a property, and it does not appear in the grid's TS file.

i had same problem ugh


Post by marcio »

Thanks for the comment skilliknow2, I added a note in the ticket issue.

Best regards,
Márcio


Post Reply