[Dynapi-Dev] RE-intro (apologies for earlier empty message)

2003-09-16 Thread Jacob Levy
Hi I'm new here (but not new to JavaScript), I've been lurking here for a week or so, and I'm very impressed with DynAPI 3.0, especially the new widgets in the nightly snapshots. Just awesome. And the editor. And IOS. So much cool stuff. Let me tell you a bit about my plans, how I hope to use Dyn

[Dynapi-Dev] Where are the server-side implementations for SODA?

2003-09-17 Thread Jacob Levy
Stupid question -- I got the latest nightly snapshot and searched for the various server-side implementations, couldn't find anything. Can someone provide a pointer for that? Thanks! --JYL --- This sf.net email is sponsored by:ThinkGeek Welc

[Dynapi-Dev] Templates

2003-09-17 Thread Jacob Levy
OK, so templates are like mega-widgets, grouping together a bunch of DynAPI widgets. Cool, and very impressive example with the calendar. Is it possible to update the template after its set? That is, let's say I get another template from the server and then do tmpl.setHTML(newHTML), will that upda

Re: [Dynapi-Dev] Templates

2003-09-17 Thread Jacob Levy
destroys those children that will no longer be needed. --JYL > --- Jacob Levy <[EMAIL PROTECTED]> wrote: > >> Is it possible to update the template after its set? > > Yes > >> That is, let's say I >> get another template from the server and then do >> tmp

Re: [Dynapi-Dev] Templates

2003-09-17 Thread Jacob Levy
That seems water-tight as far as memory mgmt goes, right? --JYL > --- Jacob Levy <[EMAIL PROTECTED]> wrote: >> Is there a way to find out what named javascript >> objects a template will >> need? > > I think such a feature would be useful. I think I can > add so

Re: [Dynapi-Dev] LayoutManager

2003-09-22 Thread Jacob Levy
Well, the next thing you'll want would be to react to when one of the layers moves, you want to move the other ones in concert, and when they are hidden, the Z-order changes, and so on. Sounds like a window manager to me, before too long :) --JYL > Hi! > > I had a big problem and that was i had 3

RE: [Dynapi-Dev] LayoutManager

2003-09-23 Thread Jacob Levy
voke a redraw of the layer positions. > > Regards > Daniel > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Jacob Levy > Sent: den 22 september 2003 16:48 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: [Dyna

Re: [Dynapi-Dev] SODA php prort

2003-10-08 Thread Jacob Levy
If I wanted to do a Tcl port (for tclhttpd), which implementation should I look at as a template? Which language binding is the most complete? Thanks! --JYL > The SODA PHP version isn't complete, it's about 2/3 translated code. > ;-) Have you got access to your web server's error log files? I kn

RE: [Dynapi-Dev] Layers and text

2003-10-10 Thread Jacob Levy
Daniel With IE 6.0 on WinXP, the left rectangle changes color and the text stays visible when I move the mouse, and the right rectangle changes color but the text becomes invisible (hidden?) after the first mouse move. Is that the intended behavior? --JYL > Hi Michael! > > Check out http://www.

RE: [Dynapi-Dev] Layers and text

2003-10-10 Thread Jacob Levy
Daniel (On my work computer, Win98, IE5.5) All three squares now respond to the mouseover events and the text stays visible. I think you mean its a temporary fix because it flashes a lot (A LOT) and is ugly :) --JYL > Hi! > > Did you buy a "klippan"-sofa? =) > > Well.. Can you check the example

RE: [Dynapi-Dev] Layers and text

2003-10-13 Thread Jacob Levy
Raymond This is easy to fix, then. All you have to do is to make the default background image a 1x1 GIF, for every layer. So if the user does not add content or provide her own background image, the layer will still be able to get events. I don't have the code ready to show how to do this but it

Re: [Dynapi-Dev] Dragging and Text Selecting

2003-10-13 Thread Jacob Levy
Yes, very good. --JYL > Hi, > > I think we can use this solution along with > setTextSelectable() to prevent text and images from > being selected during a drag, agree? > > for example: > > var l = new DynLayer('',0,0,100,100,'yellow'); > l.setDragEnabled(true); > // user can drag layer but text

[Dynapi-Dev] browser history and RPC

2003-10-27 Thread Jacob Levy
I'm trying to learn how to write a SODA server side for Tcl, and in the process got JSRS up and running (http://www.ashleyit.com/rs/jsrs/test.htm) with tclhttpd as a smaller milestone. You can see my meager effort here: http://mod3.net:/jsrs22/test.htm I noticed that even though I use location

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Jacob Levy
t; -Original Message- >> > > > From: [EMAIL PROTECTED] >> > > > [mailto:[EMAIL PROTECTED] >> > On >> > > > Behalf Of Raymond >> > > > Irving >> > > > Sent: den 29 oktober 2003 15:16 >> > > > T

Re: [Dynapi-Dev] browser history and RPC

2003-10-29 Thread Jacob Levy
ent from > clicking the back button. > > -- > Raymond Irving > > --- Jacob Levy <[EMAIL PROTECTED]> wrote: >> Ah, and have that sent to the server side as a >> hidden element, so that the >> server can generate the "history.go(1)"... >> Convolu