Telerik Forums
UI for WinForms Forum
14 answers
619 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
322 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
417 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
622 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
164 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
154 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
638 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
568 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
483 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
5 answers
313 views

Hello, the Radautocompletebox is a great control, but we face the following issue: I would like to know if/how if would be possible to show all possible choices, without any filter.

To be more clear, if my Radautocompletebox has 4 choices : AA, AAB, CC, EE, is there a way to display theses choices to the users (i.e. to open the selection menu) without any filter? Of course if I type A, I will see AA and AAB, but if a user has no idea of the posisble choices there is an issue.

I tried to use for example the keydown event, and to open the menu if the user types 'enter', but without sucess.

 

I know that what I am asking is not ready in line with the expected use of the component...

Dess | Tech Support Engineer, Principal
Telerik team
 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)
Chart (obsolete as of Q1 2013)
Form
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
NavigationView
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?