Request new features or modifications


Post by vadim_g »

Hi guys,

I think it's very useful to have the ability to define plugins in items within a Form/Panel without extending/overextending those child items like this.

it('should be able to specify objects with additional config in "plugins" on widget initialization', () => {
			widget = new Widget({
				...widgetConfig,
				plugins: [
					{
						type: TextAppendPlugin,
						appendedText: 'PluggedFromConfig',
					},
				],
			});

			cy.getCmpEl(widget).should(
				'have.text',
				'Basic Widget PluggedFromConfig'
			);
});


items: [{
    type: 'combo',
    plugins: []
}]

Thanks.
Vadim


Post by alex.l »

HI Vadim,

Here is a FR https://github.com/bryntum/support/issues/11873
You can subscribe on ticket updates to be notified when it's done.

All the best,
Alex Lazarev

How to ask for help? Please read our Support Policy


Post by vadim_g »

Hi Alex,

I will, thank you.....we've implemented ourselves this already, was not much and difficult, but it's good to have it OOTB.

Vadim


Post Reply