Page Index Toggle Pages: 1 ... 3 4 [5] 6  Send TopicPrint
Very Hot Topic (More than 25 Replies) how to start on web application with ajax. (Read 36530 times)
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #60 - Aug 17th, 2007 at 7:08am
Print Post  
Yes, that dll adds the ExpandBtnHyperLink property, and you must overwrite the old dll you have with the one from the zip.

Stoyan
  
Back to top
 
IP Logged
 
kirtesh
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 40
Joined: Jul 24th, 2007
Re: how to start on web application with ajax.
Reply #61 - Aug 17th, 2007 at 9:42am
Print Post  
Sir
1.thr is any alternate ...of loadtostring or savetostring..its taking too much time to load ...and to be saved, I m using session for saving and loading ...

2. Sir I have used yr dll ...in my project but until
its not showing that property of hyperlink.plz resend the link ..

thanks
kirtesh
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #62 - Aug 17th, 2007 at 11:55am
Print Post  
Copy the dll to the Netdiagram's installation folder, open your project, and use the "Update reference" command from the context menu displayed when you right lick netdiagram.dll in the solution explorer. Then compare the dates of the dll in the project's bin folder with the one from the zip to verify it's the same file.

If you keep the strings in the session, it should not take much time to save or load them. It will be slow if you transfer them to/from the browser, because the string might become hundreds of KB big for large diagrams.

Stoyan
  
Back to top
 
IP Logged
 
kirtesh
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 40
Joined: Jul 24th, 2007
Re: how to start on web application with ajax.
Reply #63 - Aug 18th, 2007 at 10:16am
Print Post  
Sir
yes , this is because lot of data is loaded everytime on flowchart...in every callback..I m
tracing the flowchart from starting...I m not using
DIrectly few HTML code added on every time to the previous data ...how I can Save the Data on  IMageMap and add only the Few small code.
I am Not lot Of aware with HTML.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #64 - Aug 20th, 2007 at 6:01am
Print Post  
To keep things fast, you might keep a FlowChart instance loaded all the time for each session, thus never calling SaveToString / LoadFromString. This should not require a lot of more memory for the application.

Stoyan
  
Back to top
 
IP Logged
 
kirtesh
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 40
Joined: Jul 24th, 2007
Re: how to start on web application with ajax.
Reply #65 - Aug 22nd, 2007 at 7:30am
Print Post  
Sir
Can It be possible to reduce the resolution of ImageGen.aspx...
it may give some faster speed then previous..
if can be done..hw it will be possible..

thanks
kirtesh
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #66 - Aug 22nd, 2007 at 10:40am
Print Post  
Try decreasing the FlowChart.ZoomFactor.

Stoyan
  
Back to top
 
IP Logged
 
kirtesh
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 40
Joined: Jul 24th, 2007
Re: how to start on web application with ajax.
Reply #67 - Aug 25th, 2007 at 3:55am
Print Post  
Sir,
I used flowchart1.fittodocobjects(1), but I also want to add scroll with it...I want to give scroll after fix width and height on aspx. page.
plz suggest.

thanks
kirtesh
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #68 - Aug 27th, 2007 at 8:55am
Print Post  
The DIV that contains the flowchart image has its "overflow" property set to "auto", so the scrollbars are added only when necessary. We'll have to add a new property if you need to make the scrollbars always visible.

Stoyan
  
Back to top
 
IP Logged
 
kirtesh
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 40
Joined: Jul 24th, 2007
Re: how to start on web application with ajax.
Reply #69 - Aug 31st, 2007 at 12:33pm
Print Post  
Sir
My arrow style is coming with reflection ..I want to
put remain only arrow..I dont need shedow...HW it
possible

kirtesh
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #70 - Aug 31st, 2007 at 1:09pm
Print Post  
Set the FlowChart.ShadowStyle to None to hide all shadows, or if you need to hide only the arrows' shadows, set their ShadowOffsetX/Y to 0.

Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #71 - Sep 6th, 2007 at 10:13am
Print Post  
Hi,

In case you still need that, this version of the control provides some limited support for client side events in ImageMap mode:

https://mindfusion.org/_temp/ndiag101.zip

You can use the following properties to attach event handlers:

ArrowClickedScript
ArrowDblClickedScript
ArrowMouseEnterScript
ArrowMouseLeaveScript
BoxClickedScript
BoxDblClickedScript
BoxMouseEnterScript
BoxMouseLeaveScript
TableClickedScript
TableDblClickedScript
TableMouseEnterScript
TableMouseLeaveScript

The handler functions prototypes should be the same as documented for the applet mode.

Stoyan
  
Back to top
 
IP Logged
 
kirtesh
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 40
Joined: Jul 24th, 2007
Re: how to start on web application with ajax.
Reply #72 - Sep 7th, 2007 at 9:31am
Print Post  
Sir
I m using fittodoc function with flowchart with scroll
by...div(overflow:auto)...but thr is no prob..in IE6
everything wrking fine..I hav used   FlowChart1.AutoScroll = false;
but
when I usev IE7  thr is prob...cming two scrolls ...
what may the problem.
hw to resolve it.

thanks
kirtesh
     
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: how to start on web application with ajax.
Reply #73 - Sep 7th, 2007 at 9:52am
Print Post  
Try to set the div's overflow attribute to "hidden" using JavaScript.

Stoyan
  
Back to top
 
IP Logged
 
kirtesh
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 40
Joined: Jul 24th, 2007
Re: how to start on web application with ajax.
Reply #74 - Sep 7th, 2007 at 10:36am
Print Post  
the scroll is cming with Imagegen.aspx.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 ... 3 4 [5] 6 
Send TopicPrint