Telerik Forums
UI for WPF Forum
5 answers
441 views
Hi,

How can I set properties of the ComboBox's in a GridViewComboBoxColumn.

I want to set the ClearSelectionButtonVisibility and ClearSelectionButtonContent properties as described in this thread
http://www.telerik.com/community/forums/wpf/combobox/selectable-null-value-in-radcombobox.aspx

I have tried it with a style in the GridViewComboBoxColumn ressources:

<telerik:GridViewComboBoxColumn.Resources>
    <Style TargetType="Controls:RadComboBox">
        <Setter Property="ClearSelectionButtonVisibility" Value="Visible" />
        <Setter Property="ClearSelectionButtonContent" Value="Test" />
    </Style>
</telerik:GridViewComboBoxColumn.Resources>


This approach is not working.

Thanks and regards,

Franziska
Maya
Telerik team
 answered on 12 Oct 2011
6 answers
430 views
I'm facing the following problem

I am using the RadGridView control and one of the column is of type GridViewComboBoxColumn. When the comboBox column is expanded the drop down list width is not aligned with combobox column width. The drop down width changes according to the size(length) of the items present in the drop down.But i want the drop down width to be aligned with the comboBox column width and it shouldn't resize as per the items present in the drop down. 
  
Valeri Hristov
Telerik team
 answered on 12 Oct 2011
5 answers
153 views
The XAML below resulted in a slider with ticks ranged 0 - 8 instead of 1 - 9. Why is it?


<ResourceDictionary>
    <DataTemplate x:Key="TickTemplate">
        <Grid>
            <TextBlock Text="{Binding}" />
        </Grid>
    </DataTemplate>
</ResourceDictionary>
 
        <telerik:RadSlider x:Name="normalSlider" VerticalAlignment="Center" Maximum="9" Minimum="1"
                Value="5" TickTemplate="{StaticResource TickTemplate}"
                Margin="20 0" TickPlacement="TopLeft" />
Valeri Hristov
Telerik team
 answered on 12 Oct 2011
1 answer
97 views
Hi,

Do we have a control in Telerik which will show networking visualization? Say,I have 3-4 people in my network namely a,b,c,d and b has 3 more 
in his network namely d,e,f.Do we have a control where we can show the same in a proper visualization look such as hypertree or spring graph type?
Is there any such control in Telerik.

Regards,
KKR
Rossen Hristov
Telerik team
 answered on 12 Oct 2011
3 answers
91 views
Hi,

I think it is not a difficult question but I'm searching now since hours and I'm really not able to find the answer.

I've an outer Grid and in the RowDetailsTemplate a RadTabControl and another Grid defined in the TabControl.
OuterGrid -> RowDetailsTemplate -> RadTabControl -> RadTabItem -> InnerGrid
My problem is now, how can I get a reference to the "child" Grid? At the moment can I access the outer grid with "this.outerGridName". The RadTabControl and the inner Grid have both unique names.

My questions are now:
1. How can I get a reference to the inner Grid.
2. Is it possible to navigate from the outer Grid with the RowDetailTemplate to the inner TabControl and Grid? If yes, how?

Thanks in advance
Walter
Ivan Ivanov
Telerik team
 answered on 12 Oct 2011
3 answers
105 views
Dear Telerik,

I am looking for alert feature in schedule view. Is it built in schedule view or I need to customize that one. If need to customize pls provide me a guide line.

Regards

Animesh
Rosi
Telerik team
 answered on 12 Oct 2011
4 answers
100 views
How do you get rid of the pointmark entirely?

thanks,
Jas
Nikolay
Telerik team
 answered on 12 Oct 2011
1 answer
162 views
We've just started a new WPF project, using the .NET Framework 4.0.  And we're new to using Telerik tools.  Without realizing it, I installed the .NET 3.5  Framework version of the RAD Controls from Telerik, and have started a project using those controls.  So far we haven't actually placed any controls on any window/page, but the project itself refernces the 3.5 RAD Controls.  Well, we don't want to use the 3.5 version, we want to use the 4.0 version.  My colleague has downloaded the 4.0 version, and we're going to install it on both of our development machines.

Bottom line: how do I migrate our project from the RAD Controls 3.5 .NET Framework to RAD Controls 4.0 .NET Framework?
Vlad
Telerik team
 answered on 12 Oct 2011
7 answers
281 views
I'm trying to change the spellchecker language.
I downloaded a nb-NO.tdf file and put it in the Resources.
I use your example..


InitializeComponent();
...
...
     ((DocumentSpellChecker)editor.SpellChecker).AddDictionary(new RadEn_USDictionary(), CultureInfo.InvariantCulture);
            LoadDictionary();
        }

        private void LoadDictionary()
        {
            var culture = new CultureInfo("nb-NO");
            var res = Properties.Resources.nb_NO;
            var tdfFileStream = new MemoryStream();
            tdfFileStream.Write(res, 0, res.Length);
            var dictionary = new RadDictionary();
            dictionary.Load(tdfFileStream);
            ((DocumentSpellChecker)editor.SpellChecker).AddDictionary(dictionary, culture);
            Thread.CurrentThread.CurrentCulture = culture; 
        }

But it does not work.
Do I call LoadDictionary() from the right place?
How should I tell the editor to use the new language?
Kotte
Top achievements
Rank 1
 answered on 12 Oct 2011
3 answers
196 views
Hello,

i got a problem when using the RadPropertyGrid with a template. When i set the property AutoGeneratePropertyDefinitions to false and use the RadPropertyGrid inside a DataTemplate, the property seems to be ignored and i see all properties of the class object.

<Window ... >
  
    <Window.Resources>
  
        <local:TemplateSelector x:Key="templateSelector">
  
            <local:TemplateSelector.TemplateA>
  
                <DataTemplate>
  
                    <rad:RadPropertyGrid AutoGeneratePropertyDefinitions="False" Item="{Binding }">
                         
                        <rad:RadPropertyGrid.PropertyDefinitions>
  
                            <rad:PropertyDefinition DisplayName="The only property displayed" />
                              
                        </rad:RadPropertyGrid.PropertyDefinitions>
 
                    </rad:RadPropertyGrid>
  
                </DataTemplate>
  
            </local:TemplateSelector.TemplateA>
  
        </local:TemplateSelector>
  
    </Window.Resources>
 
 <Grid>
 
    <ContentPresenter  ContentTemplateSelector="{StaticResource templateSelector}"  Content="{Binding }" />
                  
 </Grid>
  
</Window>

With kind regards,

Sebastian
Ivan Ivanov
Telerik team
 answered on 11 Oct 2011
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?