or

home.xaml code <navigation:Page x:Class="thermometerNavigation.Home" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc=http://schemas.openxmlformats.org/markup-compatibility/2006 xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"xmlns:telerik=http://schemas.telerik.com/2008/xaml/presentation mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480"Title="Home" Style="{StaticResource PageStyle}"> <Grid x:Name="LayoutRoot"> <ScrollViewer x:Name="PageScrollViewer" Style="{StaticResource PageScrollViewerStyle}"> <StackPanel x:Name="ContentStackPanel"> <TextBlock x:Name="HeaderText" Style="{StaticResource HeaderTextStyle}" Text="Home"/> <TextBlock x:Name="ContentText" Style="{StaticResource ContentTextStyle}" Text="Home page content"/> <!--main RadGauge root container --> <telerik:RadGauge Name="radGauge" Width="300" Height="300"> <!-- Add RadialGauge container to the internal RadGauge layout. --> <telerik:RadialGauge> <!-- Now you can insert RadialScale object into the radial gauge container for further configuration. For example, you can set Min and Max properties of the scale: --> <telerik:RadialScale Name="radialScale" Min="0" Max="1000"> <!-- The last object you have to add is indicator (for example, needle indicator). You have to insert the list of the indicators to the radial scale object and then add needle indicator there: --> <telerik:IndicatorList> <telerik:Needle Name="needle" Value="100"/> </telerik:IndicatorList> </telerik:RadialScale> </telerik:RadialGauge> </telerik:RadGauge> </StackPanel> </ScrollViewer> </Grid> </navigation:Page> home.xaml.cs using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Navigation; using System.Windows.Shapes; //you have to add telerik using here using Telerik.Windows.Controls.Gauges; using Telerik.Windows.Controls; namespace thermometerNavigation { public partial class Home : Page { public Home() { InitializeComponent(); } // Executes when the user navigates to this page. protected override void OnNavigatedTo(NavigationEventArgs e) { } } } <telerik:RadCarousel Name="Scenes" Background="Transparent" HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Disabled" Loaded="LoadCarousel"> <telerik:RadCarousel.ItemsPanel> <ItemsPanelTemplate> <telerik:RadCarouselPanel AutoLoadItems="false" ItemsPerPage="5" TopContainerChanged="RadCarouselPanel_TopContainerChanged" /> </ItemsPanelTemplate> </telerik:RadCarousel.ItemsPanel></telerik:RadCarousel>Hello
I need to implement this scenario:
There is int in the data item that represents value in data base table.
In the grid there is data column that binding to this int.
When the Create Cell Element method called I take the int and go to service that return the value from DB.
This is the issues:
1.
I need to show the string that returns form the service in this column instead of the int.
This is extra data that not in the data item of the column.
How can I add this data to the column?
2.
The filter knows the int in the data member binding.
I need to give the filter the same data that shown in the column.
I don’t want to use combo box column.
What is the solution for this scenario?
Best regards
Ehud