Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1155
How can I select the cells which are readonly(IsEnable = false)
posted

Hi,

Here is my settings:

<igDP:XamDataGrid.FieldSettings>
        <igDP:FieldSettings CellClickAction="SelectCell" LabelClickAction="SelectField"/>
    </igDP:XamDataGrid.FieldSettings>

And here are my styles:
<Style TargetType="{x:Type igDP:CellValuePresenter}">
            <Style.Triggers>
                <DataTrigger Binding="{Binding DataItem.IsChannelEnabled}" Value="False">
                    <Setter Property="IsEnabled" Value="False"/>
                </DataTrigger>
            </Style.Triggers>
        </Style>

When I try to select some cells from the disabled cell, all the records are selected. What I want to archieve is that only the cells are selected not the records?

Is this possible?

Parents Reply Children