Hi,
I have a base form with a RadPageView and one RadPageViewPage. I dropped two RadPanel and one RadGridView into the RadPageViewPage. I set the modifier property of all this five controls to public. And then I save this RadForm.
I created a second RadForm and inherited this one from the previous one. In this second form I can see all the controls in the designer. I can modified the properties of the two RadPanels but I can't modified the properties of the RadGridView in the properties windows.
What can I do in order to modified the properties of the RadGridView of the second form at design time ?

Hi all,
Unfortunatelly (bug or feature?) the ValueChanging Event routine of the RadTimePicker just pass CancelEventArgs but not ValueChangingEventArgs like in RadDateTimePicker. How can I get the new value (value that is entered by the time picker dialog) in the value changing event? I need it for validation.
Thanks!
Jürgen

I am getting issue in form resize..
1) i cannot set form height in FloatingWindowCreated as i mentioned below. kindly tell me how to resize form height as per required.
void buyDock_FloatingWindowCreated(object sender, FloatingWindowEventArgs e)
{
e.Window.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
e.Window.MinimumSize = new Size(735, 60);
e.Window.StartPosition = FormStartPosition.CenterScreen;
}
Thanks in addvance.
Hi,
Small question.
GanttView supports milliseconds in TimeLine.
In my project i need add timeline (with task) from task in from 0,25 to 2 seconds.

Hello~~
I have two question.
I need your help.
1. Add parent to selectedItem
privite void Buttom1_click(object sender, EventArge e)
{
// Add parent to selectedItem
// raising error
GanttViewDataItem item = new GanttViewDataItem();
item.Items.Add(radGanttView1.SelectedItem);
radGanttView1.Items.Add(item);
}
2. GanttViewTextItemEelement Drap & drop is possible to change parent & child?
hi
why are all fields empty when scrolling
private void dgvTaskFactory_ViewCellFormatting(object sender, CellFormattingEventArgs e) {
if (e.CellElement is GridHeaderCellElement) {
e.CellElement.TextWrap = true;
e.CellElement.TextAlignment = ContentAlignment.BottomLeft;
} else {
if (e.CellElement is GridCellElement cell) {
if (cell.ColumnInfo.Name == ColumnTitle.GridTasklistMail.priority) {
cell.DrawText = false;
cell.Image = Image.FromFile(Convert.ToInt32(cell.Value.ToString()) == -1 ? "express.png" : "timable.png");
} else {
cell.Image = null;
}
}
}
}
Is it possible to mange group expanded state with AutoExpandGroups=false?
I have a 4-levels grid that simulates a treeview. original data is added in code with "radGridView1.Rows.Add( params[])"
The gridview's parameters :
radGridView1.MasterTemplate.ShowFilteringRow = false;radGridView1.MasterTemplate.EnableGrouping = true;radGridView1.MasterTemplate.AllowDragToGroup = false;radGridView1.MasterTemplate.AutoExpandGroups = false;radGridView1.ShowGroupPanel = false;
I want only the level 1-2-3 opened, the last one which contains all the leaves must be closed, until user ask to see all the entities.
I add more data with GridViewDataRowInfo rowInfo = new GridViewDataRowInfo(this.radGridView1.MasterView);
Setting cell values with => rowInfo.Cells[0].Value = newentity.Identifier;
and then for the grouping, those lines of code:
radGridView1.Rows.Add(rowInfo);
rowInfo.IsSelected = true;
rowInfo.IsExpanded = true;
My problem is that after adding the new entity, all the groups are collapsed. I tried many ideas but none to success.
If I set the radGridView1.MasterTemplate.AutoExpandGroups to true, then everything gets expanded and the grid takes way to much height.
Any ideas? thanks
