Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic disable drawing links (Read 1577 times)
Hamdy Ghanem
Full Member
***
Offline


I love YaBB 1G - SP1!

Posts: 110
Location: Egypt
Joined: Mar 11th, 2009
disable drawing links
May 11th, 2011 at 11:15am
Print Post  
How could i stop drawing links, I need just shaped designing without any links
  
Back to top
 
IP Logged
 
jagdipa
Junior Member
**
Offline


I love YaBB 1G - SP1!

Posts: 52
Joined: Jun 23rd, 2011
Re: disable drawing links
Reply #1 - Jul 21st, 2011 at 2:55pm
Print Post  
Not sure if this will work, but try this:

<ndiag:DiagramView
                           ID="DiagramView1"
                           runat="server"
                           ClientSideMode="JavaApplet"
                           LinkCreatingScript="onLinkCreating" />

       function onLinkCreating(sender, args)
       {
           //prevent link creating
           args.setCancel(true);
       }
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint