Telerik Forums
UI for WinForms Forum
1 answer
81 views
I need to present a clients scheduling data to them in a particular way, and I'm wondering if it is possible using the scheduling controls in this package.

Basically, the client wants to see their peoples activities (or appointments) in a grid, where the person is on one axis, the day is the other axis, and the appointments are in the intersection. Kind of like this:

http://imgur.com/aUUa4Ev


Is this possible?
Stefan
Telerik team
 answered on 03 Feb 2014
1 answer
98 views
Hello
In a listview that I populate "manually" I whish to change the font Color of a cell text based on the value of another cell (in the same "line"),
In the cell formatting event I do not see how to access to the value of another cell ? or should I use another event ?

Thanks in advance
Stefan
Telerik team
 answered on 03 Feb 2014
7 answers
251 views
Hello,

I am wondering if I can use the UseSystemPasswordChar property with the Radtextbox. It works with the traditional texbox but does not seem to work with the radtexbox. 

For the moment, I am using an alternative solution which is:
radTextBoxNewPass.PasswordChar = '*';

Thank you,
LB

Stefan
Telerik team
 answered on 03 Feb 2014
2 answers
100 views
Hi ,

I have a RadGridView that shows some data in Hierarchical mode.

I have a problem in this scenario:

First. I expand more data in GridView(so, it shows child of node and child of child and ......).
Second. I use RadGridView,Rows.Add() function to add 1 row. The row successfully added, but the added row go bottom of gridview and the vertical Scroll lost trust value.

So, I should "up down" and "Up down" the vertical scroll to  get correct value.

any suggestion please?!
Hossein
Top achievements
Rank 1
 answered on 01 Feb 2014
1 answer
79 views
I have a databound GridView with a GridViewComboBox column, among others. I would like the scroll arrow to be on the right, not left, but I can't figure out how to set this. Can you help me?


Regards, Jill-Connie Lorentsen
Stefan
Telerik team
 answered on 31 Jan 2014
11 answers
281 views
is it possible to remove the times?

i am using the monthview where the appointments (or should i say availibilites) are in days and no time is ever specified. this gives me a 00:00AM - 00:00AM in each of the appointments which looks bad. can it be hidden?

i am binding using a dataprovider also

Cheers,
Craig
Ivan Petrov
Telerik team
 answered on 31 Jan 2014
1 answer
100 views
How do I limit legend numbers to 1 decimal place?
Ralitsa
Telerik team
 answered on 31 Jan 2014
2 answers
178 views
I have just started using the Range Selector linked to a Chart View with a Date Time Categorical axis. My issue is that I cannot seem to find the formatting setting for the date label in the Range Selector. 

Can you please help?
Stefan
Telerik team
 answered on 30 Jan 2014
2 answers
139 views
Situation
In this situation i have 3 resources/columns in the scheduler.
Every resource/column has his own available times.
I have disabled the cells when the time is not available.
I want to drag and drop a appointment in an cell.
It has to check if that cell/timeslot is available.

Problem
I don't know how to check in which column the drag and drop cell is. So it checks all resources/Columns.
If in one resource/column a cell/time is disabled then it gives back that it is not available.

How can i check in which column the selected cell is?

private void radScheduler1_DragDrop(object sender, DragEventArgs e)
        {
DragObject dragObject = e.Data.GetData(typeof(DragObject)) as DragObject;
Point point = this.radScheduler1.PointToClient(new Point(e.X, e.Y));           
SchedulerDayViewGroupedByResourceElement groupedDayViewElement = this.radScheduler1.SchedulerElement.ViewElement as SchedulerDayViewGroupedByResourceElement;
SchedulerCellElement schedulerCell = SchedulerUIHelper.GetCellAtPoint(point, groupedDayViewElement.GetDayViewElements());
SchedulerCellElement schedulerCell2 = SchedulerUIHelper.GetCells(this.radScheduler1).Where(x => x.Date >= schedulerCell.Date && x.Date <= SchedulerCell.Date.AddMinutes(((double)dragObject.Values[Enums.AppointmentFields.Duration])-1)
&& x.Enabled == false).FirstOrDefault();
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Jan 2014
4 answers
99 views
Hello,
I have tried to customing a gridview row with html view like it is recommended in a few posts.
The result is not which i want, I want something like this:

[--colLeft--][----------------------col-----------------------]
[------------------------------------col-------------------------]
[--colLeft--][--colLeft--][--colLeft--][------col--------]

When I resize the gridviewI want to colLeft stay at left like:

[--colLeft--][----------------------------------------col------------------------------------]
[-----------------------------------------col---------------------------------------------------]
[--colLeft--][--colLeft--][--colLeft--][-----------------col----------------------------]


To make that I have used this C# code:

// Row struct in html view          
this.htmlView = new HtmlViewDefinition();
this.htmlView.RowTemplate.Rows.Add(new RowDefinition());
this.htmlView.RowTemplate.Rows.Add(new RowDefinition());
this.htmlView.RowTemplate.Rows.Add(new RowDefinition());
this.htmlView.RowTemplate.Rows[0].Cells.Add(new CellDefinition("IsLocked", 0, 1, 1));
this.htmlView.RowTemplate.Rows[0].Cells.Add(new CellDefinition("name", 0, 3, 1));
this.htmlView.RowTemplate.Rows[1].Cells.Add(new CellDefinition("details", 0, 4, 1));
this.htmlView.RowTemplate.Rows[2].Cells.Add(new CellDefinition("preview", 0, 1, 1));
this.htmlView.RowTemplate.Rows[2].Cells.Add(new CellDefinition("insert", 0, 1, 1));
this.htmlView.RowTemplate.Rows[2].Cells.Add(new CellDefinition("remove", 0, 1, 1));
this.htmlView.RowTemplate.Rows[2].Cells.Add(new CellDefinition("link", 0, 1, 1));

It works but when I'm resizing the gridview, cells are automaticly re-arranged (size and location) and centered so columns I want to fix on the left side (colLeft) moving. Like that:

[-------colLeft------][----------------------------------------col----------------------------------------------------]
[-----------------------------------------col----------------------------------------------------------------------------]
[-------colLeft------][-------colLeft------][------colLeft------][-----------------col----------------------------]


My question is How can I fix columns size to X pixels and location to left to make what I want?

Thanks



Anthony
Top achievements
Rank 1
 answered on 30 Jan 2014
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
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
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?