Hi all,
I have a xamdatagrid which one of its fields is a combobox as you can see in the narkup below, I want that the drop down arrow of the combobox would be shown all the time, and not only when it has focus. Is there a way to accomplish this? Thank u.
<
igDP:Field Name="Permission" Label="„˜™€„">
:) Thank u very much
It is not working for you ... because you are setting one style explicitly and one style implicitly. Perhaps if you join the two styles ...
<Style TargetType="{x:Type dge:XamComboEditor}">
<Setter Property="DropDownButtonDisplayMode" Value="Always" /><Setter Property="ItemsProvider" Value="{DynamicResource ComboEditorListSeconderyCode}"/></Style>
it's not working to me... tell me what am i doing wrong...
<igDP:XamDataGrid.Resources>
<Setter Property="DropDownButtonDisplayMode" Value="Always"/>
</Style>
</igDP:XamDataGrid.Resources>
<igDP:XamDataGrid.FieldLayouts>
="False"/>
="Hidden">
>
="Right" />
...
<Setter Property="DropDownButtonDisplayMode" Value="Always" /> </Style>
can you give me a sample of markup....
i'm not sure where to insert that proerty...