B4J Question [BANano] [SOLVED] Table created purely with the abstract designer is not loaded?

Mashiane

Expert
Licensed User
Longtime User
Ola

I'm attempting to create a table via the abstract designer, for some reason I cant seem to make it work. Only the <table></table> element is loaded and not the header or the body.

The header has columns added and the body also just a single row. Here is the design..

tabledesign.png


The browser does not show it and further looks only..

tableoutput.png


Source code of the project is attached.

Thanks
 

Attachments

  • TableLayout.zip
    20.5 KB · Views: 204

alwaysbusy

Expert
Licensed User
Longtime User
This is a nasty bug in the underlying Umbrella JS library where appending tags of the type thead, tbody and tfoot failed. Reason is the javascript createDocumentFragment() method does not support table tags and one has to write a workaround for it. So I did and this will work in the next version of BANano.

Alwaysbusy
 
Last edited:
Upvote 0
Top