Page Index Toggle Pages: 1 ... 5 6 [7] 8 9 ... 21 Send TopicPrint
Locked Topic Link between two nodes (Read 157387 times)
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #90 - Jun 13th, 2014 at 10:05am
 
Quote:
In decision layout problem in links, some are long and some are short


We honestly don't see anything wrong with some links being longer. If a loop link returns to the beginning of a 7-8 transitions long sequence of shorter links, the loop link obviously must be much longer.

Quote:
and link head is not proper


If you mean some links ending with triangles and other ones with arrowheads as in my last screenshot, it's up to you to select the shape by setting HeadShape property.

Quote:
also text shuffling is not solved.


We've discussed that before, try using LinkLabels to show texts near the beginning of links and it should be clear what link they belong to. In ImageMap mode you could also try ordinary Text with TextStyle = Rotate or Follow. We'll try to port these options to JavaScript for next release.

Quote:
Longer U-bends issue is still not resolved in your latest version.


They have been shortened, compare my last screenshot with the one from post #28: http://mindfusion.eu/_samples/dl.png
  
Back to top
 
IP Logged
 
shrinivas
Full Member
***
Offline


I Love MindFusion!

Posts: 169
Joined: May 21st, 2014
Re: Link between two nodes
Reply #91 - Jun 13th, 2014 at 1:27pm
 
I am using TextStyle = Rotate or Follow but still is shuffled and Your not getting what exactly I mean see the links in attached diagram, Link betwwen VID-D-MESSAGE =' ' to VID-D-FKEYS ='F3=Exit F4=Change F12=Cancel' is very small in length which not appropriate.

see the arrow in red square which is not proper.
  

FC_TEMP.jpg (Attachment deleted)
Vidp3x-processRentalMap_001.pdf (Attachment deleted)
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #92 - Jun 13th, 2014 at 4:47pm
 
Quote:
I am using TextStyle = Rotate or Follow but still is shuffled


They are not supported in Canvas mode (ClientSideMode property) at this time, try switching to ImageMap or use LinkLabels.

Quote:
and Your not getting what exactly I mean see the links in attached diagram, Link betwwen VID-D-MESSAGE =' ' to VID-D-FKEYS ='F3=Exit F4=Change F12=Cancel' is very small in length which not appropriate.


Increase the node distance by setting larger HorizontalPadding and VerticalPadding property values of DecisionLayout, then the arrowheads should fit. Or if you prefer the shorter node distance, then set smaller DiagramLink.HeadShapeSize.

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
shrinivas
Full Member
***
Offline


I Love MindFusion!

Posts: 169
Joined: May 21st, 2014
Re: Link between two nodes
Reply #93 - Jun 17th, 2014 at 12:44pm
 
I am getting following error while displaying flowchart on asp page.

Sys.ArgumentException: Cannot deserialize. The data does not correspond to valid JSON

XML is properly loaded in diagram control but after that pointer moves outside the function and then occurs above error.

Can u tell me any best way to solve these kind of errors?.

I have attached XML file please check and let me know if any wrong in that.

Thank You.


  

IN0310-addModeStandardPromptingSequence100.txt (Attachment deleted)
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #94 - Jun 17th, 2014 at 1:26pm
 
Are you using Canvas mode now? The diagram loads correctly in the browser from my test project. Could you copy the json string value shown by browser's debugger and attach it here? You should be able to access it from the 'json' argument of Diagram.fromJson function in the call-stack.
  
Back to top
 
IP Logged
 
shrinivas
Full Member
***
Offline


I Love MindFusion!

Posts: 169
Joined: May 21st, 2014
Re: Link between two nodes
Reply #95 - Jun 18th, 2014 at 4:53am
 
Yes I am using Canvas mode,

JSON argument value :

function Sys$UI$Control$get_element() {
        /// <value domElement="true" locid="P:J#Sys.UI.Control.element"></value>
        if (arguments.length !== 0) throw Error.parameterCount();
        return this._element;
    }
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #96 - Jun 18th, 2014 at 4:53am
 
If you are seeing this problem only with large diagrams, check if there isn't some small value set for maxRequestLength in web.config. The diagram control uses a hidden field to transfer the json data as in this post:
http://stackoverflow.com/questions/15641311/is-there-any-limit-to-hidden-field-l...
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #97 - Jun 18th, 2014 at 5:31am
 
Quote:
JSON argument value :

function Sys$UI$Control$get_element() {
        /// <value domElement="true" locid="P:J#Sys.UI.Control.element"></value>
        if (arguments.length !== 0) throw Error.parameterCount();
        return this._element;
    }


That doesn't look plausible. You should see a Diagram.fromJson function in the callstack window when the exception is thrown. If you double click on it and add its argument to the watch window, what value does it show there? In the minified script the argument will be called something like A actually, here's what I'm seeing if I call fromJson manually with a bogus string and the IEs debugger stops on throw:
  

Untitled1.png ( 44 KB | 106 Downloads )
Untitled1.png
Untitled2.png ( 40 KB | 225 Downloads )
Untitled2.png
Back to top
 
IP Logged
 
shrinivas
Full Member
***
Offline


I Love MindFusion!

Posts: 169
Joined: May 21st, 2014
Re: Link between two nodes
Reply #98 - Jun 18th, 2014 at 6:10am
 
Please check attachment.
  

Exception.jpg (Attachment deleted)
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #99 - Jun 18th, 2014 at 6:18am
 
Ok, and what's the data argument value at that point?
  
Back to top
 
IP Logged
 
shrinivas
Full Member
***
Offline


I Love MindFusion!

Posts: 169
Joined: May 21st, 2014
Re: Link between two nodes
Reply #100 - Jun 18th, 2014 at 7:52am
 
{"id":"DiagramView1","width":{"IsEmpty":false,"Type":1,"Value":1150},"height":{"
IsEmpty":false,"Type":1,"Value":550},"diagramBounds":{"x":-10,"y":-10,"width":57
2,"height":1622},"enabled":true,"measureUnit":6,"allowInplaceEdit":false,"items"
:[{"__type":"MindFusion.Diagramming.ShapeNode","zIndex":0,"tag":null,"selected":false,"visible":true,"id":"1","ignoreLayout":false,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":1,"brush":{"type":"SolidBrush","color":"#FFCC00"},"pen":null,"textColor":null,"shadowColor":null,"font":null,"style":null,"instanceId":0,"bounds":{"x":12,"y":12,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoingLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"Business Rule IF1000","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"
rotateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNod
e","zIndex":0,"tag":null,"selected":false,"visible":true,"id":"2","ignoreLayout"
:false,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffse
tY":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":nul
l,"shadowColor":null,"font":null,"style":null,"instanceId":1,"bounds":{"x":12,"y
":32,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPatter
n":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgo
ingLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"TRUE =1","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rota
teText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode","
zIndex":0,"tag":null,"selected":false,"visible":true,"id":"3","ignoreLayout":fal
se,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":
1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,"s
hadowColor":null,"font":null,"style":null,"instanceId":2,"bounds":{"x":12,"y":52
,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern":n
ull,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoingL
inks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"FALSE =0","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rota
teText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode","
zIndex":0,"tag":null,"selected":false,"visible":true,"id":"4","ignoreLayout":fal
se,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":
1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,"s
hadowColor":null,"font":null,"style":null,"instanceId":3,"bounds":{"x":12,"y":72
,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern":n
ull,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoingL
inks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"OTHERWISE =TRUE","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"r
otateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode
","zIndex":0,"tag":null,"selected":false,"visible":true,"id":"5","ignoreLayout":
false,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffset
Y":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null
,"shadowColor":null,"font":null,"style":null,"instanceId":4,"bounds":{"x":12,"y"
:92,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern
":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoi
ngLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"MAYBE =2","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rota
teText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode","
zIndex":0,"tag":null,"selected":false,"visible":true,"id":"6","ignoreLayout":fal
se,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":
1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,"s
hadowColor":null,"font":null,"style":null,"instanceId":5,"bounds":{"x":12,"y":11
2,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern":
null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoing
Links":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"ASK =3","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rota
teText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode","
zIndex":0,"tag":null,"selected":false,"visible":true,"id":"7","ignoreLayout":fal
se,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":
1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,"s
hadowColor":null,"font":null,"style":null,"instanceId":6,"bounds":{"x":12,"y":13
2,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern":
null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoing
Links":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"AM =AM","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rot
ateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode",
"zIndex":0,"tag":null,"selected":false,"visible":true,"id":"8","ignoreLayout":fa
lse,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY"
:1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,"
shadowColor":null,"font":null,"style":null,"instanceId":7,"bounds":{"x":12,"y":1
52,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern"
:null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoin
gLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"VM =VM","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rot
ateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode",
"zIndex":0,"tag":null,"selected":false,"visible":true,"id":"9","ignoreLayout":fa
lse,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY"
:1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,"
shadowColor":null,"font":null,"style":null,"instanceId":8,"bounds":{"x":12,"y":1
72,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern"
:null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoin
gLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"SM =SM","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rot
ateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode",
"zIndex":0,"tag":null,"selected":false,"visible":true,"id":"10","ignoreLayout":f
alse,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY
":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,
"shadowColor":null,"font":null,"style":null,"instanceId":9,"bounds":{"x":12,"y":
192,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPattern
":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoi
ngLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"CR =CHAR ( 13)","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rot
ateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode",
"zIndex":0,"tag":null,"selected":false,"visible":true,"id":"12","ignoreLayout":f
alse,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY
":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,
"shadowColor":null,"font":null,"style":null,"instanceId":10,"bounds":{"x":12,"y"
:212,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPatter
n":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgo
ingLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"LF =CHAR ( 10)","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rot
ateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode",
"zIndex":0,"tag":null,"selected":false,"visible":true,"id":"14","ignoreLayout":f
alse,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY
":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,
"shadowColor":null,"font":null,"style":null,"instanceId":11,"bounds":{"x":12,"y"
:232,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPatter
n":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgo
ingLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"MEG =1000000","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1
,"rotateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeN
ode","zIndex":0,"tag":null,"selected":false,"visible":true,"id":"15","ignoreLayo
ut":false,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOf
fsetY":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":
null,"shadowColor":null,"font":null,"style":null,"instanceId":12,"bounds":{"x":1
2,"y":252,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorP
attern":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allow
OutgoingLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"Set prompt character equal to "" \r\n ","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rotate
Text":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode","zI
ndex":0,"tag":null,"selected":false,"visible":true,"id":"16","ignoreLayout":fals
e,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":1
,"brush":{"type":"SolidBrush","color":"#33CCCC"},"pen":null,"textColor":null,"sh
adowColor":null,"font":null,"style":null,"instanceId":13,"bounds":{"x":12,"y":27
2,"width":80,"height":90},"enabledHandles":511,"handlesStyle":1,"anchorPattern":
null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoing
Links":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Decision","imageLocation":"","text":"Open DATASET  "INTERFACE" \r\n  to file variable  For_Flat_File_Dumps_of_Interface_Data_Coming_in \r\n ?\r\n","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"r
otateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode
","zIndex":0,"tag":null,"selected":false,"visible":true,"id":"18","ignoreLayout"
:false,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffse
tY":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":nul
l,"shadowColor":null,"font":null,"style":null,"instanceId":14,"bounds":{"x":12,"
y":377,"width":80,"height":20},"enabledHandles":511,"handlesStyle":1,"anchorPatt
ern":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOut
goingLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"Display Message of "CANNOT \r\n OPEN INTERFACE FILE!"  to \r\n console","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,
"rotateText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNo
de","zIndex":0,"tag":null,"selected":false,"visible":true,"id":"19","ignoreLayou
t":false,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOff
setY":1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":n
ull,"shadowColor":null,"font":null,"style":null,"instanceId":15,"bounds":{"x":12
,"y":412,"width":80,"height":10},"enabledHandles":511,"handlesStyle":1,"anchorPa
ttern":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowO
utgoingLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"Stop processing and exit program \r\n  ","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rotate
Text":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode","zI
ndex":0,"tag":null,"selected":false,"visible":true,"id":"20","ignoreLayout":fals
e,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":1
,"brush":{"type":"SolidBrush","color":"#33CCCC"},"pen":null,"textColor":null,"sh
adowColor":null,"font":null,"style":null,"instanceId":16,"bounds":{"x":102,"y":2
87,"width":80,"height":60},"enabledHandles":511,"handlesStyle":1,"anchorPattern"
:null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoin
gLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Decision","imageLocation":"","text":"Open DATASET  "SC.FLE" \r\n  to file variable  System_Control_File \r\n ?","textAlignment":1,"lineAlignment":1,"transparent":false,"imageAlign":1,"rotat
eText":false,"rotateImage":true},{"__type":"MindFusion.Diagramming.ShapeNode","z
Index":0,"tag":null,"selected":false,"visible":true,"id":"22","ignoreLayout":fal
se,"locked":false,"tooltip":"","hyperLink":"","shadowOffsetX":1,"shadowOffsetY":
1,"brush":{"type":"SolidBrush","color":"#00CCFF"},"pen":null,"textColor":null,"s
hadowColor":null,"font":null,"style":null,"instanceId":17,"bounds":{"x":102,"y":
377,"width":80,"height":20},"enabledHandles":511,"handlesStyle":1,"anchorPattern
":null,"expanded":true,"expandable":false,"allowIncomingLinks":true,"allowOutgoi
ngLinks":true,"obstacle":true,"rotationAngle":0,"effects":[],"shape":"Rectangle","imageLocation":"","text":"Display Message
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #101 - Jun 18th, 2014 at 8:17am
 
The Json seems cut at the Display Message... text of some node. There is no such text in the IN0310-addModeStandardPromptingSequence100 XML you attached last, please attach the XML for this diagram, or post the full text of that node.
  
Back to top
 
IP Logged
 
shrinivas
Full Member
***
Offline


I Love MindFusion!

Posts: 169
Joined: May 21st, 2014
Re: Link between two nodes
Reply #102 - Jun 18th, 2014 at 8:37am
 
Okay.
I have attached both files i.e XML and data file.
  

Data.txt (Attachment deleted)
IF1000-if1000.TXT (Attachment deleted)
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Link between two nodes
Reply #103 - Jun 18th, 2014 at 10:48am
 
It seems to happen because of the &amp;quot; values in texts. MS.Ajax 4 loads it successfully even with them, but older 3.5 version throws the Sys.ArgumentException, so our guess is that was a Json serialization bug in older versions of the Ajax library. Anyway if you want to display quotes in node texts, replace all &amp;quot; instances in the XML with just &quot; and then it will work with both v3.5 and 4 of MS.Ajax.
  
Back to top
 
IP Logged
 
shrinivas
Full Member
***
Offline


I Love MindFusion!

Posts: 169
Joined: May 21st, 2014
Re: Link between two nodes
Reply #104 - Jun 18th, 2014 at 12:37pm
 
I have added Ajax 4.0 versions DLL still same problem.

Can u send me link from which I can download Ajax 4.0 DLL.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 ... 5 6 [7] 8 9 ... 21
Send TopicPrint