Re: [Dynapi-Dev] Using datasource on NS4 Windows!

2003-04-03 Thread Raymond Irving
Hi, The attached file contains the fix for this problem. I can't see why we can't do a elm.src='about:blank' with ns4. Does ns4 have cross-domain scripting security enabled? PS. These change are _not_ yet in cvs. -- Raymond Irving --- Kevin <[EMAIL PROTECTED]> wrote: > > Re: Using datasource

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Raymond Irving
--- Doug Melvin <[EMAIL PROTECTED]> wrote: > Before we go and implement this in the DynLayer_*.js > files.. > has anyone done a serious performance test? > I am talking about 100+layers each with multiply > nested children. > I just want to ensure that we are not shooting > ourselves in the foot i

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Doug Melvin
Before we go and implement this in the DynLayer_*.js files.. has anyone done a serious performance test? I am talking about 100+layers each with multiply nested children. I just want to ensure that we are not shooting ourselves in the foot is all.. So far DynAPI 3x is indeed faster to load, and has

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Dan Willemsen
On Thu, 2003-04-03 at 20:46, Raymond Irving wrote: > See my comments below: > > --- Kevin <[EMAIL PROTECTED]> wrote: > > How about true and 'cascade'. I was thinking for > > divs: > > > style="." > or > > > class="..." > > > the second idea above would give useful css cascade

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Dan Willemsen
On Thu, 2003-04-03 at 21:01, Raymond Irving wrote: > --- Benoit Marchant <[EMAIL PROTECTED]> wrote: > > > lyr.setClass('',true) should do the trick. > > > > I would rather pass the layer's id. So if you pass > > the layer's ID as > > the style name, then you don't have to add class="" > > in the

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Raymond Irving
--- Benoit Marchant <[EMAIL PROTECTED]> wrote: > > lyr.setClass('',true) should do the trick. > > I would rather pass the layer's id. So if you pass > the layer's ID as > the style name, then you don't have to add class="" > in the div tag to > get it applied, and in that case noInlineStyle is

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Raymond Irving
See my comments below: --- Kevin <[EMAIL PROTECTED]> wrote: > How about true and 'cascade'. I was thinking for > divs: > style="." > or > class="..." > > the second idea above would give useful css cascade. > I can't think of any use for the first one? I think both examples

Re: [Dynapi-Dev] Creating inline dynlayers in

2003-04-03 Thread Dan Willemsen
On Thu, 2003-04-03 at 10:26, Kevin wrote: > See comments below. > > "Benoit Marchant" <[EMAIL PROTECTED]> wrote: > > Hi > > > > I have a case where I have a onload on > a dynlayer. This avoid me to calculate the size of the image server > > side. As I'm trying to move this to use inline layers,

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Benoit Marchant
See bellow On Thursday, April 3, 2003, at 03:33 PM, Raymond Irving wrote: --- Benoit Marchant <[EMAIL PROTECTED]> wrote: Hi In a test I've been doing, I used not a class="", but I declare a style in a for each of the layers using their ID like #layer1 {position:absolute; width: } .blueBg {b

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Dan Willemsen
See below On Thu, 2003-04-03 at 17:36, Kevin wrote: > See my comments below: > > "Raymond Irving" <[EMAIL PROTECTED]> wrote: > > Sounds ok to me, but how about the following: > > > > lyr.setClass(name,noPreStyle); > > > > When noPreStyle is set to true the api will completely > > remove the sty

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Kevin
See my comments below: "Benoit Marchant" <[EMAIL PROTECTED]> wrote: > Hi > > In a test I've been doing, I used not a class="", but I declare a style > in a for each of the layers using their ID > like > > > #layer1 {position:absolute; width: } > .blueBg {background-color:blue;} > > > an

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Kevin
See my comments below: "Raymond Irving" <[EMAIL PROTECTED]> wrote: > Sounds ok to me, but how about the following: > > lyr.setClass(name,noPreStyle); > > When noPreStyle is set to true the api will completely > remove the style="..." string from and will > ignore bgcolor, width, height, left, t

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Raymond Irving
--- Benoit Marchant <[EMAIL PROTECTED]> wrote: > Hi > > In a test I've been doing, I used not a class="", > but I declare a style > in a for each of the layers using > their ID > like > > > #layer1 {position:absolute; width: } > .blueBg {background-color:blue;} > > > and Some html >

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Benoit Marchant
Hi In a test I've been doing, I used not a class="", but I declare a style in a for each of the layers using their ID like #layer1 {position:absolute; width: } .blueBg {background-color:blue;} and Some html As far as I understand it class is meant to control the style of multiple obje

Re: [Dynapi-Dev] Using datasource on NS4 Windows!

2003-04-03 Thread Kevin
Re: Using datasource on NS4 Windows. "Raymond Irving" <[EMAIL PROTECTED]> wrote: > > Is this on mac or windows? > > -- > Raymond Irving > > --- Kevin <[EMAIL PROTECTED]> wrote: > > Hello everyone, > > > > Using the basic datasource example: > > dynapi.util.datasource.html > > i.e no soda or s

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Raymond Irving
Sounds ok to me, but how about the following: lyr.setClass(name,noPreStyle); When noPreStyle is set to true the api will completely remove the style="..." string from and will ignore bgcolor, width, height, left, top, etc for and . The end result is that layers will be created much faster. lyr

Re: [Dynapi-Dev] Using datasource on NS4 Windows!

2003-04-03 Thread Raymond Irving
Is this on mac or windows? -- Raymond Irving --- Kevin <[EMAIL PROTECTED]> wrote: > Hello everyone, > > Using the basic datasource example: > dynapi.util.datasource.html > i.e no soda or sync I get the following alert error > on connecting > to the datasource "Alert! did not find a converter >

Re: [Dynapi-Dev] Relative DynLayers

2003-04-03 Thread Raymond Irving
--- Kevin <[EMAIL PROTECTED]> wrote: > > "Raymond Irving" <[EMAIL PROTECTED]> wrote: > > > Many thanks for the feedback. I've implemented the > > tag as suggested and it worked great. > > I saw the idea in dynapi2. Though I'm not > sure if it's 'inflow' code worked. > > > Please see the att

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Kevin
See my comments below: "Benoit Marchant" <[EMAIL PROTECTED]> wrote: > On Thursday, April 3, 2003, at 10:42 AM, Doug Melvin wrote: > > > A point: if you include style= in an element in netscape, > > netscape has a tendance to crash. > Plus on the Mac, all the layout is screwed up, and that does

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Benoit Marchant
On Thursday, April 3, 2003, at 10:42 AM, Doug Melvin wrote: A point: if you include style= in an element in netscape, netscape has a tendance to crash. Plus on the Mac, all the layout is screwed up, and that doesn't happens if you declare a style #name that match the div's ID. Using class= and

Re: [Dynapi-Dev] Creating inline dynlayers in

2003-04-03 Thread Kevin
See comments below. "Benoit Marchant" <[EMAIL PROTECTED]> wrote: > Hi > > I have a case where I have a onload on a dynlayer. This avoid me to calculate the size of the image server > side. As I'm trying to move this to use inline layers, when that loads, the onload does > DynObject.all.myLaye

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Doug Melvin
A point: if you include style= in an element in netscape, netscape has a tendance to crash. Using class= and Using a class object woul dbe better.. I.E. inserting style object in the document. I don't know if this can be done dynamically, but I sure a hell hope so. - Original Message - F

Re: [Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Benoit Marchant
I agree, we need this. The main benefit of having a style object that could be used either as a class or a style from a css point of view, is that it provides a way to change the properties of that style object at anytime, which would then propagate these changes to all dynlayers using it. Ben

[Dynapi-Dev] DynLayer style sheet class.

2003-04-03 Thread Kevin
Hello, I've heard Raymond may be doing something in the area of dynapi style objects? Sorry if I've got the wrong idea. Could we have a simple starting point by just passing a class name to the DynLayer constructor or e.g. lyr.setClass('note'). The string 'class="note"' would be inserted in the

[Dynapi-Dev] Using datasource on NS4 Windows!

2003-04-03 Thread Kevin
Hello everyone, Using the basic datasource example: dynapi.util.datasource.html i.e no soda or sync I get the following alert error on connecting to the datasource "Alert! did not find a converter or decoder." I am a bit puzzled as the message doesn't seen to come from the dynapi3x. It shouldn't b

Re: [Dynapi-Dev] Relative DynLayers

2003-04-03 Thread Kevin
"Raymond Irving" <[EMAIL PROTECTED]> wrote: > Many thanks for the feedback. I've implemented the > tag as suggested and it worked great. I saw the idea in dynapi2. Though I'm not sure if it's 'inflow' code worked. > Please see the attached file for the updates to > dynlayer_ns4.js I've foun

Re: [Dynapi-Dev] ibook application in JSP

2003-04-03 Thread Raymond Irving
Hi Ramesh, Please see below: --- Ramesh Pallikara <[EMAIL PROTECTED]> wrote: > hi, > > i've seen a nice ibook example posted by Raymond as > a zip file. > i am trying to get that example working with JSP > instead of ASP. > but i haven't worked with asp, so i would like to > know which files > i

[Dynapi-Dev] ibook application in JSP

2003-04-03 Thread Ramesh Pallikara
hi, i've seen a nice ibook example posted by Raymond as a zip file. i am trying to get that example working with JSP instead of ASP. but i haven't worked with asp, so i would like to know which files i will have to look into and make changes to get that example working. any ideas?? regardz ram