DropDownDataGrid with checkbox

Hi Team,

Am using below code to show the checkbox and name on same row inside (RadzenDropDownDataGridColumn) DropDownDataGrid row. But problem is checkbox change and RadzenDropDownDataGrid CHANGE are not working as expected.

" <columns>
	<RadzenDropDownDataGridColumn>
		<Template>
			<RadzenCheckBox TValue="bool" Change=@(args => OnChangeAsync(args, (context as Customer)))></RadzenCheckBox>
			@((context as Customer).Name)
		</Template>                                        
	</RadzenDropDownDataGridColumn>
</Columns>"

Thanks,
Siva