- Home
- Forum
- ASP.NET Web Forms (Classic)
- ControlNode
ControlNode
- Mar 19, 2012 07:59 PM UTC
- Aug 3, 2012 06:50 AM UTC
Hi!
I have created ASP.NET WebDiagram with group containing of nodes using the following code:
Syncfusion.Windows.Forms.Diagram.RoundRect rect = new Syncfusion.Windows.Forms.Diagram.RoundRect(150, 110, 120, 75, MeasureUnits.Pixel);
rect.FillStyle.Color = Color.LightGray;
Syncfusion.Windows.Forms.Diagram.Label lbl = new Syncfusion.Windows.Forms.Diagram.Label(rect, pos.Name);
lbl.FontStyle.Size = 8;
rect.Labels.Add(lbl);
Syncfusion.Windows.Forms.Diagram.Group grp = new Group();
grp.Name = pos.PositionId.ToString();
grp.AppendChild(rect);
System.Windows.Forms.CheckBox chx = new System.Windows.Forms.CheckBox();
chx.ForeColor = Color.Orange;
ControlNode ctrlnode = new ControlNode(chx, new RectangleF(6, 6, 18, 18));
ctrlnode.ActivateStyle = ActivateStyle.Click;
grp.AppendChild(ctrlnode);
this.DiagramWebControl1.Model.AppendChild(grp);
The question is why I'm not able to click this checkbox?
Cheers,
Peter M.
I have created ASP.NET WebDiagram with group containing of nodes using the following code:
Syncfusion.Windows.Forms.Diagram.RoundRect rect = new Syncfusion.Windows.Forms.Diagram.RoundRect(150, 110, 120, 75, MeasureUnits.Pixel);
rect.FillStyle.Color = Color.LightGray;
Syncfusion.Windows.Forms.Diagram.Label lbl = new Syncfusion.Windows.Forms.Diagram.Label(rect, pos.Name);
lbl.FontStyle.Size = 8;
rect.Labels.Add(lbl);
Syncfusion.Windows.Forms.Diagram.Group grp = new Group();
grp.Name = pos.PositionId.ToString();
grp.AppendChild(rect);
System.Windows.Forms.CheckBox chx = new System.Windows.Forms.CheckBox();
chx.ForeColor = Color.Orange;
ControlNode ctrlnode = new ControlNode(chx, new RectangleF(6, 6, 18, 18));
ctrlnode.ActivateStyle = ActivateStyle.Click;
grp.AppendChild(ctrlnode);
this.DiagramWebControl1.Model.AppendChild(grp);
The question is why I'm not able to click this checkbox?
Cheers,
Peter M.
SIGN IN To post a reply.
3 Replies
AA
Amsath Ali M
Syncfusion Team
March 21, 2012 03:48 AM UTC
Hi Peter,
Thanks for using Syncfusion products.
With regards to your query "Need to interact with the ASP.NET control hosted inside the ControlNode" is an already known feature and the feature has been implemented. For this, please create a DT incident for your query so that we can update the patch for this feature.
You can create the DT incident from the following link.
<http://www.syncfusion.com/account/dashboard>
In the interests of maintaining confidentiality, we have a policy of not sharing patches or otherwise proprietary customer specific information in the public Forum.
Please let us know if you have any queries.
Regards,
Amsath Ali. M
Thanks for using Syncfusion products.
With regards to your query "Need to interact with the ASP.NET control hosted inside the ControlNode" is an already known feature and the feature has been implemented. For this, please create a DT incident for your query so that we can update the patch for this feature.
You can create the DT incident from the following link.
<http://www.syncfusion.com/account/dashboard>
In the interests of maintaining confidentiality, we have a policy of not sharing patches or otherwise proprietary customer specific information in the public Forum.
Please let us know if you have any queries.
Regards,
Amsath Ali. M
IS
Ildar Sadykov
July 25, 2012 09:39 PM UTC
Should everybody file a ticket or will you share a secret of clicking a checkbox?
PM
Pandi Murugan A
Syncfusion Team
August 3, 2012 06:50 AM UTC
Hi Sadykov,
Thanks for using Syncfusion products.
We usually address the customer queries and provide the
solution in the Forum if they are looking for a solution to their requirements.
We will not provide a fix/patch in the Forum if the customer reported a defect/feature.
In such case, the customer has to open a support ticket for getting fix/patch
for the reported defect/feature.
Since you have created a support incident “97210” for your
requirement, please refer that incident for better follow up.
Please let me know if any concerns.
Regards,
Pandi Murugan A
SIGN IN To post a reply.
- 3 Replies
- 4 Participants
-
PI Piotr
- Mar 19, 2012 07:59 PM UTC
- Aug 3, 2012 06:50 AM UTC