Posted 23 May 2018, 9:26 am EST - Updated 3 October 2022, 8:29 pm EST
lar 2+. Short titles here.
So I am trying to create a custom editor for FlexGrid, but on http://demos.wijmo.com/5/SampleExplorer/SampleExplorer/Search?q=grid there is no sample to be found. Could you provide me with a sample on how to do this?
Also, I already have an Angular component that works. I added it to my FlexGrid like this:
This doesn’t work because the activeEditor is never set. How can I set the activeEditor to be my input? This is my ct-input component:
<div class="wj-input-group">
<input
#inputRef
wj-part="input"
class="search wj-form-control"
type="text"
value=""
(focus)="onFocus($event)"
[ngModelOptions]="{standalone: true}"
[(ngModel)]="value"
(ngModelChange)="onInputChange($event)"
/>
</div>

