…in our expression handle. CurrencyManager cm=e.GridNode.OwningCollection.NodeDataConnect.CurrencyManager; object ox=e.GridNode.ListItemWhenDataBound(); PropertyDescriptor pd=cm.GetItemProperties()[“SubTasks”]; RenderedList subnodes=pd.GetValue(ox) as RenderedList; e.GridNode.SubNodes_DataSourceList=subnodes; And according to recent testing it works. I have updated the download of the sample:… Continue reading →
…you would do it like this tn : IphDataEntity_Tree2; begin tn := theDataEntity.Row.TreeNode As IphDataEntity_Tree2; In VC++ you would do it like this: CphDataEntity_Tree2 treenode; treenode=CphDataEntity_Tree2(theDataEntity.GetRow().GetTreeNode()); …. Continue reading →
…as zooming and panoration is available in the Gantt_ASP. Developers can easily add more interaction by implementing events and changing the rendered html. You have seen this sample right? http://www.plexityhide.nu/… Continue reading →
…uses an older version; <OBJECT CLASSID = “clsid:5220cb21-c88d-11cf-b347-00aa00a28331”> <PARAM NAME=”LPKPath” VALUE=”phGantX.lpk”> </OBJECT> <OBJECT classid=”clsid:1A9D2E1D-63A4-11D3-9EC5-5C91AD000000″ codebase=”https://plexityhide.com/test/phGantXControl.cab#version=2.1.4.4“ width=850 height=400 align=center hspace=0 vspace=0 id=phGantX1… Continue reading →
…Views/Runtime Keys in th emain menu. Then Enter license key and choose GTP.NET product: Then Generate key. Copy the value you get. static void Main() { RuntimeKey.Check.Register(“GTPNETblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblur”, “GENERATEDKEYblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblurblur”); }… Continue reading →
…package for WPF. The components help you with time visualization and interaction. GTP.NET.SL contains a fully interactive Gantt chart and a fully interactive Schedule chart. GTP.NET.SL is runtime license free…. Continue reading →
…is a good example on how you can reuse the investment in a form showing // Gantt data on the web. Form1 aformwithaBindingGantt=new Form1(); this.gantt_ASPSettings2.WrapGantt(aformwithaBindingGantt.Gantt); aformwithaBindingGantt.Gantt.DateScaler.ScrollButtonsVisible=true; this.gantt_ASPSettings2.Gantt_ASP.RescalingButtonsVisible=true; this.gantt_ASPSettings2.Gantt_ASP.TreeExpandStatusInViewState=true; aformwithaBindingGantt.OpenDBEtc(); }… Continue reading →
…and the guide is not much. Answer Samples for VB ASP.NET is not present in the general download, thank you for pointing this mistake out. You can download them here: https://plexityhide.com/pub/SamplesWEB_Converted_VB.NET.zip… Continue reading →
…Is there any solution to avoid that ion being shown on Print Preview? Answer Thanks for reporting this bug. Assemblies with this bug fixed is available here: https://plexityhide.com/pub/PlexityHide.GTP.WEB.zip and https://plexityhide.com/pub/PlexityHide.GTP.CLR20.zip … Continue reading →
…is Int32) timeitemView.RowFilter=”ownedby=”+val.ToString(); else timeitemView.RowFilter=”ownedby=-1″; gr.Layers[0].NameInDS_Start=”start”; gr.Layers[0].NameInDS_Stop=”stop”; gr.Layers[0].DataSourceList=timeitemView; gr.Layers[0].TimeItemLayout=”NiceLook”; } And that is it. When you change the time items start or stop properties the dataset will be updated. When… Continue reading →