From: <no...@so...> - 2001-01-21 20:26:17
|
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 decided to call it a bug. I have my table widget in it I create cells. All the cells are fine, there properties are set to the right ones but the actual elements aren't. I have checked this by using breakpoints with InterDev. If anyone wants the code email me. For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129602&group_id=5757 |
From: <no...@so...> - 2001-01-26 01:38:02
|
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: Works For Me Bug Group: None Priority: 5 Submitted by: eytanh Assigned to : nobody Summary: Dynlayers methods dont effect elements Details: Now I have decided to call it a bug. I have my table widget in it I create cells. All the cells are fine, there properties are set to the right ones but the actual elements aren't. I have checked this by using breakpoints with InterDev. If anyone wants the code email me. Follow-Ups: Date: 2001-Jan-25 17:38 By: rainwater Comment: Not sure this is a bug with the DynAPI. Please be a bit more specific. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129602&group_id=5757 |
From: <no...@so...> - 2001-02-10 06:51:51
|
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: Closed Resolution: Works For Me Bug Group: None Priority: 5 Submitted by: eytanh Assigned to : nobody Summary: Dynlayers methods dont effect elements Details: Now I have decided to call it a bug. I have my table widget in it I create cells. All the cells are fine, there properties are set to the right ones but the actual elements aren't. I have checked this by using breakpoints with InterDev. If anyone wants the code email me. Follow-Ups: Date: 2001-Jan-25 17:38 By: rainwater Comment: Not sure this is a bug with the DynAPI. Please be a bit more specific. ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129602&group_id=5757 |
From: Robert R. <rra...@ya...> - 2001-01-21 20:43:24
|
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": > 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 decided to call it a bug. > I have my table widget in it I create cells. All the cells are fine, there > properties are set to the right ones but the actual elements aren't. I have > checked this by using breakpoints with InterDev. > If anyone wants the code email me. > For detailed info, follow this link: > http://sourceforge.net/bugs/?func=detailbug&bug_id=129602&group_id=5757 > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://lists.sourceforge.net/lists/listinfo/dynapi-dev ---------------------- DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ DynAPI Homepage: http://dynapi.sourceforge.net/ |
From: Eytan H. <ey...@tr...> - 2001-01-21 21:11:37
Attachments:
table.zip
|
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. |
From: Robert R. <rra...@ya...> - 2001-01-21 21:46:33
|
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/2001, 4:09:42 PM EST, Eytan wrote about "[Dynapi-Dev] [Bug #129602] DynLayer methods don't effect elements": > 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. ---------------------- DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ DynAPI Homepage: http://dynapi.sourceforge.net/ |
From: Eytan H. <ey...@tr...> - 2001-01-22 10:01:25
|
I've added those lines and it still doesn't help. 8an |
From: Robert R. <rra...@ya...> - 2001-01-21 21:47:16
|
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 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. ---------------------- DynAPI Snapshots: http://dynapi.sourceforge.net/snapshot/ DynAPI Homepage: http://dynapi.sourceforge.net/ |