Telerik Forums
UI for WinForms Forum
2 answers
195 views

I have added custom grouping for my RadGridView. I am setting the text for the group header using the GroupSummaryEvaluate handler, as shown in your documentation here: http://www.telerik.com/help/winforms/gridview-grouping-formatting-group-header-row.html

Question: Can I use two different fonts within my group header text? For example:

 (begin font 1) Description of the group   (begin font2) Number of child rows: 7

     child row 1

     child row 2

     etc. etc. up to child row 7

If so, how can I do that?

-Lou

Lou
Top achievements
Rank 1
 answered on 31 Jul 2015
3 answers
230 views

Hi,

It seems that UniformGrid is available in Telerik UI for Winforms. But, I could not find any documentation which can help me in using it.

I added the Telerik.WinControls.dll which seems to be having the UniformGrid control but I could not find it in the Toolbox.

Could you provide the documentation on how to use it?

 Regards,

vijay

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 31 Jul 2015
1 answer
177 views

I would like to know the proper way to implement AutoSizeAppointments on MonthView where scrollbar on the overflown cell will be visible.

If i set AutoSizeAppointments=false, the scrollbar is visible

but if I set it to true, the scrollbar won't show. 

 

And I think the sample code for Handling overflown cells on this is for resizing the rows or columns

http://www.telerik.com/help/winforms/scheduler-views-month-view.html

 â€‹

We are using Q2 2015.

 

 

 

Hristo
Telerik team
 answered on 30 Jul 2015
3 answers
149 views

I am using WinControls 2015.2.728.40 and I have read through the forums and I can neither find the listed properties in property grid design time and I cannot access the property .click programmatically.

 This does not work.

Public Sub New()
 InitializeComponent()
 Me.radRibbonBar1.OptionsButton.Click += New EventHandler(AddressOf OptionsButton_Click)
 Me.radRibbonBar1.ExitButton.Click += New EventHandler(AddressOf ExitButton_Click)
End Sub

 

suggestion on how to actually use the default buttons rather than just remove them?

Stefan
Telerik team
 answered on 30 Jul 2015
1 answer
168 views

Using WinControls version 2014.3.1202.40

I am attempting to keep a list of all popups that have been displayed so far so I can programmatically close certain popups based on a condition, later. So after creating a list and adding a reference of a popup to it, the reference to it in the list disappears after calling .show() on the alert object.

A simple example:

 

var listOfPopups = new List<RadDesktopAlert>();
 
var alert = new RadDesktopAlert();
 
listOfPopups.Add(alert); // listOfPopups.Count == 1 now.
 
alert.Show(); // listOfPopups.Count == 0 now...

 

Is this by design? And if so, is there any other way to keep track of them, or get access to the popups through the desktopAlertManager?

 

Thanks,

 

 

Hristo
Telerik team
 answered on 29 Jul 2015
3 answers
247 views

We would like to change the behavior of the RadDateTimeEditorElement when entering a date via the keyboard.

Depending on the location the application is used in, the date will be entered in either dd/MMM/yyyy format or dd/MM/yyyy format.

Lets use dd/MMM/yyyy format as an example...

When clicking on the MMM section of the date, user should be able to key in "JAN" or "FEB", etc.   Currently when they enter "J" and want to get to July, they have to press "J" several times to get to it.  Pressing "A" after the "J" would take them to "APR".   Other date controls in the application do not behave this way so the users are a little frustrated.

When clicking on the yyyy section of the date, the year rolls as the keyboard is being pressed.   So if the date was 1973 and the user wanted it to change to 2015, they would see 2197... 2019... 2011.. 2015.      The users see this as high risk for error.

 Basically, the user wants to be able to key in an entire date (with the format restricted) and it be validated when entry is completed.

 I'm sure we can override the events in order to do something like this, whether it be on the keypress/keydown/keyup events... but because the entire section of the date is always selected, I'm unsure how to do this.... or maybe it's a completely different event I should be looking at altogether. 

Any help would be appreciated.

 Thanks

 

 

Hristo
Telerik team
 answered on 29 Jul 2015
4 answers
175 views

Hi,

 I want to have rotator with sliding images (including animated GIFs) (like ticker - left to right rotation). Here is my scenario.

 (1) Receive continuous data from socket (no need to implement in sample code) in a thread. This thread in turn will add predefined images in the rotator based on data received. This means that this thread will keep on adding images to rotator 24X7 while rotator is rotating. 

(2) Will any overflow occur in rotator as end number of images will be added during day? If there is limit, code should remove items from rotator if limit breach. 

(3) I also want some label on top of each image where I can set some text.

 Can we add any control dynamically in rotator, and it rotate like ticker? If yes I need some sample code on that too please. 

 

Best Regards

Chandrak

Hristo
Telerik team
 answered on 29 Jul 2015
4 answers
404 views
I have a form (see picture "form") I have a radgridview, when I want to double click on a row shows all the information in the upper controls, use the event doule click the radgridview (see picture "double click event" and "function1"). everything works fine up here.

But when I want to filter the information of radgridview (see picture "FILTERING RADGRIDVIEW"), and I double-click a row and does nothing, does not show the information in the controls.

I hope you can help me. I use visual studio 2012 vb.net
Asesoria
Top achievements
Rank 1
 answered on 28 Jul 2015
1 answer
170 views

Hello!

I'm currently working on a project which uses the Telerik libraries for winforms, and richtexteditor in particular

I've noticed a few things after dealing with a problem I had with the format providers:

1.There are 3 types of FormatProviders libraries:

Telerik.Winforms.Documnets.Formatproviders

Telerik.WinControls.RichTextBox.FormatProviders

Telerik.Windows.Documents.Flow.FormatProviders

I work with richtexteditor so the second one won't apply. But, when I tried to use the 3rd one it gave me an error when trying to export/import:

The best overload method match for 'Telerik.Windows.Documents.Common.FormatProviders.FormatProviderBase<Telerik.Windows.Documents.Flow.Model.RadFlowDocument>.Export(Telerik.Windows.Documents.Flow.Model.RadFlowDocument, System.IO.Stream) has some invalid arguments'

 

I decided to work with the first library for Format Provider. However, when trying to export .docx documents with pictures or hyperlinkes in them, it throws this exception:

 'System.Collections.Generic.KeyNotFoundException' occured in mscorlib.dll'

Additional information: The given key was not present in the dictionary

 

 Any solution?

 

Thank you,

Nisim

 

Hristo
Telerik team
 answered on 28 Jul 2015
3 answers
113 views
I would like to Drag an item from a RadListView into a Panorama, which in turn would create a new tile based on some data from the dragged Item, can someone point me to documentation or code that does something like this?
Stefan
Telerik team
 answered on 28 Jul 2015
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?