I had to use the listeners property rather than binding to the event directly. This works:
<checkcolumn #item text="Provided" dataIndex="provided" width="150" onchange="gridCheckboxChange" ...
Type: Posts; User: lenraff
I had to use the listeners property rather than binding to the event directly. This works:
<checkcolumn #item text="Provided" dataIndex="provided" width="150" onchange="gridCheckboxChange" ...
I'm trying to configure a grid with a checkbox (checkcolumn):
<grid #item [store]="store" [height]="180" [plugins]="{grideditable: true}" [itemConfig]="{viewModel: {}}">
<checkcolumn #item...
https://docs.sencha.com/extangular/6.7.0/modern/Ext.tab.Panel.html
Click on "Run" the example.
Nothing happens. Javascript error:
Adding a card to a tab container without specifying any tab...
SO:
Seems that ext-angular version 6.7.0 is not compatible with Angular 8, which is the version of Angular I am using.
Brings me back to my original question, how do I bootstrap ext-angular version...
Now after downgrading to ext-angular version 6.7.0 and following the steps in the link I'm getting this error:
ERROR in node_modules/@sencha/ext-angular/lib/base.d.ts:21:30 - error TS2694:...
This file seems to exist in the ext-angular-6.7.x branch but not the ext-angular-7.1.x branch. Why is this? This is very confusing. Do we have to use ext-angular version 6.7.0 in order to use it...
In pluginUtil.js of the sencha webpack plugin module, there are the following lines:
if (options.browser == true && options.watch == 'yes' && vars.production == false) { if (vars.browserCount ==...
In the Sencha example here https://docs.sencha.com/extangular/6.7.0/guides/adding_ext_angular.html, there is a step to import the ext-angular-bootrap.component file:
import { bootstrapModule }...
I am using Ext.view.View which has xtype dataview. It's great for binding data to your view.
I am using this to bind to my data so that when the data changes so does the view automatically.
The...