Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Can't Type a space in the RichTextItem when it's in an Expansion Component

    SmartClient Version: v10.0p_2014-11-19/LGPL Development Only (built 2014-11-19)
    FireFox 24.7.0 ESR

    After expanding the row in the following code example, pressing the space bar does not result in a space being shown in the RichTextItem.

    Code:
    @Override
    	public void onModuleLoad() { 
            final ListGrid listGrid = new ListGrid() {  
                @Override  
                protected Canvas getExpansionComponent(final ListGridRecord record) {  
                	return new VLayout(4){{
    	            	DynamicForm form = new DynamicForm();
    					form.setFields(new RichTextItem("info"){{
    						setHeight(200);
    					}});
    					addMember(form);
                	}};
                }{
                	setCanExpandRecords(true);
                	setFields(new ListGridField("test", "Test"));
                	setData(new ListGridRecord(){{
                		setAttribute("test", "Row 1");
                	}});
                }
            };  
      
            listGrid.setWidth(600);  
            listGrid.setHeight(500);
            listGrid.draw();  
        }

    #2
    We see this and we're looking into the best way to address it - we'll update here when it's fixed

    Comment


      #3
      This has been fixed for builds dated December 10 and later.

      Comment

      Working...
      X