Hey !
I need to know if you plan the development of a new function :
When you are in the list of your tasks, i want to navigate with the keyboard.
Im' Here :
And when i navigate in the list with the keyboard, i need to see the last column on the same task :
The focus is good but the horizontal scrollBar is on the same place and we can't the the all value of the cell.
Can we plan the improvment ? Or do you have a clean solution?
If you need more informations,
don't hesitate to contact me
Regards,
Valériane
I have also updated your Telerik points.
Currently, the possible solution that I can suggest is to create a custom BaseGanttViewBehavior and handle the left/right keys. Then, just scroll to the current column. You can find below a sample code snippet which result is illustrated in the attached gif file:
public
RadForm1()
{
InitializeComponent();
this
.radGanttView1.GanttViewBehavior =
new
CustomGanttViewBehavior();
}
public
class
CustomGanttViewBehavior : BaseGanttViewBehavior
{
public
override
bool
ProcessRightKey(KeyEventArgs e)
{
bool
result =
base
.ProcessRightKey(e);
this
.GanttViewElement.TextViewElement.ColumnScroller.ScrollToItem(
this
.GanttViewElement.CurrentColumn,
true
);
return
result;
}
public
override
bool
ProcessLeftKey(KeyEventArgs e)
{
bool
result =
base
.ProcessLeftKey(e);
this
.GanttViewElement.TextViewElement.ColumnScroller.ScrollToItem(
this
.GanttViewElement.CurrentColumn,
true
);
return
result;
}
}