Telerik Forums
UI for WinForms Forum
1 answer
201 views
Is there a way to show a tooltip on a cell in edit mode?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 23 Jun 2020
14 answers
687 views
Hi,

When I loop though the Items collection in the RadAutoCompleteBox control, I've noticed the items are ordered alphabetically. Is it possible to receive this collection in the order they are entered in control because this order is important to me. It would be messy if I have to manually delimit the text property to get the item order and then manually match it with each entry in the items collection so that I can retrieve the value of each item as specified in the AutoCompleteValueMember property.

Kind regards.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 23 Jun 2020
1 answer
381 views

I'm new to Telerik and still working on the 30 day trial so please bear with me, and pardon the ignorance if this is mind numbingly simple,

 

I need a simple way to show a simple hardcoded dropdown (Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday) which validates input when a user edits the cell of a RadGridView

      private void dg_DeliverySched_beginEdit(object sender, Telerik.WinControls.UI.GridViewCellCancelEventArgs e)
        {
            //I have these columns that need day of week validation comboboxes on edit click
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Sun")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Mon")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Tue")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Wed")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Thu")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Fri")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Sat")
            {
                e.Cancel = true;
            }
        }

Todor
Telerik team
 answered on 22 Jun 2020
3 answers
460 views

Not sure if this is the right place to post, as I am not seeing any specific category for Charts(except the defunct one)

The issue:  I'm building my forst RadChartView based on a simple  query for "Vendor", and "Amount"

Amount, is a decimal in the database, and I'd like to have the Y axis display the values in currency format.

 

I'm not finding how to do this..?

 

Many thanks,

Rich

 

Nadya | Tech Support Engineer
Telerik team
 answered on 22 Jun 2020
2 answers
700 views

hello!

I create radButton on the parent control.

and modify button round use Edit UI Elements - shape.

and setting transparent backColor in code.

btnStart.Parent = parentControl;
btnStart.BackColor = Color.Transparent;

 

but still a gray shade left.

How can I remove this?

 

jin
Top achievements
Rank 1
Veteran
 answered on 20 Jun 2020
1 answer
242 views

Hi,

I have a question about IsSelected & IsCurrent.

I have a gridview that when upon loading, the first row is selected and highlighted, so I have a pop-up contatiner that will get the current row data.  But when reload that gridview again, no rows are highlighted any longer.

I've tried IsSelected and IsCurrent, but it only highlights the row with the IsSelected, but when I click on the pop-container that gets the current row data, it gives a error due to null value.

What can I do?

Thanks!

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 Jun 2020
2 answers
182 views

A checkboxdropdownlist is used to filter data for a chart.  After the initial load of list items the first item in the list is selected - even though it is not checked.  Turning it off in code doesn't work either.

 

for (i = 0; i < theRoot.ChildNodes.Count; i++)
{
    ServerName = theRoot.ChildNodes[i].Attributes["Name"].Value;
    foreach (XmlNode aNode in theRoot.ChildNodes[i])
    {
        if (aNode.InnerText == Environment)
        {
            sb = new StringBuilder();
            sb.Append(ServerName.Replace("XX", aNode.InnerText));
            lItem = new Item(j, sb.ToString());
            lvServers.Add(lItem);
            j++;
        }
    }
}
 
rcddlServers.DataSource = lvServers;
rcddlServers.ValueMember = "id";
rcddlServers.DisplayMember = "description";
rcddlServers.DropDownListElement.SelectionMode = SelectionMode.MultiSimple;
if (rcddlServers.SelectedItems.Count > 0) --> why is this possible?
{
    rcddlServers.Items[0].Checked = false;
}
Marianne
Top achievements
Rank 1
Veteran
 answered on 18 Jun 2020
5 answers
731 views
How can I make sure that the control correctly displays percentages greater than 100 (150%, 200% ...)?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Jun 2020
4 answers
617 views
Hi, I need to get screen display position of a scatterseries datapoint say (3,5) in windows form. I am unable to find any conversion api similar to wpf which has methods to do that. How to get actual position on screen for a point. Any help will be greatly appreciated.
Nadya | Tech Support Engineer
Telerik team
 answered on 17 Jun 2020
6 answers
557 views
I'm currently using the Fluent theme, but I would like to remove the active border that draws on everything and disable the Ripple effect on buttons
I tryed to do that on Visual Style Builder, when I 'save as' I can see those options but I can't edit them, and I can't find those options anythere else
Tiago
Top achievements
Rank 1
 answered on 17 Jun 2020
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
WaitingBar
GroupBox
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
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?