Re: Tapestry 5.5 beta and Java Modularity

2020-10-03 Thread Charles Roth
Thank you! On 10/3/2020 4:29 PM, Thiago H. de Paula Figueiredo wrote: Hello, Charles! TAP5-2641 is taking care of fixing the split packages problem, plus setting automatic module names for all the Tapestry JARs ("org.apache.tapestry" + project name, except for tapestry5-annotations, which will

Re: Tapestry 5.5 beta and Java Modularity

2020-10-03 Thread Thiago H. de Paula Figueiredo
Hello, Charles! TAP5-2641 is taking care of fixing the split packages problem, plus setting automatic module names for all the Tapestry JARs ("org.apache.tapestry" + project name, except for tapestry5-annotations, which will be org.apache.tapestry-annotations'). Lots of classes needed to be moved

Re: Open Discussion: remove Bootstrap from T5 core

2020-10-03 Thread Thiago H. de Paula Figueiredo
Hello, everyone! I know this thread is a bit old already, but Tapestry 5.5.0 can be used without Bootstrap at all: https://tapestry.apache.org/release-notes-550.html , https://tapestry.apache.org/css.html, @ImportModule(NoBootstrapModule.class). In addition, there's a number of configuration

Re: How to Show a Div using Javascript

2020-10-03 Thread Thiago H. de Paula Figueiredo
Hello! @Inject private JavaScriptSuport javaScriptSupport; void beginRender() { javaScriptSupport.addScript("document.getElementById("div1").style.display = '';"); } On Sat, Oct 3, 2020 at 10:06 AM marwa hussein wrote: > Hello all, > I am new to Tapestry and to Web development in general but

How to Show a Div using Javascript

2020-10-03 Thread marwa hussein
Hello all, I am new to Tapestry and to Web development in general but I have to implement a simple web application for my research. I use a div that when loading the page I need to hide it, so I use this line: The div contains "inside it" a grid that will contain some elements after a "load"