Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » Elevate Web Builder Technical Support » Support Forums » Elevate Web Builder General » View Thread |
Messages 1 to 3 of 3 total |
Error with hidden columns in V1.03 B2 |
Tue, Feb 4 2014 5:24 AM | Permanent Link |
Chris Holland SEC Solutions Ltd. Team Elevate | If I assign an empty dataset to a grid and there is a hidden column on
the grid I get an error in V1.03 build 2 (this worked fine in build 1) The error just says: NotFoundError Line 1 -- Chris Holland [Team Elevate] |
Tue, Feb 4 2014 5:53 AM | Permanent Link |
Chris Holland SEC Solutions Ltd. Team Elevate | I have got around this for the time being by altering the following code
in the WebDom unit in the framework: // Original code //================= procedure RemoveHTMLElement(Parent: THTMLElement; Element: THTMLElement); begin if Assigned(Parent) and Assigned(Element) and then Parent.removeChild(Element); end; // Modified code //================= procedure RemoveHTMLElement(Parent: THTMLElement; Element: THTMLElement); begin if Assigned(Parent) and Assigned(Element) and Assigned(Element.parentNode) then Parent.removeChild(Element); end; I added the "Assigned(Element.parentNode)" to the test before removing the Child. Chris Holland [Team Elevate] On 04/02/2014 10:24, Chris Holland wrote: > If I assign an empty dataset to a grid and there is a hidden column on > the grid I get an error in V1.03 build 2 (this worked fine in build 1) > > The error just says: > > NotFoundError > > Line 1 > |
Tue, Feb 4 2014 8:10 AM | Permanent Link |
Tim Young [Elevate Software] Elevate Software, Inc. timyoung@elevatesoft.com | Chris,
<< If I assign an empty dataset to a grid and there is a hidden column on the grid I get an error in V1.03 build 2 (this worked fine in build 1) >> This is the same issue as mentioned in the other thread and is fixed in B3 (coming out today). Tim Young Elevate Software www.elevatesoft.com |
This web page was last updated on Thursday, October 10, 2024 at 02:11 PM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |