Posted 23 February 2022, 4:28 am EST
Hi,
Is it possible to do add a form validation to the cell templates inside the FlexGrid. I have a flexgrid like this:
	<wj-flex-grid
		[itemsSource]="data"
		[headersVisibility]="'Column'"
	>
		<wj-flex-grid-column header="Report Date">
			<ng-template wjFlexGridCellTemplate [cellType]="'Cell'" let-cell="cell">
				<wj-input-date format="yyyy/MM/dd"></wj-input-date>
			<ng-template>
		</wj-flex-grid-column>
	</wj-flex-grid>
and I want to check if the user inputted a value on the fields inside the grid.
