Subversion Repository Public Repository

litesoft

Diff Revisions 151 vs 712 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/datatables/AbstractAccordionDetailView.java

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3
4 4 import org.litesoft.GWT.client.*;
5 5 import org.litesoft.core.util.*;
6 + import org.litesoft.core.util.HTMLConstants;
6 7
7 8 import com.google.gwt.user.client.ui.*;
8 9
  @@ -43,7 +44,7 @@
43 44
44 45 protected void setHtml( String pID, Object pValue )
45 46 {
46 - mImpl.getElementById( id( pID ) ).setInnerHTML( (pValue != null) ? pValue.toString() : " " );
47 + mImpl.getElementById( id( pID ) ).setInnerHTML( (pValue != null) ? pValue.toString() : HTMLConstants.NBSP );
47 48 }
48 49
49 50 protected String table( String... pTRs )
  @@ -110,7 +111,7 @@
110 111 zPart = getUptoBreakAt( pText, pMaxCharsPerLength );
111 112 if ( zPart.length() == 0 )
112 113 {
113 - sb.append( " " );
114 + sb.append( HTMLConstants.NBSP );
114 115 }
115 116 else
116 117 {