Telerik Forums
UI for WPF Forum
5 answers
109 views
Hello, I have a little doubt has as above each column to create an empty row inside the grid proprio
to be used as a filter.

Ex. Imagine a data grid with 10 columns and the first row that is empty and editable, so that
fassa information entered into the filter of the selected column.

graciously
André
Maya
Telerik team
 answered on 18 Feb 2013
1 answer
83 views
Hello Telerik

In my appication I have a series of vertically stacked RichTextBoxes. What I would like to do is to detect if the Caret is on the first or last line in the document, so that I can move the the focus and set the Caret in the previous or next RTB, if the user ties to "walk out of a RTB". Hope this makes sense.

When debugging I noticed that in the RichTextBox.Document.CaretPosition there was a positionHandlerWalker.CanMoveUp and CanMoveDown property which kind of sounded what if am after, but it doesn't seem that the positionHandlerWalker property is available.

Hope you can help

/Terje
Petya
Telerik team
 answered on 18 Feb 2013
4 answers
137 views
hello guys,

I want to have 6 items and one target with different order

please check the attached picture.

meaning i want the area with the black border to be the target.
when i maximize the red item it will be in the black border area and the orange and yellow items minimized.

however, i want to keep the blue,brown and purple items to be to the right of the screen all the time.

when i maximize  the blue item, the full content should be in the black border and the blue,brow and purple items will remain the same

any ideas...


Zuhair
Top achievements
Rank 1
 answered on 18 Feb 2013
1 answer
95 views
Hi,

I just wanted to show each list item in list box as window portlet like flexible to maximize and minimize the listbox items.

Pleass suggest me how do i implement?
Yana
Telerik team
 answered on 18 Feb 2013
3 answers
353 views
Hi,

Let's say I have a combo box with these string items which must be in the following order:

"AZ"
"AA"

If I type 'A' when the combo box has focus, the text "AZ" will be selected.  I would prefer to have the auto-completion suggest matching values in alphabetical order, but there doesn't seem to be any way to do this.  Is there a way to do this out-of-the-box, and if not, is there a custom way I could accomplish this with a little more work?  I've tried handling the TextInput event but there seems to be a known bug in which that event is broken in current versions of the library.  Also, whatever solution I come up with needs to be able to work with both WPF and Silverlight versions of the control.

Thanks,
Mike Vargas
Ventzi
Telerik team
 answered on 18 Feb 2013
4 answers
198 views
Hi,

I need to apply telerik gidview column header's default style to the row header also. I need to assign this dynamically through coding.

I have attached the sample image also.

How can i acheive it.

Thanks,
Subash
Subash
Top achievements
Rank 1
 answered on 18 Feb 2013
2 answers
92 views
Hi,
I have an AutoCompleteBox control as part of the insert template for RadDataForm. My AutoCompleteBox SelectedItem is bound to a navigation property (EF 5 Model/WCF Data Services).The  AutoCompleteBox works fine in ReadOnly and Edit mode, but once I insert a new record, all my controls would bind properly except the AutoCompleteBox. I know that this due to the fact that the record navigation property needs to be loaded through DataServiceContext.LoadProperty, but i do not know the event handler in which to call this method.I tried calling this method in the RadDataForm CurrentItemChanged, but that did not help .My understanding is that the form will switch to ReadOnly mode after inserting a record.


Regards,

Madani


HCT-CERT
Top achievements
Rank 1
 answered on 17 Feb 2013
1 answer
75 views
Hi,

I'm trying to get the style of a spanbox by code and apply it to another spanbox. I'm confused on how to get the job done. Can I get a sample on how to do it?

Thanks a lot,

Pat
Patrick
Top achievements
Rank 2
 answered on 15 Feb 2013
3 answers
140 views
XAML:
ShapeSerialized="diagram_ShapeSerialized"

Code-behind:
private void diagram_ShapeSerialized(object sender, ShapeSerializationRoutedEventArgs e)
{
    // Event not working?!
    System.Diagnostics.Debugger.Break();
}

My ShapeSerialized handler is never called! What could be wrong? Note that I do have a custom shape, derived from RadDiagramShape.

Update
Please note that I have overridden the serialization methods of my shape. Makes no difference...

public override Telerik.Windows.Diagrams.Core.SerializationInfo Serialize()
{
    var info = base.Serialize();

    info["IsResizingEnabled"] = IsResizingEnabled;
    info["IsRotationEnabled"] = IsRotationEnabled;
    info["ZIndex"] = ZIndex;

    return info;
}

public override void Deserialize(Telerik.Windows.Diagrams.Core.SerializationInfo info)
{
    base.Deserialize(info);

    IsResizingEnabled = Convert.ToBoolean(info["IsResizingEnabled"]);
    IsRotationEnabled = Convert.ToBoolean(info["IsRotationEnabled"]);
    ZIndex = Convert.ToInt32(info["ZIndex"]);
}

Pavel R. Pavlov
Telerik team
 answered on 15 Feb 2013
2 answers
56 views
Good morning,
I am porting a client application from win forms to wpf, in the old application I used Microsoft Data Visualization suite for graphs, in the new one I am using your Telerik ChartView package.
I ask for advice for representing this king of graph:
http://postimage.org/image/iymas3axn/
You can think that as a big box seen from the top view filled with smaller parallelepipeds (the stocks). On the x axis I represent the box length, on the y axis I represent the box width, the stocks position coordinates, length and width are scaled with real world dimensions.
In old application I solved the problem using annotations, with Data Visualization package it was possible to create Rectangular Annotation with its position and dimensions referred to graph axes, so for example, it was possible to draw a rectangle in 3 meters as X position, 5 meters as Y position, 6 meters long and 1 meter wide.

In new application tried with ChartView to customize the scatter point series, but I had two problems:
1) I have to set my rectangles dimensions in pixels, not in graph axes dimensions as I wished
2) Every rectangle ends to have the same dimensions

Then I read documentation about annotations, the CartesianPlotBandAnnotation seems encouraging (if you see again my image you'll see that I used some kind of those to draw the blue stripes that divide my box within zones), because their dimensions can be bound to axes. But the CartesianCustomAnnotation (that I want to use to draw my rectangles) is again a letdown, because its dimension are in pixels.

There is some kind of annotation, series...that I can use, or adapt, to fulfill my goal ?
Thank you very much for your attention, best regards,
  Paolo Spagnolo
Paolo
Top achievements
Rank 1
 answered on 15 Feb 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
Security
VirtualKeyboard
HighlightTextBlock
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?