Cheers,
Ivan
> --
> You received this message because you are subscribed to the Google Groups "jsTree" group.
> To post to this group, send email to jst...@googlegroups.com.
> To unsubscribe from this group, send email to jstree+un...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/jstree?hl=en.
>
>
Cheers,
Ivan
On 18 Юни, 11:05, Cranial Entropy <cranial.entropy.b...@gmail.com>
wrote:
I have the same problem with ASP Net. I tried to debug a little bit
into js and I have the feeling that it is a bug. I got the string
returned by my method in asp net in debug mode and I went to json
verifier on web and it was valid. However the java script it says is
not. Also the example from the download using the json file is not
loading either. Ivan please check the download maybe something is
missing or not latest.
Best Regards
> > > Ivan- Hide quoted text -
>
> - Show quoted text -
Cheers,
Ivan
On 21 Юни, 18:01, Coriollis <mihail.milit...@gmail.com> wrote:
> Hello Guys,
>
> I have the same problem with ASP Net. I tried to debug a little bit
> into js and I have the feeling that it is a bug. I got the string
> returned by my method in asp net in debug mode and I went to json
> verpeifier on web and it was valid. However the java script it says is
"success": function(retval) {
if (retval.hasOwnProperty('d')) {
return (retval.d);
}
}
or modify it like this:
"success": function(retval) {
if (retval.hasOwnProperty('d')) {
return (retval.d);
}
return retval;
}
Cheers,
Ivan
I will put up a sample project online when I get some time and send
you the link. I also tried changing the success function to this:
"success" : function(retval) {
if (retval.hasOwnProperty('d')){
return (retval.d);
}
return retval;
}
but it is still not working.
Kindest regards,
Ivan
<ScriptMethod(ResponseFormat:=ResponseFormat.Json)> _
<WebMethod()> _