10872 : If I a timeitem by clicking it how can i the coresponding row in the grid?

…grid? Answer Implement OnTimeItem_SelectionChanged and go like this:     private void gantt1_OnTimeItem_SelectionChanged(PlexityHide.GTP.Gantt aGantt, PlexityHide.GTP.TimeItemEventArgs e)     {       if (e.TimeItem.Selected)       {                 gantt1.Grid.GridStructure.ClearSelections();         gantt1.Grid.GridStructure.FocusedCell=e.TimeItem.GanttRow.GridNode.GetCell(0);       }     }… Continue reading

10463 : tooltips in Gantt_ASP

…by using the property above 2.       Gantt_ASP1.OnTimeItemUserStringPrepare   So if you implement just like this:   Gantt_ASP.ClientSideJavaScript_TimeItemInit = “aImgElement.title=aClientTimeItem.UserString;\r\n”;     void Gantt_ASP1_OnTimeItemUserStringPrepare(PlexityHide.GTP.WEB.Gantt_ASP aGantt, PlexityHide.GTP.WEB.TimeItemUserStringPrepareArgs e)   {     e.result=”This… Continue reading

10478 : I was wondering if there is a way too have the gantt row associated with the grid item highlight when its grid item is selected?

…frame on the gantt row that is owned by the focused grid node… private void gantt1_OnTimeItemAreaPaintBackground(PlexityHide.GTP.OffscreenDraw aOffscreenDraw, PlexityHide.GTP.OffscreenDrawArgs e) { if (gantt1.Grid.GridStructure.FocusedCell!=null ) { Rectangle r=Gantt.GanttRowFromGridNode(gantt1.Grid.GridStructure.FocusedCell.Node).Rect(); e.G.DrawRectangle(new Pen(Color.Red,3),r); } }… Continue reading