Telerik Forums
UI for WinForms Forum
1 answer
137 views
Hi

I am using version 2009.3 1203 of the WinForms Rad controls and when setting the SelectedIndex property of the MultiColumnComboBox control (after is data bound) to -1, I was expecting the combobox selected item to be empty...but it is not, the first one is shown always.

Here is my code:

 

 

            var results = from company in Collections.CompaniesList  
                          select new  
                          {  
                              company.Name,  
                              company.City,  
                              company.TaxNumber  
                          };  
            cbCompanies.DisplayMember = "Name";  
            cbCompanies.ValueMember = "ID";  
            cbCompanies.DataSource = results.ToList();  
 
            cbCompanies.SelectedIndex = -1; 

Any clues why this is happening?

 

 

Deyan
Telerik team
 answered on 03 Mar 2010
5 answers
137 views
Hello,
I downloaded the Ribbon-Control from https://connect.microsoft.com/site/sitehome.aspx?SiteID=40 (Microsoft Benefits for registration)
My question: Am I allowded to create freeware-tool and make them public with this license?
Yours,
Peter
Deyan
Telerik team
 answered on 03 Mar 2010
5 answers
264 views
Hello,
where can I set/change culture info on chart? I would like to have properly formatted numbers for different languages/regions selected:
When CultureInfo is set to "sl-SI" separating characters should be '.' for group and ',' for decimal (number format example: 123.345.678,00) and if selected CultureInfo is "en-GB" separating characters should be ',' for group and '.' for decimal (number format example: 123,345,678.00)

Thanks,
Uros Mally
Ves
Telerik team
 answered on 03 Mar 2010
1 answer
138 views
How I can display number in format like"2000" instead of "2.0K" in label on both Axis?

Also I am not getting property like this.radChart1.PlotArea ,"PlotArea" 
Ves
Telerik team
 answered on 03 Mar 2010
14 answers
218 views
Hi,
I can see the mnemonics on the tab control. but it is not switching to the tab. Can any body help me?
Example: there are two tabs : &General and &Settings
if I am at General tab and press Alt+S key, still it is not switching to Settings tab.
Boyko Markov
Telerik team
 answered on 03 Mar 2010
1 answer
103 views
Hi,

I am using the ThemeResolutionService to skin my app, however I do not wish to skin a particular RadPanel... However the TRS is automatically skinning it along with all other controls..

How can I stop this from occuring so that my custom border and background colors are maintained and not skinned over?

Thanks,

Xavier.
Xavier Hutchinson
Top achievements
Rank 2
 answered on 03 Mar 2010
4 answers
345 views
Hi!

I'm trying to realize some kind of article search in form of a text- or combobox. When the user enters some text, the autocompletion should perform a fulltext search for any matching article.

The actual autocompletion only works like the string.StartsWith(...) function but I'd like to have something like the string.Contains(...) function.

I tried to ralize it with a combobox that changes its ItemCollection on the TextChanged event:

private

 

void radComboBox1_TextChanged(object sender, EventArgs e)

 

{

    var query = from s in _autoComplete.Keys  
            where s.Contains(radComboBox1.Text)  
            select s;  
 
    radComboBox1.BeginUpdate();  
    radComboBox1.Items.Clear();  
 
    foreach (string art in query.ToArray())  
    {  
        radComboBox1.Items.Add(new RadComboBoxItem() { Text = art, Tag = _autoComplete[art] });  
    }  
 
    radComboBox1.EndUpdate();  
    radComboBox1.ShowDropDown(); 
}

This work to the point where the user uses the arrow keys to navigate through the autocomplete list. This leads to an update and only one remaining option in the autocomplete list.

Any suggestions? Is there a property for the autocomplete functionality I don't know?

kind regards,
Thomy
Nikolay
Telerik team
 answered on 02 Mar 2010
1 answer
88 views
Im trying to add a custom item to the Context Menu following the example using the Q1 Beta of WinForms

This doesnt add the "Custom Data Operation" to the context menu :(

    Private Sub radGridView1_ContextMenuOpening(ByVal sender As ObjectByVal e As ContextMenuOpeningEventArgs)  
        Dim customMenuItem As RadMenuItem = New RadMenuItem()  
        customMenuItem.Text = "Custom Data Operation" 
 
        Dim separator As RadMenuSeparatorItem = New RadMenuSeparatorItem()  
 
        e.ContextMenu.Items.Add(separator)  
        e.ContextMenu.Items.Add(customMenuItem)  
    End Sub 
Svett
Telerik team
 answered on 02 Mar 2010
1 answer
93 views
I want to highlight error columns on an add just like I do on edit. However, the cell formatting event never appears to point to columns on that line. Is it possible to format columns in a new row?
Jack
Telerik team
 answered on 02 Mar 2010
3 answers
161 views
When I Use BestFit on a grouped grid that has only few columns, the columns get resized to fit the header (since no contents are visible after databind due to the grouping).
However, when Grouping is enabled, the group header/summary should be shown in full if there is enough space.
What can I do to ensure that the coulms are resized wide enough to ensure that the group headers are fully visible.

Regards
Erwin
Jack
Telerik team
 answered on 02 Mar 2010
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
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
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
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?