Telerik Forums
UI for WinForms Forum
7 answers
137 views
Hello,
I have RadGridView and there one editable numeric column. If I'm on editable cell and I want to enter for example number "635", when I press "6" column enter to edit mode and highlight previous number and then next numbers are entered, so If user enters 635 then in final there is only 35 in this cell. Is it possible to set somehow that first pressed key is also entered? Users want same functionality as in excel so enter numbers and then pres down and go to next cell. I'm not able to make this work in radgrid.
Svett
Telerik team
 answered on 20 Dec 2010
4 answers
109 views
Hello,
I have set up a calendar with multiviews and set multiviews so it shows 3 months at a time.  The problem is, is that it is not displaying the 3 names of the months during runtime, it just has the 3 months and all the dates show but without a label for December, Jan, or Feb.  At design time, it is showing up as I would expect, however during runtime it will not show.

Attached is png image showing what I am talking about


Any ideas?
Thanks!             
Dobry Zranchev
Telerik team
 answered on 20 Dec 2010
2 answers
493 views
Hello,
I've used a tree view in my app. I want to show information about one node in a number of columns. for example name, id and phone of an employee. the treeview must have columns like a grid and must show one row for one node. please help me.
Richard Slade
Top achievements
Rank 2
 answered on 20 Dec 2010
4 answers
277 views
Hello,
I was trying to set a transparent background to a RadLabel. No matter which setting I try, I still have a solid background in that label, which is the default light blue colour (233; 240; 249).
Which is the magic key I have to turn?
Thank you for any help.
Roberto
Richard Slade
Top achievements
Rank 2
 answered on 20 Dec 2010
10 answers
162 views
On a griview that I am dynamically binding, I have the autosizerows property set to true.  The grid display fine for the current rows but when I scroll to the bottom, the grid lines do not display correctly as there are lines within the rows (seems like a refresh issue)....of the grid.  Not sure how I can send you an image of the same.  Can you suggest what I can do to fix the same.

Richard Slade
Top achievements
Rank 2
 answered on 20 Dec 2010
3 answers
562 views
Hi Everyone,

I have a grid on a winform.  The grid has a "notes" column in it.  When the user goes to edit the notes, I have a little popup - text editing window appear - something similar to the text property drop down editor in the property sheet of visual studio.

What I can't figure out is how to correctly position the little popup text editing window.  It should be displayed immediately below the grid's current cell and left aligned with the cell.

The problem I'm having is how to determine the absolute position of the grid's current cell, taking into account other grid elements (header rows, group header rows, new record rows), and also taking into account the Y position, especially when the grid may be scrolled to the left.

I've put the code to display the popup in the CellEditorInitialized event of the grid, which works great for knowing which cell is being edited, with the event args.  But only if that event also had mouse args. 

Anyone have any ideas?

Thanks much!
Dan

Vlad
Telerik team
 answered on 20 Dec 2010
2 answers
295 views
Hi guys.Can you tell me how to disable or remove Saturday and Sunday on RadDateTimePicker. I mean that user can see Saturday and Sunday when click on drop down button but can not select it.

I have already referenced how to disable Saturday and Sunday with RadCalendar. However I want to make the same on RadDateTimePicker

Another things, How to limit time in RadDateTimePicker.For example, I want user to choose from 8 am to 5:30 pm and other hours user can not choose.

Thanks

Tran Dat
Richard Slade
Top achievements
Rank 2
 answered on 19 Dec 2010
2 answers
164 views
when i use left to right support in dock tool window after auto hiding the tab appears in bottom instead of appearing on the top
meraj
Top achievements
Rank 1
 answered on 19 Dec 2010
3 answers
114 views
I'm creating a grid view that will have many combobox columns in it.  I am using the property builder GUI in VS 2010 in C# to create these columns.  There does not seem to be a way to edit the collection of selectable elements in the combo box inside the property builder, as there is when creating a stand-alone RadComboBox outside of a grid.  Is there a way to do this that I am missing?  All the examples I have seen show you how to do it programmatically, which I think is not a great solution in my case because it would mix auto-generated code with hand-written code.  It would be better to do it all programmatically if that were necessary.

The number of selectable elements will always be fixed; the user cannot add to or delete from the choices.  No column value is dependent on another column value.  I am using the latest version of the Winforms dlls, Q3 2010.

Thanks.
Richard Slade
Top achievements
Rank 2
 answered on 17 Dec 2010
7 answers
302 views
Good Day,

I've noticed that if you have a databound raddropdown control and have it on an Autocomplete mode of suggestappend I get the follow wierd dropdown list problem. Please see link below for screenshot.

http://oi54.tinypic.com/5aromf.jpg

To reproduce the same thing this is some sample code. It's just a Form with the RadDropDown Control on it. Now when the form opens with the raddropdown control on it click on the DropDown Arrow to view all the People, when the dropdown is still open type "R" and you will see the problem I'm having. Is there a way around this? Please let me know if you need any more information.

Imports Telerik.WinControls.UI
 
Public Class frmMain
    Inherits RadForm
 
    Private Sub frmMain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        RadDropDownList1.AutoCompleteMode = AutoCompleteMode.SuggestAppend
        RadDropDownList1.Text = String.Empty
        RadDropDownList1.DataSource = GetPeople()
        RadDropDownList1.DisplayMember = "Name"
        RadDropDownList1.ValueMember = "Name"
    End Sub
 
    Private Function GetPeople() As List(Of Person)
        Dim oPeople As New List(Of Person)
        oPeople.Add(New Person("Dean"))
        oPeople.Add(New Person("Ryan"))
        oPeople.Add(New Person("Richard"))
        oPeople.Add(New Person("Duncan"))
        oPeople.Add(New Person("Peter"))
        oPeople.Add(New Person("Tony"))
        oPeople.Add(New Person("Jaco"))
        oPeople.Add(New Person("Marc"))
        oPeople.Add(New Person("Lucy"))
        oPeople.Add(New Person("Mike"))
        Return oPeople
    End Function
End Class
 
Public Class Person
    Public Property Name As String
    Public Sub New(ByVal sName As String)
        Name = sName
    End Sub
End Class
Dean
Top achievements
Rank 2
 answered on 17 Dec 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
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
NavigationView
VirtualKeyboard
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?