private void Button_Click(object sender, RoutedEventArgs e) { /* if (tvAdmin.Items.Count > 0) { foreach (RadTileViewItem tileItemIn in tvAdmin.Items) { tileItemIn.TileState = TileViewItemState.Minimized; } } */ RadTileViewItem tileItem = new RadTileViewItem(); RadFluidContentControl contentControl = new RadFluidContentControl(); contentControl.SmallContent = "Small content"; contentControl.Content = "Content"; contentControl.LargeContent = "Large content "; contentControl.State = FluidContentControlState.Large; contentControl.NormalToLargeThreshold = new Size(300, 400); contentControl.NormalToSmallThreshold = new Size(300, 200); tileItem.Content = contentControl; // tileItem.TileState = TileViewItemState.Maximized; tileItem.Header = tvAdmin.Items.Count.ToString(); tvAdmin.Items.Add(tileItem);}Hi,
I have a GridViewComboBoxColumn bound to a datasource. I need to add a checkbox on the first row. How can we achieve this? Please help.
Thanks in advance,
Norbert John
Hello Team,
We are using radDataFilter and Gridview filter on a xaml, here is a scnerio-
RadGridview has both the filters radDataFilter and GridView(Columns Filter).
The gridview is dependent on radDataFilter datasource called “FilteredSource”.
In the same context if we apply the filter on Gridview filter, the color of funnel icon must changed, but its not happening.
Code:
<telerik:RadDataFilter Name="radDataFilter"
DockPanel.Dock="Top"
Visibility="{Binding Path=IsVisible, Mode=OneWay}"
Source="{Binding Shipments}"
Margin="1">
</telerik:RadDataFilter>
<ydd:YodelGridView x:Name="ShipmentGrid"
SelectionMode="Extended"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding FilteredSource, ElementName=radDataFilter}"
IsFilteringAllowed="True"
CanUserFreezeColumns="False"
AutoGenerateColumns="False"
IsReadOnly="True"
SelectionUnit="FullRow"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Auto">
Could you please look into this and suggest the solution.
Regards,
Narendra Ughade