Sunday, August 28, 2011

A bug in the second MVP tutorial

The second MVP tutorial example produces an incorrect display. I believe that the line at the end of ContactsViewImpl<T>.setRowData( ) that reads
  contactsTable.setHTML(table.getInnerHTML());   

should read as follows.

  contactsTable.setHTML("<table>" + table.getInnerHTML() + "</table>");   

The problem is that getInnerHTML( ) gets the HTML inside the <table> ... </table> tags but does not return those tags themselves.

 
-- Russ 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment