or
| private void rcboInfo_TextChanged(object sender, EventArgs e) |
| { |
| List<InfoComboDetails> allInfos = controller.GetInfoBySearchString(searchstr); |
| foreach (info i in allInfos) |
| { |
| RadComboBoxItem rcbi = new RadComboBoxItem(i.Column1 + " - " + i.colum2 , i.ID); |
| rcboInfo.Items.Add(rcbi); |
| } |
| } |
| private void rcboInfo_SelectedValueChanged(object sender, EventArgs e) |
| { |
| rcboinfo2.SelectedValue = controller.GetInfo2ByInfoID((int)rcboInfo.SelectedValue).ID; |
| } |
| Dim sched As New RadScheduler |
| sched.BackColor = System.Drawing.Color.White |
| sched.DataSource = Nothing |
| sched.Dock = System.Windows.Forms.DockStyle.Left |
| sched.HighlightToday = True |
| sched.Location = New System.Drawing.Point(0, 0) |
| sched.Name = "RadScheduler1" |
| sched.Size = New System.Drawing.Size(200, 560) |
| sched.TabIndex = 0 |
| sched.Text = "RadScheduler1" |
| sched.AllowDrop = True |
| Me.pnlSchedule.Controls.Add(sched) |
| Dim view As Telerik.WinControls.UI.SchedulerDayView |
| view = TryCast(sched.ActiveView, Telerik.WinControls.UI.SchedulerDayView) |
| If view IsNot Nothing Then |
| view.StartDate = DateTime.Today |
| view.DayCount = 1 |
| view.ShowAllDayArea = False |
| view.ShowDayHeaders = False |
| view.ShowHeader = False |
| End If |
| Hi, I am evaluating Telerik controls for Windows Forms, and what I want to achieve is something like the left-hand side panel on the "Save-As" dialog window when in Windows Vista (try notepad and do 'save as'). Is basically something like: |
| |----------------------------------| |
| |Favorites Links | |
| | {Content} | |
| | | |
| | | |
| | | |
| | | |
| ----------------------------------- |
| | Folders ^ | |
| ----------------------------------- |
| so, "Favorites" remains visible all the time (locked), and "Folders" (docked on the bottom) expand upwards without covering the whole "Favorites" area like: |
| |----------------------------------| |
| |Favorites Links | |
| | {Some Content} | |
| | | |
| ----------------------------------- |
| | Folders V | |
| ----------------------------------- |
| | {Content} | |
| | | |
| | | |
| | | |
| ----------------------------------- |
| Then you click on the "V" againg and the "Folders" group docks back at the bottom again. |
I can retrieve an image from an image cell with the following
| myImage = radGrid.Rows(r).Cells(c).CellElement.Image |
FilterExpression filter = new FilterExpression();
filter.Predicates.Add(
FilterExpression.BinaryOperation.AND, GridKnownFunction.Contains, GridFilterCellElement.ParameterName);
filter.Parameters.Add(
GridFilterCellElement.ParameterName, "0");
this.radGView1.Columns["Active"].Filter = filter;