10898 : I want to click/doubleclick on an empty spot in the chart to create a new item in Gantt_ASP.

…e.ThisClickSelectedLink==null)     {         DataRow dr=dataSet1.Tables[“timeitem”].NewRow();         dr[“owner”]=(e.Row.GridNode.ListItemWhenDataBound() as DataRowView)[“id”];         dr[“start”]=aGantt.Gantt.DateScaler.PixelToTime(e.X);         dr[“stop”]=aGantt.Gantt.DateScaler.PixelToTime(e.X).AddDays(2);         dataSet1.Tables[“timeitem”].Rows.Add(dr);     }     LabelClickInfo.Text=”You clicked GanttRow with id “+((e.Row.GridNode.ListItemWhenDataBound() as DataRowView)[“id”]).ToString();   } This… Continue reading

10791 : Databound links with different types

Question Question:Using code:< ?xml:namespace prefix = o ns = “urn:schemas-microsoft-com:office:office” /> {   gantt1.TimeItemLinks.NameInDS_StartKey=”start”;   gantt1.TimeItemLinks.NameInDS_TargetKey=”target”;   gantt1.TimeItemLinks.DataSource=currentProject.WorkLinks; } loads the relationships… however type relationship is used one and one,… Continue reading

10974 : I’d like to use OnTimeItem_Hoover at GTP.WEB VB but its not available yet?

…use to pass Time item unique data. Initiate the UserString by implementing this new event: void Gantt_ASP1_OnTimeItemUserStringPrepare(PlexityHide.GTP.WEB.Gantt_ASP aGantt, PlexityHide.GTP.WEB.TimeItemUserStringPrepareArgs e) {   e.result=“This time item starts at “+e.ti.Start.ToLongDateString(); }    … Continue reading

10385 : Id like to develop a Multi-Language ASP.NET – app with gtp.net. The Multi-Language Texts are stored in a Database.

…month names and you can set your own culture like this: // Culture settings     private void comboBoxCulture_SelectedIndexChanged(object sender, System.EventArgs e)     {       if (comboBoxCulture.SelectedIndex>-1)       {         dateScaler1.CultureInfoDateTimeFormat=new… Continue reading