I want to reduce size of HTML code, that is generated, for example, by GWT VerticalPanel. How can I do this? Thanks.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Widgets don’t generate HTML, they manipulate DOM elements. There’s nothing to minify.
If what bugs you is that
VerticalPaneluses a<table>then, well, don’t use aVerticalPanel. In many cases, aFlowPanelwill be enough.