Hello
I've created a MasterDetailView datagrid. The detailsview is binded to model
public class OrderDetail
{
public string Name {get;set;}
public int Amount {get;set;}
}
I need to select multiple rows in detail view.
Now i've got some questions:
|
Queries |
Solutions | |
|
I need to select multiple rows in detail view. |
In two incidents under your Direct trac account contains same query. So, we request you to have further follow-up with that forum 168299. | |
|
How to make Amount colum in detailsview editable?
|
Your requirement can be achieved by enable the AllowEditing property in SfDataGrid. Please refer the below code snippet,
For more information related to Editing, please refer the below user guide documentation link,
UG Link: https://help.syncfusion.com/wpf/datagrid/master-details-view#defining-properties-for-detailsviewdatagrid | |
|
How to add editable textbox column detail view?
|
Your requirement can be achieved by adding the GridTextColumn in SfDataGrid. GridTextColumn derived from GridTextColumnBase which hosts TextBox in edit mode. Please refer the below code snippet,
For more information related to GridTextColumn, please refer the below user guide documentation link,
UG Link: https://help.syncfusion.com/wpf/datagrid/column-types#gridtextcolumn https://help.syncfusion.com/wpf/datagrid/column-types#customize-column-renderer | |
|
How to add button column to detail view?
|
Your requirement can be achieved by loaded the Button has CellTemplate in GridTemplateColumn in SfDataGrid. Please refer the below code snippet,
For more information related to GridTemplateColumn, please refer the user guide documentation,
|