File tree Expand file tree Collapse file tree
DataPresenter.DataSources.OData/DataPresenter.DataSources.OData.SampleApp Expand file tree Collapse file tree Original file line number Diff line number Diff line change 286286 Margin =" 5"
287287 GroupByAreaLocation =" None" >
288288 <igDP : XamDataPresenter .FieldLayoutSettings>
289- <igDP : FieldLayoutSettings FilterEvaluationMode =" UseCollectionView" />
289+ <igDP : FieldLayoutSettings FilterEvaluationMode =" UseCollectionView" RecordSelectorNumberType =" RecordIndex" >
290+ <igDP : FieldLayoutSettings .HeaderPrefixAreaStyle>
291+ <Style TargetType =" igDP:RecordPrefixArea" >
292+ <Setter Property =" Content" Value =" Rec #" />
293+ <Setter Property =" HorizontalAlignment" Value =" Center" />
294+ </Style >
295+ </igDP : FieldLayoutSettings .HeaderPrefixAreaStyle>
296+ </igDP : FieldLayoutSettings >
290297 </igDP : XamDataPresenter .FieldLayoutSettings>
291298
292299 <igDP : XamDataPresenter .FieldSettings>
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public MainWindow()
2626
2727 // Initialize the list of themes and select 'Office2013'.
2828 this . cboThemes . ItemsSource = Infragistics . Windows . Themes . ThemeManager . GetThemes ( ) ;
29- this . cboThemes . SelectedValue = "RoyalDark " ;
29+ this . cboThemes . SelectedValue = "Office2013 " ;
3030
3131 // Initialize the list of XamBusyIndicator Animations.
3232 this . cboBusyIndicatorAnimations . ItemsSource = typeof ( BusyAnimations ) . GetFields ( BindingFlags . Public | BindingFlags . Static ) . Select ( ( prop ) => prop . Name ) . ToArray ( ) ;
Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ public DataSourceConfigurationInfo CurrentDataSourceConfigurationInfo
8181 BaseUri = this . _currentDataSourceConfigurationInfo . BaseUri ,
8282 EntitySet = this . _currentDataSourceConfigurationInfo . EntitySet ,
8383 FieldsRequested = this . _currentDataSourceConfigurationInfo . FieldsRequested ,
84- PageSizeRequested = Convert . ToInt32 ( this . PageSizeRequested ) ,
85- MaxCachedPages = Convert . ToInt32 ( this . MaxCachedPages )
84+ PageSizeRequested = this . PageSizeRequested ,
85+ MaxCachedPages = this . MaxCachedPages
8686 } ;
8787 }
8888 }
You can’t perform that action at this time.
0 commit comments