BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
You can achieve your requirement to launch the button command inside the details view datagrid column by setting the AncestorLevel based on the details grid level like the below code example,
Code Example:
<syncfusion:GridTemplateColumn MappingName="CustomerID" syncfusion:FocusManagerHelper.WantsKeyInput="True"> <syncfusion:GridTemplateColumn.CellTemplate> <DataTemplate> <Button Content="Click" syncfusion:FocusManagerHelper.FocusedElement="True" Command="{Binding Path=DataContext.ToggleExecuteCommand,RelativeSource={RelativeSource AncestorLevel=2, AncestorType=syncfusion:SfDataGrid}}" /> </DataTemplate> </syncfusion:GridTemplateColumn.CellTemplate> |