Hi.. this is Deo due to my personal telerik account didn't have any purchase of the product i ask my boss to help me with it and he created this account so i can post my issue on telerik winform..
Now the appointment is properly showing up on the radreminder my problem now is using the Open Item button because i have a custom editappointmentdialog and i didn't enable to inherit the overload of constructor to allow the IEvent and ISchedulerData parameter to be past. here is my code.
Private Sub radAppointmentReminder_ItemOpened(ByVal sender As System.Object, ByVal e As Telerik.WinControls.UI.RadOpenItemArgs) Handles radAppointmentReminder.ItemOpened If Me.appointmentDialog Is Nothing Then ' Me.appointmentDialog = New frmCustomAppointmentEditForm() Me.appointmentDialog = New EditAppointmentDialog(CType(e.RemindObject, IEvent), Me.radSchedule) End If Me.appointmentDialog.ShowDialog() End Sub

Hi,
Currently process works as below
1. On button click, new tool window(created dynamically) opened with content.
private ToolWindow CreateToolWindowPanel(string title)
{
var panel = new ToolWindow
{
CloseAction = DockWindowCloseAction.Close,
Text = title + " " + counter++,
Name = "tw " + counter++,
ToolCaptionButtons = ToolStripCaptionButtons.Close,
};
return panel;
}
on Button MouseDown following code written
var bounds = new Rectangle(Cursor.Position.X - 30, Cursor.Position.Y - 10, 400, 400);
var panel = CreateToolWindowPanel("pnl");
radDock1.FloatWindow(panel, bounds);
2. After the tool window is shown, User docking it (by dragging) to existing radDaocking control.
Requirement for changes in this process is Both step need to be done in single click.
On button click new tool window opened with dragging mode(don't release button click and drag tool window), and docked in existing radDaocking control on release of button click.
Thanks

Hi,
Is there any way for implementing editing RadDock trabbed document tabs like radPageView(http://docs.telerik.com/devtools/winforms/pageview/how-to/editing-page-tabs)?
Can any one help for this Issue?
Thanks

I have a RadPivotGrid, which users can populate and aggregate data the way the like. Now I want to associate the PivotGrid to my chartView. I followed the simple example to do this, i.e setting the ChartView's datasource to the RadPivotGrid. However, no series are generated.
Am I missing something?
Br,
Alexander

uiMasterColourList.SortDescriptors.Add(new SortDescriptor("Text", ListSortDirection.Ascending));uiMasterColourList.EnableSorting = true;
Hello, when using the AllowDragDrop=true on a ListView control, it gives to user a beautiful feedback while doing drag/drop (attached image).
Since i need to implement drag & drop manually, would be possible to draw insert lines on the listview control in "list" view mode?
Would be nice to also have the semiopaque cursor while dragging like on the attached image, but that is not that necessary to me.
The lack of insertion lines in my opinion make not clear for the users where the item will be dropped.
Best Regards
Andrea

While we can move controls contained inside LayoutControl by selecting them and using the keyboard arrow keys it appears it is not possible to move them using the mouse since LayoutControl tries to automatically create a new section as soon as you start dragging a control with your mouse instead of allowing you to reposition the control within the existing section it is currently in. However, only when you use the mouse to move the controls the alignment lines show allowing you to align your controls more easily.
Why is it and is there a way to move the controls inside the LayoutControl with the mouse without LayoutControl automatically adding new sections?


Hello,
I've noticed a small problem with the commandbar controls and databinding. Maybe this is not a bug, but however the commandbar controls behave different to the "normal" (Telerik) controls.
If you have something like this:
public partial class RadForm1 : Telerik.WinControls.UI.RadForm { public RadForm1() { InitializeComponent(); List<myobject> source = new List<myobject>(); BindingSource binding = new BindingSource(); source.Add(new myobject(1, "a")); source.Add(new myobject(2, "b")); source.Add(new myobject(3, "c")); source.Add(new myobject(4, "d")); try { commandBarTextBox1.DataBindings.Add("Text", binding, "MyProperty2", true, DataSourceUpdateMode.OnValidation); } catch { } radTextBox1.DataBindings.Add("Text", binding, "MyProperty2", true, DataSourceUpdateMode.OnValidation); binding.DataSource = source; binding.MoveLast(); } } public class myobject { public int MyProperty1 { get; set; } public string MyProperty2 { get; set; } public myobject(int a, string b) { MyProperty1 = a; MyProperty2 = b; } }the databinding of the commandbartextbox will crash but the radtextbox works fine.The problem is that the binding datasource is set after the control databinding.
Since the radcontrols and the .net controls work fine in this case it would be nice if the commandbar controls could too.
(Why are the commandbarcontrols not derived from the radcontrols? or at least have the same base class?)
Kind Regards,
Christian
