Telerik Forums
UI for WPF Forum
21 answers
220 views
I use the new PivotGrid in Q3 2012 example: "PivotGrid with PivotFieldList".

When I try to use drag & drop from the top in the PivotFieldList (Choose fields to add to report) I got an error:
"Object reference not set to an instance of an object."

So I cannot get Product in both the Report-Filter-box and the Column-labels-box.
Ok, so I use drag & drop to move Product from the Column-labels-box to the Report-Filter-box.

But.. now what? How does this Report Filter thing works?
What can I do with it?



Tiago
Top achievements
Rank 1
 answered on 21 Jan 2015
1 answer
170 views
Hi There

My question is based on examples shared here : http://www.telerik.com/forums/location-animation-for-informationlayer-items , answered by Andrey.

Inside method AnimationPointChangedHandler , a new location is created each time and setting it to pushpin. Here i already have a collection of locations, how can i set it to pushpin. The problem is AnimationPointChangedHandler is called each time pushpin point is changed if i have understood it rightly.

So in nutshell , i have a collection of location and i want the pushpin to move from location at index 0 to location at last index of 
collection.
  
Thanks In Anticipation
Petar Mladenov
Telerik team
 answered on 21 Jan 2015
7 answers
338 views
Hi,
  i want to know how to hide Barcode Human Readable text
and also how to change its postion to top , bottom
allen
Top achievements
Rank 1
 answered on 21 Jan 2015
2 answers
387 views
I wish to use a TextBlock for display of a data column header.

This seems straightforward...

                    <telerik:GridViewDataColumn ColumnGroupName ="Group1" DataMemberBinding="{Binding ColumnOneBinding}" >
                        <telerik:GridViewDataColumn.Header>
                            <TextBlock Text="Hello" />
                        </telerik:GridViewDataColumn.Header>
                    </telerik:GridViewDataColumn>

...however, instead of displaying 'Hello' as would be expected. The display (in both design and runtime), is 'System.Windows.Controls.TextBlock'

If this is due to an older version of the Telerik controls, is there any fix, or is the only option to purchase the new controls?
David
Top achievements
Rank 1
 answered on 20 Jan 2015
4 answers
410 views
Hi,

I am trying to animate the move of a car on a RadMap Information Layer.The car is shown as an Image and its location is set through MapLayer.SetLocation method.I also get the route of the car rendered through a MapPolyline with its points bound to a bing routing query result.

Now I would like to move the car through the route using animation storyboard, but since the MapLayer.LocationProperty is of type Location, I can not find a suitable animation for this type.I tried the DoubleAnimation to change the lat, and long separately, but the storyboard is complaining about nested property (Storyboard.TargetProperty="(rad:MapLayer.Location.Latitude)").

Any ideas on how to implement this ?

Thanks

Madani
Petar Mladenov
Telerik team
 answered on 20 Jan 2015
2 answers
299 views
When I try to view a demo for a control which I have not previously viewed, it just says "Downloading examples" and the progress bar stays at 0%. Demos for controls which I have viewed previously still works.

Does anyone else has this problem?
Combinations
Top achievements
Rank 1
 answered on 20 Jan 2015
1 answer
164 views
I want to show chat communication under Chat Application. For that i used TextBlock to show chat communication. But it not look like skype. So i want UI like skype. Can any suggested me which telerik control best for show chat communication?
Tanya
Telerik team
 answered on 19 Jan 2015
2 answers
294 views
I'm thoroughly confused.. Please help.
Then following xaml displays two columns of text, followed by two columns of checkboxes... But you can see that the third column, "tight Hole" does not define a checkbox style. I removed the cell header style also, and I still have a checkbox column there! What am I doing wrong? 

<telerik:RadGridView.Columns>
     <telerik:GridViewDataColumn Header="Property ID" DataMemberBinding="{Binding PropertyID}"              IsReadOnly="True" HeaderCellStyle="{StaticResource HeaderStyle}" Width="100" TextAlignment="Left" />
       <telerik:GridViewDataColumn Header="Property Name" DataMemberBinding="{Binding Property.PropertyName}" IsReadOnly="True" HeaderCellStyle="{StaticResource HeaderStyle}" Width="200" TextAlignment="Left" />
       <telerik:GridViewDataColumn Header="Tight Hole" DataMemberBinding="{Binding Property.TightHole}"       IsReadOnly="True" Width="100" TextAlignment="Left"  />
        <telerik:GridViewCheckBoxColumn Header="Read Only" DataMemberBinding="{Binding ReadOnly}"              IsReadOnly="False" HeaderCellStyle="{StaticResource HeaderStyle}" Width="100" CellStyle="{StaticResource StyleChkBoxCenter}" />

Just for FYI purposes, I define the Grid like this: 

<telerik:RadGridView x:Name="gvProperties" Grid.Row="2" 
                                                 ItemsSource="{Binding WellAssignments}"
                                                 Margin="0,5,0,0"
                                                 AutoGenerateColumns="False" CanUserFreezeColumns="False" 
                                                 CanUserDeleteRows="True" CanUserInsertRows="False" ShowGroupPanel="False" 
                                                 IsFilteringAllowed="False" IsReadOnly="False"
                                                 EnableLostFocusSelectedState="False"
                                                 GridLinesVisibility="None" 
                                                 ScrollMode="RealTime"
                                                 SelectionMode="Extended"
                                                 IsSynchronizedWithCurrentItem="True"
                                         >

The attached images show what I have and what I need. I need that third column to be text!

Richard
Top achievements
Rank 1
 answered on 19 Jan 2015
1 answer
143 views
Hallo Telerik-Team,

in our application we want to display empty rows in the ScheduleView. These rows are readonly and will have a special look.
My idea was to create a special kind of Resource (SpacerResource) with a custom style. This works fine and I can add them between the other resources to insert the empty rows. I also generate a readonly SpacerSlot to which I add all the SpacerResources. A custom SpecialSlotStyleSelector is used to display the empty rows the way we want. This also works fine.

Now for the problem: If no SpacerRow is added to the resources and therefore the SpacerSlot.Resources list is empty, drag&drop of our Appointments does not work anymore. Note that the SpacerSlot is always added to the list of special slots, even when no SpacerResource instances exist. If I add a SpacerResource and "register" it in the SpacerSlot, the drag&drop works again. The ScheduleView is used in TimeLineView only.

To me this seems to be a bug. Would you please tell me if I do something wrong or if this is indeed an incorrect behavior?

The special slot is created like this:
01.public static Slot GenerateSpacerSlot(DateTime viewportStart, DateTime viewportEnd)
02. {
03.   return new Slot()
04.   {
05.    Start = viewportStart.StartOfDay(),
06.    End   = viewportEnd.EndOfDay(),
07.    IsReadOnly = true,
08.    TimeZone = TimeZoneInfo.Utc,
09.    RecurrencePattern = new RecurrencePattern(
10.        null,
11.        RecurrenceDays.EveryDay,
12.        RecurrenceFrequency.Weekly,
13.        1,
14.        null,
15.        null)
16.   };
17.}

The parameters define the current viewport displayed. StartOfDay() and EndOfDay() are custom extension methods.


Regards,

Hendrik 
Kalin
Telerik team
 answered on 19 Jan 2015
1 answer
147 views
Hi,

I've been playing with the online demo and the trial version of the RadSpreadSheet. It looks great, but the only thing that is making me a little reserved about possibly purchasing the product is that I can't seem to copy a RadSpreadsheet with all of it's formatting to an Excel spreadsheet. It will only paste as Text in the Excel spreadsheet with no formatting. I even tried in the online demos, and it still didn't work. Is there any way to paste a RadSpreadsheet with all of it's formatting to an Excel spreadsheet retaining all of the RadSreadsheet's formatting?

Thanks,
Roman
Anna
Telerik team
 answered on 19 Jan 2015
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?