[Dynapi-Dev] To all; Re drag events. (and other events)

2001-01-21 Thread Doug Melvin
I have seen a lot of question latly which should be cleared up with the following.   I found that when dragging my toolbar on a slower machine that eveerything got VERY choppy.   So I applied and old Visual Basic fix and everything smothed out.   The premis of the fix is that an event can be

Re: [Dynapi-Dev] Oversight

2001-01-21 Thread Richard Bennett
Hi, This was another amazing job, both of you, I'll add it to every example on my site with the next release, and have it called from a link instead of my DynAPIDiagnose. A few points: you probably know dumping the secondary values from the hyperlinks doesn't work yet. Is it possible to ge

Re: [Dynapi-Dev] Weird Error

2001-01-21 Thread labCoat
First of all, I would like to say that I am back from hiding :-) -- I know that I have been out of the loop for a while and have not been able to keep up with what is going on too much, but after looking over the newest (CVS) release, and reading 987,345,276,765,575 emails :-), I think that I

Re[2]: [Dynapi-Dev] [Bug #129602] DynLayer methods don't effect elements

2001-01-21 Thread Robert Rainwater
The first thing that I noticed was that you failed to call the DynLayer constructor. You need this: function Table(rows,cols){ this.DynLayer = DynLayer this.DynLayer() This is essential for correct subclassing (the prototype setting is not enough). -- // Robert Rainwater On 1/21/

Re[2]: [Dynapi-Dev] [Bug #129602] DynLayer methods don't effect elements

2001-01-21 Thread Robert Rainwater
Also, I forgot to add that Table is a reserved word, so you may have some namespace problems. You may want to rename it to something like DynTable. -- // Robert Rainwater On 1/21/2001, 4:09:42 PM EST, Eytan wrote about "[Dynapi-Dev] [Bug #129602] DynLayer methods don't effect elements": > I

RE: [Dynapi-Dev] [Bug #129602] DynLayer methods don't effect elements

2001-01-21 Thread Eytan Heidingsfeld
I am using the correct methods. For an explicit example please refer to the attached files. You must add the table.js file to your gui folder and put the testtable.htm file in one folder inside the root. table.zip

Re: [Dynapi-Dev] [Bug #129602] Dynlayers methods dont effect elements

2001-01-21 Thread Robert Rainwater
Could you be more specific. I have no way of testing this without any details. Are you using dynlayer methods to set the properties? For example: mylayer.x = 4 // does not do anything You must use the correct methods. -- // Robert Rainwater On 1/21/2001, 3:26:28 PM EST, noreply wrote about

[Dynapi-Dev] [Bug #129602] Dynlayers methods dont effect elements

2001-01-21 Thread noreply
Bug #129602, was updated on 2001-Jan-21 12:26 Here is a current snapshot of the bug. Project: DynAPI 2 Category: Core API Status: Open Resolution: None Bug Group: None Priority: 5 Submitted by: eytanh Assigned to : nobody Summary: Dynlayers methods dont effect elements Details: Now I have decide

[Dynapi-Dev] Refreshing And Tables

2001-01-21 Thread Eytan Heidingsfeld
Hi, I'm improving my table to include borders. Slight problem although the properties point to the right settings (thanx Pascal for oversight, amazing job) the layers aren't physically in the right place! 8an ___ Dynapi-Dev mailing list [EMAIL PROTECT

RE: [Dynapi-Dev] 2 Questions

2001-01-21 Thread Pascal Bestebroer
1). I think we do, the modifier keys are in the mouse event set to the mouse event object.. this means they can be used from within that event listener, and no need to also attach a key event. 2) I have no clue.. never seen this method, and don't know who added it.. I think the normal 'ondelete'

[Dynapi-Dev] 2 Questions

2001-01-21 Thread Robert Rainwater
1) Why the need to set the modifier keys in events.js (alt, ctrl, shift)? Can't this be removed since we have the keylistener events? 2) DynLayer.flagDeleteChildren loops through all the children. But it doesn't ever do anything. Is this suppose to invoke a "delete" event? -- // Robert Rai

Re: [Dynapi-Dev] Weird Error

2001-01-21 Thread Robert Rainwater
If you get the alert about a layer already existing in the document, then it means the layer has already been added to the document and you are attempting to add it again. Most likely, you tried to add the same layer as a child of two different layers. Not sure about about the elm, just make su

[Dynapi-Dev] Weird Error

2001-01-21 Thread Eytan Heidingsfeld
Hi, I've been working on something both at home and at work. I brought these files home and suddenly get these errors JSDynlayer0 is already in DynDocument you must remove it first and also elm.all is undefined. What is going on?? ___ Dynapi-Dev mailin

[Dynapi-Dev] Oversight

2001-01-21 Thread Pascal Bestebroer
Played "abit" with Martin Ström 's console code, and got some nice ideas on how to enhance it. See the attached result. Unzip this package into a sub directory of your DynAPI code (eg. into the src/ directory), and add the following two lines to your code for some great debuggin tools: D

Re: [Dynapi-Dev] Updated CVS - API Docs - Release?

2001-01-21 Thread Michael Pemberton
I've got a suggestion for the code before it gets released. It is not bug related, but it does bug me that it is there. I find no reason for the ?true:false component in many of the evaluations in the API (eg. events.js). There is no need to evaluate the condition and then select true or false

Re: [Dynapi-Dev] Table Widget

2001-01-21 Thread Michael Pemberton
This uses my custom cell object to create the individual cells.  You could possibly alter it to use the DynLayer.  Just email me if you have any questions. Eytan Heidingsfeld wrote: Does anybody have a working table widget. I need it ASAP!!8an -- Michael Pemberton [EMAIL PROTECTED] ICQ: 1210701

[Dynapi-Dev] bareBone table

2001-01-21 Thread Eytan Heidingsfeld
Since no one had one up his sleave I wrote a quick basic table. Included. If anyone wants to add all the fancy bits be my guests. table.zip

[Dynapi-Dev] Table Widget

2001-01-21 Thread Eytan Heidingsfeld
Does anybody have a working table widget. I need it ASAP!! 8an