Telerik Forums
UI for WPF Forum
3 answers
122 views
Hello,

I am using the WPF RadRichTextBox as an email editor to reply to inbound emails.  Like in most email applications, the body of the inbound email is included as quoted text within the email editor.

I would somehow like to prevent the quoted text from being checked for spelling, both by the inline red squiggly lines and by the spell checking dialog.  I am already providing my own implementations of the ISpellChecker and ISpellCheckingDialog interfaces.

One possible solution I considered would be to load the quoted text, and then silently run the spell checker and "Ignore All" for each misspelling prior to allowing the user to edit the reply.  The down side to this approach is that if the original email contains any misspellings, those words would be added to the black list of Ignored words, and they would not be identified as misspelled if the user types them in the reply.

Is there a better solution for this issue?  For example, is there a way to mark a DocumentElement to suppress the spelling inspection of any text it contains?  Or is there a way to ignore a specific instance of a word instead of Ignore All?

Any help is greatly appreciated.

Thanks,
Evan
Boby
Telerik team
 answered on 17 Jan 2013
1 answer
154 views
Hi there

I have a requirement where I need to show the selected date in "Saturday, 12 Jan 2013" format to the user.
How can I achieve the same using XAML.

Sicne I am using the MVVM, I do not want to use code behind approach as suggested in other other thread of this forum.

you help is appreciated. Thanks
Alek
Telerik team
 answered on 17 Jan 2013
2 answers
260 views
Hi Telerik Team,

I would like to know if there is a way to dynamically change the width of the columns in the scheduleview, in order to zoom in and out horizontally.
In the end I would like the users to use a slider that would increase or decrease the width of the columns, until they all fit in the window without horizontal scroll, even if the appointments are too small to read their content.
Do you understand my need ?
Can you help me doing it ? I've searched a way, but found nothing for the moment.

Thank you !

Pauline
Vladi
Telerik team
 answered on 17 Jan 2013
2 answers
131 views
Hello!

I would like to publish my WPF application and I would also to pack all Telerik's libraries (for components which I used) into one library (so I have less number of dll's files).

Can I do this?
If yes - how?

Thanks!
Grzesiek
Top achievements
Rank 2
Iron
 answered on 16 Jan 2013
4 answers
169 views
Hello,

Prior to updating with Q2 and Q3 2012 (at once), we had a RadCartesianChart BarSeries that functioned exactly as desired.  The graph displayed grouped bars from two series by month, regardless of year.  Now, the cluster functionality is no longer working.  It seems that the year is not disregarded as it was before, so each month is listed twice.

Can you please help with how to restore the clustered display by month?

For reference, here's the relevant XAML:
<telerik:RadCartesianChart.HorizontalAxis>
    <telerik:DateTimeCategoricalAxis DateTimeComponent="Month" LabelFormat="MMM" />
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:BarSeries x:Name="ProductionLastYearBarSeries" CombineMode="Cluster"
        CategoryBinding="MonthCategory" ValueBinding="Total" HorizontalContentAlignment="Left">
    <telerik:BarSeries.PointTemplate>
        <DataTemplate>
            <Border BorderBrush="#80B1EE" BorderThickness="1" MaxWidth="20" CornerRadius="1" >
                <Rectangle Fill="#80B1EE" MaxWidth="20"/>
            </Border>
        </DataTemplate>
    </telerik:BarSeries.PointTemplate>
</telerik:BarSeries>
 
<telerik:BarSeries x:Name="ProductionThisYearBarSeries" CombineMode="Cluster"
    CategoryBinding="MonthCategory" ValueBinding="Total" HorizontalContentAlignment="Left">
    <telerik:BarSeries.PointTemplate>
        <DataTemplate>
            <Border BorderBrush="#1A62B9" BorderThickness="1" MaxWidth="20" CornerRadius="1" >
                <Rectangle Fill="#1A62B9" MaxWidth="20"/>
            </Border>
        </DataTemplate>
    </telerik:BarSeries.PointTemplate>
</telerik:BarSeries>
E Pons
Top achievements
Rank 1
 answered on 16 Jan 2013
1 answer
94 views
Hi,

We are currently implementing a piece of software where we use the MVVM pattern. Most of your demos are mostly implemented in code-behind. Hence, it becomes hard to know if they are suitable for MVVM.

Can you please provide a list of which of your RAD controls are suitable for MVVM? E.g. RadDiagram?
Petar Mladenov
Telerik team
 answered on 16 Jan 2013
3 answers
232 views
I've enabled the text search capability with setting IsTextSearchEnabled to true. This works fine, when searching children nodes of the currently selected node. However, the text search does not jump to the next sibling node if the text is not being found in the current node. Is there any way to force searching in the sibling nodes?

Example:
If the current node is "A" a text search for "A1" will be successfull, but searching for "B1" fails.
     - A
            A1
            A2
    - B
            B1
            B2
  
Thanks,
Michael
Tina Stancheva
Telerik team
 answered on 16 Jan 2013
1 answer
90 views
Hi All,

I'm new to WPF but trying to work through this Book Control.  Could somebody please give me a quick code example on how to get access to the objects I play on the page, for example if I put a button on a page.  In vb.net code how do I get access to that object if I wanted to change its label.  I take it I need to first get the RadBookItem which should be the page I am on and then somehow use an object collection to get access to the child objects on that page but I cannot see anything like that in the intellisense for RadBookItem ?

Kind Regards

Ken
Tina Stancheva
Telerik team
 answered on 16 Jan 2013
5 answers
577 views
I've found this article: http://www.telerik.com/help/wpf/gridview-filtering-programmatic.html
But column doesn't have "ColumnFilterDescriptor" property. I use 2011.3.1220.40 version of controls.

My problem:
I want to set filters to auto-generated column. I can set filters to grid using "grid.FilterDescriptors" property. It filters data in grid but when I open filter in column header it resets. How to set filters to column?

P.S. My code for adding filter to grid:
grid.FilterDescriptors[i] = new ColumnFilterDescriptor(newColumn)
{
    FilterDescriptors = oldColumnDescriptor.FilterDescriptors,
    LogicalOperator = oldColumnDescriptor.LogicalOperator,
    Column = newColumn
};

Dimitrina
Telerik team
 answered on 16 Jan 2013
1 answer
86 views

I presumed one did "Auto" shape layout and the other did "Fixed" shape layout but I cannot see any behavioural difference when playing around with these controls in the Telerik demo.
Miro Miroslavov
Telerik team
 answered on 16 Jan 2013
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
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
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
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?