Tuesday June 17, 2003
[Display Tag] Now we're talking...
We're starting to get some real activity over on the display tag library
project. I have to admit, I've done nothing - which is why it's even cooler that other folks are. Mathias
joined the team and went on a rampage squashing bugs and formatting code. Then along came a guy named Fabrizio (no blog) who re-wrote the whole thing ~ demo
. Even better - it's XHTML and CSS compliant.
There's even an editable table
prototype being looked at. John York (no blog) has also done a lot in re-writing the library, and has his own version that I'm hoping to post soon. Nice work gents!
Search This Site
Recent Entries
- Wine Tasting in Napa Valley
- How to build a Shot-Ski
- Bus Project Update
- Farewell to the 2011-2012 Ski Season
- Cruising around the Western Caribbean
- Spring Break!
- A Spectacular Trip to Stockholm and Madrid
- Comparing Web Frameworks and HTML5 with Play Scala at Jfokus 2012
- Play Framework 2.0 with Peter Hilton at Jfokus
- Secure JSON Services with Play Scala and SecureSocial
...This is what you meant to link to, right?
Posted by Paul Rivers on June 17, 2003 at 07:43 PM MDT #
Posted by Matt Raible on June 17, 2003 at 08:29 PM MDT #
Posted by Ramesh M on June 17, 2003 at 09:38 PM MDT #
This is a simple bug in demo (index.jsp) page. If you change the following line from
} else if (commit.equalsIgnoreCase("Delete")) {to
} else if (commit.equalsIgnoreCase("Delete") && test.size() > 0) {the above mentioned bug will be resolved. The JSP code (the scriplet at the top of index.jsp) is there for the demo purposes only. A seasoned developer would put such logic in a controller/model class and handle exceptions gracefully :-)
Tolga
Posted by Tolga on June 17, 2003 at 11:08 PM MDT #
Posted by Guus on June 18, 2003 at 03:22 AM MDT #
Posted by Vineet Bhatia on June 18, 2003 at 11:33 AM MDT #
Posted by Matt Raible on June 18, 2003 at 11:51 AM MDT #
Posted by Michael Baedorf on June 24, 2003 at 02:30 AM MDT #
Posted by Matt Raible on June 24, 2003 at 04:39 AM MDT #
Posted by Jason Meredith on June 24, 2003 at 04:41 AM MDT #
Make sure that commons-beanutils is in your class path (i.e. under WEB-INF/lib directory.
See http://sourceforge.net/forum/message.php?msg_id=2063408 for more details
Posted by Tolga on June 25, 2003 at 12:42 PM MDT #