Telerik Forums
UI for WinForms Forum
1 answer
152 views

how to show custom context menu strip on gridview cell

context menu having items "red, green,purple,gray" colors

and when any color is clicked ...then background color of that particular cell should changed to selected color

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Jun 2015
1 answer
161 views

I have allowed my user to change the number of Rows in a Group residing in a Panorama via a form with a Property Grid (see image 5_Rows.png).  After this value has changed, and the property is updated, all of the existing tiles are pushed together (see image 6_RowsSaved.png).  The only thing that fixes this is if I change the size of the Panorama (which is a child control of a split panel - I am actually just moving the splitter and the tiles seem to refresh after that).

 Can you tell me how I can refresh the tile positions programmatically after I have updated the RowsCount property?

 

Thanks!

Laura

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Jun 2015
1 answer
504 views

I want to color a PieChart I made with unique color depending on the legend.

 pieChart.Series[0].Children[0].BackColor = Color.Red;

- How can I not change the backcolor of the legend?

- How can I access the legend name with Series[0].Children[0].

Thanks

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Jun 2015
6 answers
373 views

Hi guys,

I would disable a ComboBox that shows all TimeZones, I would set local time and prohibit to change it.

How can I do?

I attached print screen

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 23 Jun 2015
1 answer
201 views

Hi there,

How can i link the GanttView control with access data table? I mean how can i build the sql sentence and link to the gantt control?

This is my code below:

        Dim strSQLCa As String
        Dim dsTask As New DataSet

        strSQLCa = "SELECT ID, PARENTID, TITLE, TSTART, TEND, TPROGRESS FROM TASK ORDER BY PROJID, PARENTID, ID"

        Dim adpTC As New OleDb.OleDbDataAdapter(strSQLCa, connPRO)
        dsTask.Tables.Add("TableTask")
        adpTC.Fill(dsTask.Tables("TableTask"))

        Dim data As New DataSet()
        data.Tables.Add("Task")

        Me.RadGanttView1.GanttViewElement.TaskDataMember = "Tasks"
        Me.RadGanttView1.GanttViewElement.ChildMember = "Id"
        Me.RadGanttView1.GanttViewElement.ParentMember = "ParentId"
        Me.RadGanttView1.GanttViewElement.TitleMember = "Title"
        Me.RadGanttView1.GanttViewElement.StartMember = "Start"
        Me.RadGanttView1.GanttViewElement.EndMember = "End"
        Me.RadGanttView1.GanttViewElement.ProgressMember = "Progress"
        Me.RadGanttView1.GanttViewElement.LinkDataMember = "Links"
        Me.RadGanttView1.GanttViewElement.LinkStartMember = "StartId"
        Me.RadGanttView1.GanttViewElement.LinkEndMember = "EndId"
        Me.RadGanttView1.GanttViewElement.LinkTypeMember = "LinkType"

        Me.RadGanttView1.GanttViewElement.DataSource = dsTask.Tables("TableTask")

        Me.RadGanttView1.Columns.Add("Start")
        Me.RadGanttView1.Columns.Add("End")

 

And I'm getting the following error:

 "Child list for field Tasks cannot be created."

Please can you guys help me with this?

 

Thank you in advance.

Jorge

Hristo
Telerik team
 answered on 23 Jun 2015
11 answers
443 views

I've been working with the RadRichTextEditor control in my application. It imports and exports simple html -- as I only need things like bold, italics, centering. However, even if I set the FontFamily of the RadRichTextEditor and even the RichTextBoxElement within to Arial, it doesn't respect that when I paste in plain text from an application like Notepad. It changes the text to Verdana with a font size of 12.

 If I copy and paste text from Word, I am fine. It keeps whatever font is was in Word. 

 Additionally, if I use the keyboard and hit shift + enter to give me a single line break (</ br>), It wraps that html with a style tag with the Verdana 12 font. I don't mind the style tag, but it would be nice if it respected the current font where the cursor is.

 Any ideas?

Here is my font properties code (which is overkill, but I'm trying everything to fix this).

public void SetDefaultFontPropertiesToEditor(RadRichTextEditor editor)
        {
            editor.DocumentInheritsDefaultStyleSettings = true;
            editor.RichTextBoxElement.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Arial"));
            editor.RichTextBoxElement.ChangeFontSize(Unit.PointToDip(10));
            editor.RichTextBoxElement.ChangeFontStyle(Telerik.WinControls.RichTextEditor.UI.FontStyles.Normal);
            editor.RichTextBoxElement.ChangeFontWeight(Telerik.WinControls.RichTextEditor.UI.FontWeights.Normal);
 
            editor.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Arial"));
            editor.ChangeFontSize(Unit.PointToDip(10));
            editor.ChangeFontStyle(Telerik.WinControls.RichTextEditor.UI.FontStyles.Normal);
            editor.ChangeFontWeight(Telerik.WinControls.RichTextEditor.UI.FontWeights.Normal);
 
            editor.RichTextBoxElement.Document.LineSpacingType = LineSpacingType.AtLeast;
            editor.RichTextBoxElement.Document.LineSpacing = 0;
            editor.RichTextBoxElement.Document.ParagraphDefaultSpacingAfter = 0;
            editor.RichTextBoxElement.Document.ParagraphDefaultSpacingBefore = 10;
        }

Dimitar
Telerik team
 answered on 23 Jun 2015
3 answers
126 views
How can i implement the behaviour that when a user edit´s a Task by moving start and end date the control only snaps every day.
Hristo
Telerik team
 answered on 23 Jun 2015
4 answers
395 views
Hello,

How do we change background color of a radlistitem in radlistbox when mouse is over that specific item programatically?
Currently we can see background color getting changed only when item is selected. Thank you.
Hristo
Telerik team
 answered on 23 Jun 2015
1 answer
93 views

Hi, 

I have a main windows form that includes a racDock with the "AutoDetectMdiChildren" to true.

I need that children MDI winform can be only docked inside the racDock area, so, I would like that the user can dock the MID child form to the top/botton/left/right but not be able to extract the windows to another independent windows outside the parent form where is the racDock control.

How can I disable that the MDI child form could be outside of the parent form?.

Thanks a lot.

Francisco

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 22 Jun 2015
1 answer
95 views

I am adding a simple Progress bar
When I scroll left and right, it appears elsewhere

 

See the attached images A and B (see the subject line)

 

1 is a screen which contains the text in the first row.

I transferred to scroll to the right (2 screens)

I move the scroll to the left (3 screen)

3 is different from the display screen 1 and information
(It overwrites the text the progress bar)
This is an obvious bug!

Dimitar
Telerik team
 answered on 22 Jun 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?