i'm building application for touch screen, and obviously all components should be large enough to be friendly user.
i can't find the way to expand the scroll bar in XamDataGrid and also the filter Area scroll bar and selectors.
help is important and highly appruciated.
Hello,
After some research it turns out that this behavior is normal when using Windows XP because a different default theme is employed which leaves the XamComboEditor's DropDownButtonDisplayMode property set to its default value of 'MouseOver'. You can do something like this for a workaround:
<igDP:XamDataGrid.FieldSettings>
<igDP:FieldSettings AllowRecordFiltering="True">
<igDP:FieldSettings.FilterCellEditorStyle>
<Style TargetType="{x:Type igEditors:XamComboEditor}">
<Setter Property="DropDownButtonDisplayMode" Value="Always"/>
</Style>
</igDP:FieldSettings.FilterCellEditorStyle>
</igDP:FieldSettings>
</igDP:XamDataGrid.FieldSettings>
Hope this helps you.
I have logged this with development under ID: 94119 and I have also created a support ticket on your behalf: CAS-75154-6SXGF4 and have linked the development issue to it, so that you can get automatically updated, when a Service Release containing the fix is available for download. You can get the new version from our website’s “My IG”, “My Keys & Downloads” tags: https://es.infragistics.com/Membership/Default.aspx?panel=Downloads#Downloads
You can also monitor the support ticket’s progress through the “My Support Activity” tag: https://es.infragistics.com/Membership/MySupport.aspx
mored detailed:
it seems like the issue related to Utilities at those rows:
var CED = Utilities.GetDescendantFromName(sender as FilterCellValuePresenter, "ComboEditorDropdown"); (CED as Grid).Width = 30; var GA = Utilities.GetDescendantFromName(sender as FilterCellValuePresenter, "glyphArrow"); (GA as Path).HorizontalAlignment = System.Windows.HorizontalAlignment.Center; var DDB = Utilities.GetDescendantFromName((XCE.Content as XamComboEditor), "PART_DropDownButton"); (DDB as ToggleButton).Width = Double.NaN;
CED is null and then it fails on "object reference not set to....."
i'm not familiar with those classes but again this works fine on WIN7 but not on XP.
thanks,
hello Stefan
i'm facing some issues working in Windows XP, on Windows7 no issue.
i'm using InfragisticsWPF3.DataPresenter.v10.2
InfragisticsWPF3.Editors.v10.2
InfragisticsWPF3.v10.2
does it require other dll or WPF4?
thanks in advance,
thanks a lot for the fast and proffesonal support.
best regards,