Telerik Forums
UI for WPF Forum
1 answer
61 views
Ok, I consider myself an accomplished WPF designer, but I cannot seem to get rid of the default style in the column headers for the RadGridView.  Any help would be appreciated.  Please just tell me which template to override with my own styles.  This shouldn't be so difficult.
Steve Schmidt
Top achievements
Rank 1
 answered on 03 Jun 2013
1 answer
175 views
Hi , is there a way to export asynchronous a very big amount of data without freezing the UI?
I've to export up to 1'000'000+ rows and the program is freezed for a long time while the grid is exporting.

Thanks,
Massimo
Ivan Ivanov
Telerik team
 answered on 03 Jun 2013
1 answer
167 views
Hi,

I have RadListBoxes and user can drag and drop stuff between them but how can I check what the drop target is when OnDragCompleted is fired?

The problem is that I want to remove data from database if user drags stuff outside the listbox but not remove data from database if user drags stuff to other listbox. I can't seem to find out which drag and drop has been done at the moment...

Now I can get the source of drag operation from sender but how can I get the target for the drop?

Drag and drop target

Br,

Kalle
Yoan
Telerik team
 answered on 03 Jun 2013
9 answers
373 views
Hi,

I have a control template that needs to be applied to all of my combo boxes in my project, including those in the property grid I have. I am using the Editable and and noneditable template to get the style that I am looking for. My property grid uses items such as textboxes, checkboxes, datetimepickers, and comboboxes. Is there a way to apply the same control template to all combo boxes that appear in my propertygrid?

Thanks
Maya
Telerik team
 answered on 03 Jun 2013
1 answer
349 views
I have the following CellTemplate for a few columns in my RadGridView:

<DataTemplate x:Key="TextCell" DataType="telerik:GridViewCell">
        <TextBlock Text="{Binding Value,
                                  RelativeSource={RelativeSource FindAncestor,
                                                                 AncestorType={x:Type telerik:GridViewCell}}}"
                   TextAlignment="{Binding TextAlignment,
                                           RelativeSource={RelativeSource TemplatedParent}}"
                   TextTrimming="CharacterEllipsis"
                   TextWrapping="NoWrap" />
    </DataTemplate>

This is being applied correctly, but I need to access properties such as TextAlignment and DataFormatString that are set on the GridDataViewColumn for that cell.  As you can see I've tried to access via the TemplatedParent, but to no avail.  How can I access these properties, so I can use them within my template?

Thanks.
Maya
Telerik team
 answered on 03 Jun 2013
2 answers
116 views
Hello!

I have the problem with binding to the CategoryBinding property.
I have this code:

                <telerik1:BarSeries CategoryBinding="HourName"
                                    ItemsSource="{Binding ChartData}"
                                    ValueBinding="Value"
                                    />

Chart Data has the values for X and Y axises. I need to show datas which represent each day of week per hour, and in one case it must be data per week

so i need to present sunday, monday ..... and whole week.

in my ChartData i put datas apropriately to my needs :

for day of week :
1 2 3 4 5 ... 24  --- CategoricalBinding
4 5 6 7 3 ... 221 --- Some Garbage datas

and for whole week i need have something like this :
1 2 3 4 ... 24 1 2 3 ... 24 1 2 3 ... 24 ..... 24 -CategoricalBinding for whole week this means 168 categories ( 7*24 hours)
2 1 1 1 ................... Some Garbage datas


But chart don't want to display whole week like 168 categories ( 7*24 hours), it just display 24 categories with united data.

What should i do? Could you help me please?

Thanks and Regards!
srikanth
Top achievements
Rank 1
 answered on 03 Jun 2013
1 answer
187 views
Hi,

how do i add a radwindow to my wpf Project? I can't find it if i try to add e new element to my Project?

Thanks
best Regards
Rene
Kalin
Telerik team
 answered on 03 Jun 2013
1 answer
86 views
I have a WPF data Grid in which I have a Column called Qty having data sequnce:
2,1,4,5,3

When I click on Filter the popup also displays the data as 2,1,4,5,3. But how can it be sorted as 1,2,3,4,5 


I thought of  writing  SortMemberPath inside  <telerik:GridViewDataColumn but don't want to do that as I am not using GridViewDataColumn.

Attached the current scenario.
Yoan
Telerik team
 answered on 03 Jun 2013
11 answers
350 views
I have develop a program that will be used in different countries.
We want everyone to work with date's and so on in there own culture settings.
On the other hand we can view Currency info from the differen countries. These are show in the same datagrid. I want these values to Show the right info So Euro for most Europe countries and Dollar for America.
It is only possible to select On country at a time.

Currently I am using

 

 

<telerik:GridViewDataColumn DataMemberBinding="{Binding TurnOver}" Header="Value" IsReadOnly="True" DataFormatString="{}{0:C}" >

<telerik:GridViewDataColumn.AggregateFunctions>

<telerik:SumFunction ResultFormatString="{}{0:C}" />

</telerik:GridViewDataColumn.AggregateFunctions>

</telerik:GridViewDataColumn>

How do I make it so that the rigth currency symbol and format is made on the selected country while keeping the rest of the UI the users culture setting.

This question is also for the Chart area where I use

<

telerik:SplineSeriesDefinition ShowItemLabels="False" ShowItemToolTips="True"

ItemToolTipFormat="Intake: #DATAITEM.Intake{C2}&#x0a;Target: #DATAITEM.Target{C2}&#x0a;Turn Over: #DATAITEM.TurnOver{C2}&#x0a;Maintenance: #DATAITEM.Maintenance{C2}"/>

 

 

 

 

Maya
Telerik team
 answered on 03 Jun 2013
3 answers
261 views
hi~~
i 've already read the help documents for RadDiagramNavigation, but when i follow the steps in the documents, my vs2010 compiler told me that "can not find RadDiagramNavigationPane in XML namespace http://schemas.telerik.com/2008/xaml/presentation, and also can not find <telerik:RadDiagramNavigationPane>, i 've already add the referencies such as
  • Telerik.Windows.Controls.Diagrams

  • Telerik.Windows.Diagrams.Core

  • Telerik.Windows.Controls.Diagrams.Extensions

  • Telerik.Windows.Controls

  • Telerik.Windows.Controls.Navigation

  • Telerik.Windows.Controls.Input

  • Telerik.Windows.Data


is there any thing wrong? how can i use RadDiagramNavigationPane? and the same error occurs when i try to use RadDiagramContainerShape too......

i just want to make an app looks like the Demo project OrgChart, but the demo depends on too much other demos and the QuickStartFramework, is there any simply using RadDiagramNavigationPane.

by the way, where is the telerik windows8 theme? in my telerik directory there are ExpressDark, Metro, OfficeBlue,...etc,but with out the theme Windows8 need for your OnlineDocuments tutorial ...

i am using Q2 2012

Thanks a lot!
Pavel R. Pavlov
Telerik team
 answered on 03 Jun 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
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
Book
FileDialogs
ToolBar
ColorPicker
TimePicker
SyntaxEditor
MultiColumnComboBox
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
DesktopAlert
WatermarkTextBox
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
VirtualKeyboard
HighlightTextBlock
Security
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?