Telerik Forums
UI for WinForms Forum
1 answer
123 views
the grid is shown as collapsed,  after Expand all,  the theme is not correct on DataCell and SubTotal Cell.

reproduce steps:
1. set text is bold on SubTotal Cell ,  reference Step1.jpg
2. set AutoExpandColumnHeaders = False   .AutoExpandRowHeaders = False
3. bind data
4. Expand All,   a part of text is bold on datacell,  see step2.jpg

what is wrong?
George
Telerik team
 answered on 10 Jul 2014
1 answer
80 views
Copy function does not work well for collapsed group row.   the copied data is blank.
Dimitar
Telerik team
 answered on 09 Jul 2014
1 answer
273 views
Is it at all possible to change the style of the RadTextBox when there is no text value - i.e Null Text?

I am used to the Infragistics controls and there is a nice and easy appearance for this.

Thanks

Andez
Dimitar
Telerik team
 answered on 09 Jul 2014
5 answers
136 views
my problem is that ro respects the width 100% out of the screen and scroll appears, attached the code

greetings and thanks
Gustavo
Top achievements
Rank 1
 answered on 09 Jul 2014
1 answer
79 views
I can easily add the bars to the right side, but adding the test and start, end date/time on the grid on the right is not working?  Do I need to add this separately?


 var projectInfo = (from pi in dbContext.tasks where pi.taskID == idPassed select pi).First();

GanttViewDataItem item1 = new GanttViewDataItem();
item1.Start = Convert.ToDateTime(projectInfo.dateAdded);
item1.End = Convert.ToDateTime(projectInfo.taskDT);
item1.Progress = 30;
item1.Title = projectInfo.taskName;
George
Telerik team
 answered on 09 Jul 2014
3 answers
141 views
Hi,


I have had a good look at the forums and I can't find a way of doing the following:
 - When a user resizes a column so that its value does no longer fit its width, I want it to hide the LEFT side of its value.
  I.E. If the value is "1234567890123467", once the value is too long to show, i want it to hide the characters on the LEFT; the value could become "...7890123467"

I thought RIGHTTOLEFT = True would do it, but it does not.

Thanks in advance!

Rafael  
George
Telerik team
 answered on 09 Jul 2014
3 answers
116 views
Hi,

It would be practible to arrange data series in different panes typical sharing one axis, e.g. temperature and pressure shearing a horizontal time axis or shearing a vertical level axis. Each pane with different caption and background.

/Brian
George
Telerik team
 answered on 09 Jul 2014
1 answer
78 views
I'm populating my chart view from a pivot grid. Is there any way to set the default series to a line - at the moment its displaying bars ?
Dimitar
Telerik team
 answered on 08 Jul 2014
1 answer
107 views
Hi i'm trying to do an example project using DataAccess + Winforms RadScheduler + sqlite
I red the tutorial at the page below

http://www.telerik.com/help/winforms/scheduler-data-binding-binding-to-entity-framework-and-telerik-data-access.html

But it didn't work for me.... may i find somewhere a c# tutorial or a c# example project explain how to create tables on sqlite to execute CRUD operation on appointment and recurrences by Telerik Data Access.

Thanks in advance
George
Telerik team
 answered on 08 Jul 2014
2 answers
134 views
Hi everyone!
We are doing a project, and use it in GridView and its capabilities. We had a problem with GridViewColumnGroup. Grid is used to display services for a week, and have the button to show / not show weekend. By default, the “show weekend” is disabled. When we click the button “show weekend”, the weekend columns for some reason added small, and not as the same width as the weekdays. But if you do show weekend the default, they appear normal. But if you then show \ not show the weekend, they are becoming less and less. 

public partial class Form1 : Form
{
    private static readonly List<string> DaysOfWorkingWeekList = new List<string>(new[] { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday"});
    private static readonly List<string> DaysOfWeekList = new List<string>(new[] { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" });
 
    public Form1()
    {
        InitializeComponent();
 
        foreach (var column in GetColumns())
        {
            rgvMain.MasterTemplate.Columns.Add(column);
        }
        rgvMain.MasterTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
 
        UpdateGroupHeader();
 
        var serviceWeeks = new List<ServiceWeek>();
        var serviceWeek = new ServiceWeek();
        serviceWeeks.Add(serviceWeek);
 
        rgvMain.DataSource = serviceWeeks;
    }
 
    private void UpdateGroupHeader()
    {
        AddGroupHeader(rgvMain.MasterTemplate, radCheckBox1.IsChecked ? DaysOfWeekList : DaysOfWorkingWeekList);
        rgvMain.MasterTemplate.Refresh();
    }
 
    private void radCheckBox1_CheckStateChanged(object sender, EventArgs e)
    {
        UpdateGroupHeader();
    }
     
    public void AddGroupHeader(GridViewTemplate template, List<string> groupHeaderText)
    {
        var columnGroupsView = new ColumnGroupsViewDefinition();
 
        for (int i = 0, index = 0; index < groupHeaderText.Count; index++)
        {
            columnGroupsView.ColumnGroups.Add(new GridViewColumnGroup(groupHeaderText[index]));
            columnGroupsView.ColumnGroups[index].Rows.Add(new GridViewColumnGroupRow());
 
            columnGroupsView.ColumnGroups[index].Rows[0].Columns.Add(template.Columns[i++]);
            columnGroupsView.ColumnGroups[index].Rows[0].Columns.Add(template.Columns[i++]);
        }
 
        template.ViewDefinition = columnGroupsView;
    }
 
    private IEnumerable<GridViewTextBoxColumn> GetColumns()
    {
        return new List<GridViewTextBoxColumn>
        {
            new GridViewTextBoxColumn(),
            new GridViewTextBoxColumn {Width = 50, MinWidth = 50, MaxWidth = 50},
            new GridViewTextBoxColumn(),
            new GridViewTextBoxColumn {Width = 50, MinWidth = 50, MaxWidth = 50},
            new GridViewTextBoxColumn(),
            new GridViewTextBoxColumn {Width = 50, MinWidth = 50, MaxWidth = 50},
            new GridViewTextBoxColumn(),
            new GridViewTextBoxColumn {Width = 50, MinWidth = 50, MaxWidth = 50},
            new GridViewTextBoxColumn(),
            new GridViewTextBoxColumn {Width = 50, MinWidth = 50, MaxWidth = 50},
            new GridViewTextBoxColumn(),
            new GridViewTextBoxColumn {Width = 50, MinWidth = 50, MaxWidth = 50},
            new GridViewTextBoxColumn(),
            new GridViewTextBoxColumn {Width = 50, MinWidth = 50, MaxWidth = 50}
        };
    }
}
 
public class Service
{
}
 
public class ServiceWeek
{
    public Service MondayService { get; set; }
    public Service SundayService { get; set; }
    public Service SaturdayService { get; set; }
    public Service FridayService { get; set; }
    public Service ThursdayService { get; set; }
    public Service WednesdayService { get; set; }
    public Service TuesdayService { get; set; }
}


Please help me! On the form located only a standard RadGridView and CheckBox.
Sorry for my English.
Nikita
Top achievements
Rank 1
 answered on 08 Jul 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
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?