[Dynapi-Help] Dynapi 3x error message question

2003-09-07 Thread mlist
What are these messages? I get a lot of them from mozilla 1.4 under linux. Error: [Exception... "'Permission denied to get property HTMLDivElement.parentNode' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "" data: no

Re: [Dynapi-Help] 3x api and text boxes - semi solved

2003-09-04 Thread mlist
My app is an editor for a complex dataset. Basically it presents a list box of choices, on selection of choices, a set of listboxes and user inputs pop into existance to the right, for the various sub choices that are available given that selection Since the available options are driven by the

Re: [Dynapi-Help] 3x api and text boxes - semi solved

2003-09-04 Thread mlist
I did some more checking. 1) all of the text boxes had the same element name 2) using getElm() on the HTMLTextBox, returned the same object [as by '=='] on all of the textbox's with the same name. 3) changing the names to be relatively unique, solved the problem. My list boxes just happened

Re: [Dynapi-Help] 3x api and text boxes

2003-09-04 Thread mlist
How do you wrap a GroupManger worth of HTML Components within a form? > Hi, > > See below: > > --- [EMAIL PROTECTED] wrote: > > > > I have an application that creates a number of > > HTMLTextBox components. > > > > I don't wrap them in a form, if I need to, I can > > change my > > applicati

Re: [Dynapi-Help] 3x api and text boxes

2003-09-04 Thread mlist
More info on my text box problem. BTW, I don't have it with HTMLListBoxes, amendments to them go to the correct list box. My app is pretty complex and I can't readily section this bit out at present. Anyway, I originally had my components in a template. I took them out because I add and remove t

[Dynapi-Help] 3x api and text boxes

2003-09-04 Thread mlist
I have an application that creates a number of HTMLTextBox components. I don't wrap them in a form, if I need to, I can change my application. My problem is that when the text is set from javascript, all sets go to the first created text box. Here is a bit of a log, including the name of the H

[Dynapi-Help] concept clarification about layers, parent or document reltive positioning

2003-09-02 Thread mlist
I have a composit object, made of about 12 different html components that I want to have a bounding box, this I set into another layer. I want the whole thing to be tied to that final layer and move with it etc. It seems that all layers, regardless of parentage are positioned against the dynapi.

[Dynapi-Help] Templates and NS4.7

2003-08-30 Thread mlist
Works as I expect in mozilla 1.4, ns6.2 and IE 6 and IE5 but not netscape 4.7 [win or linux]. Under ns47 I get a small bar about where I expect the template to draw. DIV.title { text.align: center; font-weight: bold; color: green } EM { text.align: center; font-weight: bol

[Dynapi-Help] dynapi3 & ns4.7 template crash

2003-08-14 Thread mlist
The attached file works fine under mozilla1.4 [linux] and ie6 [xp]. javascript crashes on NS4.7 in the generate call. Title: Netscape Crashing Page

[Dynapi-Help] Dynapi3 getContentWidth and Template

2003-08-14 Thread mlist
I have the following test case. What I want to do is determine the size of a template object after I fill in the field values. This needs to work, after the template has been added to the document. It doesn't appear to for some reason. Relevant code: the width value never changes even after I

Re: [Dynapi-Help] Dynapi3 getContentWidth and Template

2003-08-14 Thread mlist
I originally had my size check in the onload function. Then I moved it to the body as I miss-understood Raymond's response. This test file has the code back in the onload/init function per Raymond's last message. The behavior is the same. Title: GetWidth & GetContentWidth test page Simple

Re: [Dynapi-Help] Dynapi3 getContentWidth and Template

2003-08-14 Thread mlist
Okay, what is the correct way to do the following then: Have containers sized so that the entirety of their contents are visible. I have a template that I change the content of. I want the object it is in display the entire template contents. And so on up the tree of contai