Telerik Forums
UI for WPF Forum
3 answers
517 views
Hello!
Can you tell me if there is the possibility to add another buttons with custom functionality in the ScrollViewer of a RadCarousel?


Thank you!
Milan
Telerik team
 answered on 21 Apr 2010
3 answers
107 views
Hi again. I come from Visual Basic 6 and i want to start with WPF and Telerik controls to simplify my life :D

I want to do an app for home automation

http://www.youtube.com/watch?v=GTkPMvzvC1c

About this sample video , my questions is:
Can i do  a similar app with WPF and telerik carousel and controls? with these carousel animation and effects?
Can this app run smooth in older machines? (I mean a dedicated computer with Windows XP  , 800Mhz and 512 MB ram?)

thanks

Chili Girl :D





Milan
Telerik team
 answered on 21 Apr 2010
9 answers
159 views
Hi...

Just wondering if there are plans to create a Spell Check control for WPF?  I know that WPF has some native spell checking available, but it is lacking in some features...most notably, the ability to manage the dictionary.

So, please let me know if you have plans and, if so, when we might expect to see such a control.

Thanks,
..Douglas
Zbigniew Kozłowski
Top achievements
Rank 1
 answered on 21 Apr 2010
2 answers
152 views
Is there a way to template the selected item so it stands out?  It'd like to have all non-selected items with a lower opacity and the selected item to be fully visible with a white border around it.  Do you have some some code on templating only the selected item?

David Ribb
David Ribb
Top achievements
Rank 1
 answered on 20 Apr 2010
2 answers
79 views
When databinding, the items appear in reverse order.  Is there a reason why they do this?
David Ribb
Top achievements
Rank 1
 answered on 20 Apr 2010
15 answers
1.9K+ views
I have a silverlight page that have a radgridview, it loads list of employee records.
when a user clicks on the (+) sign before each row, another section is opened (just like in the examples). The section that opens below the row has textboxes. 

1. I would like to know if there is a way to define an event when the row is selected?
 i would need this as i will fill values to textboxes only when a user selects a record. 

2. is it possible not to display the (+) and/or (-) sign before each row and instead the event is triggered when a user click the row?

i am currently using the Q1 release.

Any help will be appreciated. 
Ben
Top achievements
Rank 1
 answered on 20 Apr 2010
2 answers
157 views
I'm experiencing some performance issues when setting the AllowDrag and AllowDrop with the RadGridView.

            <UserControl.Resources>
                <converters:LineBackgroundConverter x:Key="lineBackground"/>
                <Style TargetType="telerik:GridViewRow">
                    <Setter Property="Background" Value="{Binding LineNumber, Converter={StaticResource lineBackground}}" />
                    <Setter Property="telerikDragDrop:RadDragAndDropManager.AllowDrag" Value="True" />
                    <Setter Property="telerikDragDrop:RadDragAndDropManager.AllowDrop" Value="True" />
                </Style>
            </UserControl.Resources>

Rick Knicely
Top achievements
Rank 1
 answered on 20 Apr 2010
3 answers
244 views
Hello

I would like to expand rows on double click and show rowdetails. I hooked the MouseDoubleClick of the rows in RowLoaded event. Now when the event occurs, I set the "IsExpanded" property of the row which expands an empty row details, only clicking on the row expander column will really expand it.

Is there some kind of "Load" I first have to execute? I didn't find anything in the documentation...

Thanks
NoRyb
Top achievements
Rank 1
 answered on 20 Apr 2010
2 answers
191 views
Hello,

Currently I am trying to set the ItemsSource of a ComboBoxColumn that is in a grid in my RowDetails for a higher level Grid. I would a child table but I currently have other controls in the RowDetails I am binding to plus I don't really think that will fix my problem.

<telerik:RadGridView.RowDetailsTemplate> 
    <DataTemplate> 
        <Grid> 
            <TextBlock Margin="125,8,0,0" Text="Rate" TextWrapping="Wrap" TextAlignment="Center" Height="17.001" VerticalAlignment="Top" HorizontalAlignment="Left" Width="70" /> 
            <telerik:RadMaskedTextBox HorizontalContentAlignment="Right" Mask="P" MaskType="Numeric" Margin="127.007,25.001,406,0" HorizontalAlignment="Left" VerticalAlignment="Top" Height="19.96" Width="67.993" /> 
            <telerik:RadGridView AutoGenerateColumns="False" ItemsSource="{Binding Path=Payments, Mode=TwoWay}" Margin="8,53,8,8" ShowGroupPanel="False" AreRowDetailsFrozen="True" > 
                <telerik:RadGridView.Columns> 
                    <telerik:GridViewComboBoxColumn ItemsSource="{Binding Path=AllTypes}" DisplayMemberPath="Type" DataMemberBinding="{Binding Path=TypeOfPayment}"/> 
                    <telerik:GridViewDataColumn  Header="Event" DataMemberBinding="{Binding Path=TypeOfPayment.Type, Mode=TwoWay}" /> 
                    <telerik:GridViewDataColumn Header="Amount" TextAlignment="Right" DataMemberBinding="{Binding Path=Amount, Mode=TwoWay}" DataFormatString="{}{0:c}" /> 
                    <telerik:GridViewDataColumn Header="Number" TextAlignment="Right" DataMemberBinding="{Binding Path=Term, Mode=TwoWay}" /> 
                    <telerik:GridViewDataColumn Header="Period" TextAlignment="Right" DataMemberBinding="{Binding Path=Period, Mode=TwoWay}" /> 
                    <telerik:GridViewDataColumn Header="Notes" TextAlignment="Right" DataMemberBinding="{Binding Path=Notes, Mode=TwoWay}" /> 
                </telerik:RadGridView.Columns> 
                <Navigation:RadContextMenu.ContextMenu> 
                    <Navigation:RadContextMenu Opened="RadContextMenu_Opened" ItemClick="RadContextMenu_ItemClick"
                        <Navigation:RadContextMenu.Items> 
                            <Navigation:RadMenuItem Header="Add" /> 
                            <Navigation:RadMenuItem Header="Delete" /> 
                        </Navigation:RadContextMenu.Items> 
                    </Navigation:RadContextMenu> 
                </Navigation:RadContextMenu.ContextMenu> 
            </telerik:RadGridView> 
            <Button Style="{DynamicResource RoundButton}" Click="btnClick" Foreground="{DynamicResource CalculateIcon}" Height="39" HorizontalAlignment="Right" Margin="0,8,8,0" Name="btnGenerate" VerticalAlignment="Top" Width="44">Button</Button> 
        </Grid> 
    </DataTemplate> 
</telerik:RadGridView.RowDetailsTemplate> 


In the code block above, I tried binding the ItemsSource in the Xaml file to a property that returns a List<T> of what I want to bind to but the combo box shows no options to select which makes me believe that nothing was being loaded into the ItemsSource even though the debugger shows that the property is being accessed. I have also tried to find a way to access the comboboxcolumn in code but I cannot figure out how to access the controls in the RowDetails. If I did something wrong in my binding or if there is someway I could set the ItemsSource, even manually in either Xaml or code, for the ComboBoxColumn in a Grid in my RowDetails, then that would be most helpful.

Alex Mitchell
Alex Mitchell
Top achievements
Rank 1
 answered on 19 Apr 2010
4 answers
176 views
Hello,

I was wondering if its possible to add an item to the comboboxs of the FilteringDropDown? I'd like to add a between for string values.

Thanks Much

~Boots
Xoma
Top achievements
Rank 1
 answered on 19 Apr 2010
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
ProgressBar
Sparkline
LayoutControl
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
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?