Search the web
Sign In
New User? Sign Up
jsolait
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 59 - 88 of 411   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
59
The following function is within a class in a module. Is it possible to return "oNewMenu" from the function or to make "oNewMenu" a class property? If so,...
orchidsonline
Offline Send Email
Feb 4, 2005
2:38 am
60
Hello Dave, ... you can not return oNewMenu from the function because oNewMenu gets set asynchronously "long after" the function returns. You can though make...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 5, 2005
6:22 pm
61
I used the "var oSelf = this;" option and it works great! Unless it is easy to impliment the "bound" method improvement I tend to think that it isn't worth the...
Richard D. Spencer
orchidsonline
Offline Send Email
Feb 7, 2005
8:26 pm
62
Here is the code ( the part that I don't understand what's happening) which deals the class inheritence... //GLOBAL var oNodeManager = null; oNodeManager = new...
Richard D. Spencer
orchidsonline
Offline Send Email
Feb 8, 2005
10:17 pm
63
Works fine when I try the code !? To test it I placed both modules in an SVG file and ran it. The code: Module("svgManager", "0.2", function(mod){ ...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 9, 2005
1:01 pm
64
I made a dumb mistake: I put the alert inside a callback function! So the "var oSelf = this;" solved the problem. With egg on my face, Dave ... supr){ ... ...
Richard D. Spencer
orchidsonline
Offline Send Email
Feb 9, 2005
5:38 pm
65
Does jsolait fully support UTF-8? For example would it support sending data like this? The example chat program throws an error when this string is received. ...
Matthew Knapp
mdknapp
Online Now Send Email
Feb 17, 2005
1:59 am
66
Hello. Great work on the library! I have a small question though. When I create a new class using Class all private variables are static: mod.TestClass =...
Slava
slava1st
Offline Send Email
Feb 17, 2005
6:29 am
67
... TestClass ... Actually public variables are static as well. This pretty much imposes single object at a time for the class limit, or the objects of the...
Slava
slava1st
Offline Send Email
Feb 17, 2005
6:39 am
68
... It should handle it correctly. But I can see the problem. I have to see what is causing the problems. Maybe it's the server side. Jan...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 17, 2005
3:09 pm
69
... I would say no, but that is not 100% correct. It depends how you access it. if you use this.publVar = ... (or from the outside obj.publVar) then it is a...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 17, 2005
3:25 pm
70
I attempted to perform the test cases for the HTML chat using Safari for both JSON-RPC and XML-RPC. In both cases I received error conditons. Is Safari not...
Matthew Knapp
mdknapp
Online Now Send Email
Feb 17, 2005
3:31 pm
71
... Yes and no. It could be possibe to create a function similar to "supr" which would access private properties and methods but to be honest it would not be...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 17, 2005
3:36 pm
72
Safari has/had a bug in the XMLHttpRequest-object which sends a null at the end of each request to the server. I think they have fixed it now and jsolait...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 17, 2005
3:41 pm
73
Thank you for the link! I tried visiting it with the offending browser and it claims: "Your browser PASSED the JSON-RPC test." The user agent string for the...
Matthew Knapp
mdknapp
Online Now Send Email
Feb 17, 2005
3:55 pm
74
Thanks for the tips. They were really helpful. It makes me wonder though what are real advantages of using Class provided by JSOLait vs. using standard JScript...
Slava
slava1st
Offline Send Email
Feb 17, 2005
4:11 pm
75
... Interesting, I assume there is something wrong with my site then. It might have to do with the dynamic loading of modules in jsolait. I fixed the page not...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 17, 2005
4:35 pm
76
I am getting the same problems ... refferenced ... I cleared the browser cache and restarted Safari trying the following links: ...
Matthew Knapp
mdknapp
Online Now Send Email
Feb 17, 2005
5:15 pm
77
... Subclassing/prototyping is internally pretty much the same as in normal JS. jsolait just takes care of some tasks that are unnessisary to write again and...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 17, 2005
5:49 pm
78
This is strange and I feel a bit lost. The ModuleImportFailed error only occurs if jsolait tries to load a module file that is not already refferenced in the...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 17, 2005
7:24 pm
79
... send ... it ... as an ... I took a look at another project (www.jpspan.net) and looked at how they solved a Safari issue they had with the latest release....
Matthew Knapp
mdknapp
Online Now Send Email
Feb 17, 2005
10:41 pm
80
... it ... Well, there's always another way - to fall back to the old JScript OO, although it will make the code to look somewhat uglier. The idea is to...
Slava
slava1st
Offline Send Email
Feb 18, 2005
3:25 am
81
Module("baseManager", "0.3.7", function(mod) { mod.BaseMan=Class(function(publ) { var sNS = null; publ.getNS = function(){ return sNS; }; var setNS =...
Richard D. Spencer
orchidsonline
Offline Send Email
Feb 18, 2005
3:30 am
82
... I fixed the xmlrpc.py module: http://jan.kollhof.net/projects/xmlrpc/xmlrpcpy/index.xhtml on the server. I had someone try it out with safari and it seems...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 18, 2005
1:55 pm
83
... setNS must be a public method(publ.setNS()) or a public module method(mod.setNS()). Jan...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 18, 2005
2:00 pm
84
... Scopes are lovely things! ... You gotta make sure that all subclasses call the init method. Also, just having the class you cannot inspect what properties...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 18, 2005
2:06 pm
85
Thanks for your reply. After thinking about it a bit more it doesn't matter if the function is public in the superclass because the superclass will not be...
Richard D. Spencer
orchidsonline
Offline Send Email
Feb 18, 2005
4:54 pm
86
... refferenced I tried out the JSON-RPC Html Chat again in Safari and the import failed messages still occur. For reference the link I am trying is: ...
Matthew Knapp
mdknapp
Online Now Send Email
Feb 18, 2005
9:09 pm
87
Hi, 1. I have rewritten the json-rpc module. It is pretty much the same as the xmlrpc one. Almost the same interfaces only the encoding of the data differs. I...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 25, 2005
6:58 pm
88
Should this fix the JSON-RPC issue Safari had earlier (see errors below)? Unfortunatley I don't have access to my Safari testbed today so I can't verify it.......
Matthew Knapp
mdknapp
Online Now Send Email
Feb 25, 2005
9:38 pm
Messages 59 - 88 of 411   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help