views:

8

answers:

1

how to add a text box inside the silverlight data grid column header?

so that i can use the text boxes for the filteration purpose?

A: 
<sdk:DataGridTextColumn.Header>
       <TextBox Text="{Binding YourTargetProperty}"/>
</sdk:DataGridTextColumn.Header>

The following article deals with the Filtering and Sorting. http://www.codeproject.com/Articles/83906/Silverlight-4-Datagrid-Sorting-Grouping-Filtering-.aspx

Avatar
but how will u get the column details from which the user is firing filter event
subash