Telerik Forums
UI for WinForms Forum
7 answers
165 views
Does an event who fires when an Appointment is created  exists? For example, when the Appointment Factory creates an appointment based in Database data.
My purpose is to calculate dynamical the start date of an appointment based on the end date.


Dobry Zranchev
Telerik team
 answered on 18 May 2010
1 answer
112 views
I know i saw this somewhere and now i can't find it.

I don't want to show the Description or the location on the appointment from the day view. 

I just want time, subject.

How can i change this?
Dobry Zranchev
Telerik team
 answered on 18 May 2010
1 answer
125 views
Hey you all, I'm having trouble displaying appointments in the scheduler !!! :( this is my code ...
I used the video and I'm doing exactly as its done in the video but mine doesn't work and I'm frustrated !!! :((
        private void BindToDataSet() 
        { 
            if (this.SDS == null) 
            { 
                this.SDS = new SchedulerDataDataSet(); 
                ClassesAdapter.Fill(SDS.Classes); 
                ClassroomsAdapter.Fill(SDS.Classrooms); 
                ClassClassroomAdapter.Fill(SDS.ClassClassroom); 
            } 
            SchedulerBindingDataSource datasourse = new SchedulerBindingDataSource(); 
            AppointmentMappingInfo appointmentMappingInfo = new AppointmentMappingInfo(); 
            appointmentMappingInfo.Start = "StartOfClass"
            appointmentMappingInfo.End = "EndOfClass"
            appointmentMappingInfo.Summary = "ClassName"
            appointmentMappingInfo.Description = "Description"
            appointmentMappingInfo.MasterEventId = "MasterEventID"
            appointmentMappingInfo.Location = "Location"
            appointmentMappingInfo.BackgroundId = "BackgroundID"
            appointmentMappingInfo.RecurrenceRule = "RecurrenceRule"
            appointmentMappingInfo.Resources = "FK_ClassClassroom_Classes"
            appointmentMappingInfo.ResourceId = "ClassroomID"
            datasourse.EventProvider.Mapping = appointmentMappingInfo
            datasourse.EventProvider.DataSource = SDS.Classes; 
 
            // create and assign resource mapping 
            ResourceMappingInfo resourceMappingInfo = new ResourceMappingInfo(); 
            resourceMappingInfo.Id = "ClassroomID"
            resourceMappingInfo.Name = "ClassroomName"
            datasourse.ResourceProvider.Mapping = resourceMappingInfo
            datasourse.ResourceProvider.DataSource = SDS.Classrooms; 
 
            radScheduler1.DataSource = datasourse
 
            radScheduler1.GetDayView().RulerStartScale = 8
            radScheduler1.FocusedDate = DateTime.Today; 
            radScheduler1.GetDayView().RulerEndScale = 22
            radScheduler1.GetDayView().ShowRuler = true
            radScheduler1.GetDayView().DayCount = 1
            radScheduler1.GroupType = GroupType.Resource; 
            radScheduler1.ActiveView.ResourcesPerView = 5
 
        } 



Dobry Zranchev
Telerik team
 answered on 18 May 2010
5 answers
215 views

Can Not install package RadControlsWinforms_Q3_2006_SP1_trial.exe Mistake 1335

Peter
Telerik team
 answered on 18 May 2010
1 answer
105 views
Why do I have to every time select 'Edit' from the context menu for filter cell, in order to input a value into filter cell?
I have 'EnableFiltering' property set to true for both radGridView1 and radGridView1.MasterGridTemplate.
Jack
Telerik team
 answered on 18 May 2010
1 answer
223 views

I have a GridViewTextBoxColumn in RadGridView. The column honors CultureInfo during display, however when it goes into the edit mode, the RadBoxTextEditor inside the cell, doesn't honor culture info. This is true with any column - GridViewTextBoxColumn or GridViewDecimalColumn.

We want the editor to show same culture info as the grid. How can set the editor to have same cultureinfo...

I am using following during grid intialization but it is not working.

private void radGridAdjustments_Initialized(object sender, EventArgs e)

 

 {

 

 

radGridAdjustments.Columns.Add(

 

 

new GridViewTextBoxColumn("AdjAmount"));

radGridAdjustments.Columns[

"AdjAmount"].FieldName = "AdjAmount";
radGridAdjustments.Columns["AdjAmount"]).FormatInfo = CultureInfo.CurrentCulture

 

radGridAdjustments.Columns["AdjAmount"].FormatString = "{0:c}";

radGridAdjustments.Columns[

"AdjAmount"]).FormatInfo.NumberFormat.CurrencyDecimalDigits = 2;
}

Jack
Telerik team
 answered on 18 May 2010
1 answer
89 views
I am fairly new to telerik, and I am using a custom RadGrid with a fill color for the selected row set in the VSB. I also have alternating row color set and customized with the following line of code:

((

GridTableElement)this.radGridView1.GridElement).AlternatingRowColor = Color.DarkGray;
The problem is that when I select a new now the previous row color remains the “selected row” color and does to drop back to the default row color. This is does not affect the alternating row. Why? Am I missing something?

 

Alexander
Telerik team
 answered on 18 May 2010
11 answers
353 views
The RadTreeView control supports to drag and drop a tree node in the tree view, and the node will be added either as a child or as a sibling of other nodes.

My problem is that can I only allow the users to add the draged node as a sibling and disable the functionality that the users can add the node as a child? (perhaps should do something to the arrow point and the dashed line...?)
Victor
Telerik team
 answered on 18 May 2010
1 answer
460 views
I have a RadGridView... One of its columns is GridViewTextBoxColumn. The cells in this column are editable and hold currency values. The users are able to enter the values. But I want to restrict the users to be able to enter only 2 digits after the decimals. The editor should not let users to enter anything 2 digits after decimal, e.g., 123.45 is correct but 123.4567 in wrong.

This issue happens while entering the data and not while displaying it.

How can I achieve the above functionality... (Even if use GridViewDecimalColumn the problem stays. In anycase, I do not want to use GridViewDecimalColumn because GridSpinEditor doesn't work with the functionalities we want).

I am using following during grid intialization but it is not working.

 

private void radGridAdjustments_Initialized(object sender, EventArgs e)

 {

 

 

radGridAdjustments.Columns.Add(

new GridViewTextBoxColumn("AdjAmount"));

radGridAdjustments.Columns[

"AdjAmount"].FieldName = "AdjAmount";
radGridAdjustments.Columns["AdjAmount"]).FormatInfo = CultureInfo.CurrentCulture

 

radGridAdjustments.Columns["AdjAmount"].FormatString = "{0:c}";

radGridAdjustments.Columns[

"AdjAmount"]).FormatInfo.NumberFormat.CurrencyDecimalDigits = 2;
}

Svett
Telerik team
 answered on 18 May 2010
6 answers
197 views
When you float a docking window, it still has a pin button. 
If you try to unpin it nothing happens (If the panel was docked with other windows I would expect it to autohide, if the window is floated on its own then there does not seem to be any sensible action to take).
If you press the pin button again (to unpin it), the docked floating window jumps back into the main window.

I would suggest the pin button should be disabled or removed when a window is floated.
Adrian
Top achievements
Rank 2
 answered on 18 May 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
ProgressBar
CheckedDropDownList
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
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
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
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?