Telerik Forums
UI for WinForms Forum
1 answer
387 views

Hello,

I have been trying to bind two properties to datetimepicker, the date itself and a boolean that i have bound to the RadCheckBoxElement.

Binding the date property results in no problems what so ever, as for the boolean unfortunately i cannot say the same thing.

For the sake of trial and error, i have tried binding this property to CheckState, IsChecked and ToogleState with no results.

Thanks in advance for any help provided.

Best regards,

João Carvalho

Hristo
Telerik team
 answered on 19 Feb 2016
3 answers
234 views

Hi All

Me again ;)

I have tried to search, but cannot find the answer.

 

I have a DataSet I use for the gantview. All the properties is correct, but on the first time a user uses it, there is still no data, so it is an empty Dataset.

On this empty Gantview though, there is no Context Menu, so here is my question: How do a User add the First Task to an Empty Ganttview ?

 

Regards

 

Marius

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 Feb 2016
1 answer
147 views

I want to print my GridView,when i set gv.PrintStyle.FitWidthMode = PrintFitWidthMode.FitPageWidth, the header text can not wrap automatically. The row text can wrap automatically, but its height can not grow automatically, how to do, thanks.

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 Feb 2016
1 answer
105 views
Hello everybody , my question is very simple, how to add a checkbox control to my ListControl ? , some property must be enabled or should I create through code? 
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 Feb 2016
1 answer
123 views

Hi,

 I have a form with a radGridView (with 4 columns), the radGridView datasource is a datatable which i update every one second.

When i try to resize any column the width is being reset instead of stretching according to the mouse position.

 

Here is the test application code :

 

Random rndRandom = new Random();

private void RadForm1_Load(object sender, EventArgs e)
{
    radGridView1.AutoGenerateColumns = false;

    timer1.Start();
}



private void timer1_Tick(object sender, EventArgs e)
{
    DataTable dt = new DataTable();
    dt.Columns.Add("AAA1", typeof(int));
    dt.Columns.Add("AAA2", typeof(int));
    dt.Columns.Add("AAA3", typeof(int));
    dt.Columns.Add("AAA4", typeof(int));

    for (int i = 0; i < 20; i++)
    {
        DataRow dr = dt.NewRow();

        dr["AAA1"] = rndRandom.Next();
        dr["AAA2"] = rndRandom.Next();
        dr["AAA3"] = rndRandom.Next();
        dr["AAA4"] = rndRandom.Next();

        dt.Rows.Add(dr);
    }

    radGridView1.DataSource = dt;
}

 

Is there anyway to sort this issue?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Feb 2016
7 answers
230 views

Hi!

 

How can I delete string ("Any") in Scheduler Resources?

This this how I add my own strings

                            for (int i = 0; i < temp.Length; i++)
                            {
                                radDropDownList5.Items.Add(temp[i].ItemArray[3].ToString());
                                Resource resource = new Resource();
                                resource.Id = new EventId(i);
                                resource.Name = temp[i].ItemArray[3].ToString();
                                //resource.Color = colors[i];
                                //resource.Image = this.imageList1.Images[i];
                                MessageBox.Show(temp[i].ItemArray[3].ToString());
                                this.radScheduler1.Resources.Add(resource);
                            }

But I results I see this (attach screenshot)

 

Best regards, Me!

yurinkomarov
Top achievements
Rank 1
 answered on 18 Feb 2016
5 answers
149 views

I am implementing a detail child row in a grid as per the example at in ..\QuickStart\GridView\Hierarchy\TabbedChildViews

I have a simplified view with a single row and two columns, row height 100 and column 1 width 350, column 2 width 600 (excluding the image)

I am looking for some pointers on how to get the height of the row/cell to scroll when the height of the contained content exceeds the row height. Also how to get the cell to correctly wrap the text?

Currently I am getting the row rendered as in the image, which is incorrect. It is not wrapping the text correctly as the characters are vanishing off the right edge of the first cell. Also, the content loaded into the cell is a lot higher than the cell/row height ( in the provided image the cell field has 15+ lines of text) , but the scroll bar does not allow scrolling for the entire content. How could this be achieved?

 The Cells are added to the view as :

viewDef.RowTemplate.Rows(0).Cells.Add(New CellDefinition(column.FieldName, 0, 1, 1))

And the CellFormatting code for the cell is :

e.CellElement.Text = ("<html>" + e.CellElement.RowInfo.Cells(columnSpec.FieldName).Value.ToString().Replace(" ", "&nbsp;") + "</html>")
e.CellElement.TextAlignment = ContentAlignment.TopLeft
e.CellElement.Padding = New Padding(3)
e.CellElement.TextWrap = True
e.CellElement.AutoSizeMode = RadAutoSizeMode.Auto
e.CellElement.AutoSize = True

 

The e.CellElement directives have been added via trial and error.

Thanks,

 Mark

 

Hristo
Telerik team
 answered on 17 Feb 2016
5 answers
117 views

 The following code works:

 view.ColumnGroups.Add(new GridViewColumnGroup("AutoPOD"));
            view.ColumnGroups.Add(new GridViewColumnGroup("Addresses"));
            view.ColumnGroups[0].Rows.Add(new GridViewColumnGroupRow());
            view.ColumnGroups[0].Rows.Add(new GridViewColumnGroupRow());
            view.ColumnGroups[1].Rows.Add(new GridViewColumnGroupRow());
            view.ColumnGroups[1].Rows.Add(new GridViewColumnGroupRow());
           

 Is there a way to replace it with something like this, short of using variables:

 view.ColumnGroups.Add(new GridViewColumnGroup("AutoPOD"));
            view.ColumnGroups.Add(new GridViewColumnGroup("Addresses"));
            view.ColumnGroups["autoPOD"].Rows.Add(new GridViewColumnGroupRow());
            view.ColumnGroups[0].Rows.Add(new GridViewColumnGroupRow());
            view.ColumnGroups["Addresses"].Rows.Add(new GridViewColumnGroupRow());
            view.ColumnGroups[1].Rows.Add(new GridViewColumnGroupRow());

We have a lot of groups and having the name right there would help code readability a lot.

 

Thanks,

 

Joe

Stefan
Telerik team
 answered on 17 Feb 2016
4 answers
129 views

Hi All

I have implemented the gantview in a test winforms application, and I am just wondering if someone can assist me.

On the View, I drag a Task (Child) Item, and thus changes the start or end date.

Now a very Basic need, is that the Summary (Parent) gets updated too.

Here is a toned down version:

void radGanttView1_SelectedItemChanged(object sender, GanttViewSelectedItemChangedEventArgs e)
{
    try
    {
             if (e.Item.End > e.Item.Parent.End)
             {    
                    e.Item.Parent.End = e.Item.End;

            } 

           if (e.Item.Start < e.Item.Parent.Start)
          {
              e.Item.Parent.Start = e.Item.Start;
         }
     }
   catch { }
}

(View1)

Now this "WORKS" in the sense that if I click off the selected child (View2) , and then back on to it, the  Summary does update (View3), but I need it to be immediately

 

Regards

 

Marius

 

 

 

Marius
Top achievements
Rank 1
 answered on 17 Feb 2016
0 answers
127 views

Hello All...

I need help about MCCB...

Why the data always change to blank after i click new button or edit button 

hope attached picture help to explain the problem 

 Here the code i write on Form_load 

ds = New DataSet("Daftar")
 
        Tblanggota = ds.Tables.Add("Anggota")
        With Tblanggota
            .Columns.Add("KODE", GetType(String))
            .Columns.Add("NAMA", GetType(String))
        End With
        'fill TblAnggota
 
        Using conn As New OleDbConnection(str)
            conn.Open()
            Using cmd = conn.CreateCommand()
                'mengisikan data Anggota.
                Dim query = <sql>
                                 SELECT KodeAnggota as KODE, NamaAnggota as NAMA FROM MstAnggota ORDER BY KodeAnggota
                             </sql>.Value()
                cmd.CommandText = query
                Dim adapter = New OleDbDataAdapter(cmd)
                adapter.SelectCommand = cmd
                Tblanggota.Rows.Add(New Object() {"", ""})
                adapter.Fill(Tblanggota)
            End Using
            With CmbAnggota
                .DataSource = Tblanggota
                '.SelectedValue = ""
                .AutoSizeDropDownToBestFit = True
                .BestFitColumns()
                .AutoFilter = True
                .DisplayMember = "KODE"
                .ValueMember = "KODE"
                .Text = ""
                TxtNamaAnggota.Text = ""
 
                'Dim filter As New FilterDescriptor()
                'filter.PropertyName = Me.CmbAnggota.DisplayMember
                'filter.[Operator] = FilterOperator.Contains
                'Me.CmbAnggota.EditorControl.MasterTemplate.FilterDescriptors.Add(filter)
                'CmbAnggota.MultiColumnComboBoxElement.EditorControl.EnableCustomFiltering = True
 
                'AddHandler CmbAnggota.MultiColumnComboBoxElement.EditorControl.CustomFiltering, AddressOf CmbAnggota_CustomFiltering
                'AddHandler CmbAnggota.KeyDown, AddressOf CmbAnggota_KeyDown
 
 
            End With
 
            conn.Close()
        End Using
 
        TxtNamaAnggota.DataBindings.Add("Text", Tblanggota, "NAMA")

I have tried to move the code on button_click event. but the i got the same result.

 

Thanks before

Hengky
Top achievements
Rank 1
Veteran
 asked on 17 Feb 2016
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)
Form
Chart (obsolete as of Q1 2013)
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
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?