You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
in a App with version 6.7 I added several custom components with the syntax:
<span #extitem>
Now with 7.2 release I can add a custom components without ExtJS elements, but I'm not able to add a custom component with a ExtContainer and a ExtTreelist (If I add Container and Treelist directly to the main layout I see them)
<ExtContainer [viewport]="true" layout="fit" fitToParent="true">
<ExtPanel [docked]="'top'" [border]="true">
<span #extitem>
(a component Angular, without ExtJS Elements, -> works)
<ExtPanel [docked]="'left'" [width]="325" [border]="true" layout="fit">
<span #extitem>
(a component Angular, with ExtJS Elements, -> not works)
The text was updated successfully, but these errors were encountered:
Hi,
I have the same problem and contacted support. They told me this is a bug and opended a ticket.
I'm extendidng my angular components from a custom Ext base class.
import { ɵbk } from '@sencha/ext-angular-classic'; //Public name of ExtContainer
@Component({
selector: "ExtXceCustomBase",
template: ""
})
export class ExtXceCustomBase extends ɵbk {
public ngOnInit() {
super.ngOnInit();
}
}
Example of use:
@Component({
selector: "ExtMyCustom", //selector must start with EXT
template: ""
})
export class ExtMyCustomComponent extends ExtXceCustomBase {}
Hi,
in a App with version 6.7 I added several custom components with the syntax:
<span #extitem>
Now with 7.2 release I can add a custom components without ExtJS elements, but I'm not able to add a custom component with a ExtContainer and a ExtTreelist (If I add Container and Treelist directly to the main layout I see them)
<ExtContainer [viewport]="true" layout="fit" fitToParent="true">
<ExtPanel [docked]="'top'" [border]="true">
<span #extitem>
(a component Angular, without ExtJS Elements, -> works)
<ExtPanel [docked]="'left'" [width]="325" [border]="true" layout="fit">
<span #extitem>
(a component Angular, with ExtJS Elements, -> not works)
The text was updated successfully, but these errors were encountered: