Announcement

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

    4.0 - DateItem Layout Issue

    hi,

    after updating to version 4.0, the font color of a disabled DateItem is black instead of grey.

    Here is the code for BuiltInDS is to understand the error.
    Code:
    	private void bindComponents(String dsName) {
    		DataSource ds = DataSource.get(dsName);
    		boundList.setDataSource(ds);
    		boundViewer.setDataSource(ds);
    
    		boundForm.setDataSource(ds);
    		
    	// Bug - 4.0 - DateItem Layout Issue - START
    		boundForm.setUseAllDataSourceFields(true);
    		FormItem formItem = new FormItem("nextShipment");
    		formItem.setDisabled(true);
    		boundForm.setFields(formItem);
    	// Bug - 4.0 - DateItem Layout Issue - END
    		
    		boundList.fetchData();
    		newBtn.enable();
    		saveBtn.disable();
    	}
    Please look at the two screenshots.

    i used: Isomorphic SmartClient/SmartGWT Framework (SNAPSHOT_v9.0d_2013-04-23/PowerEdition Deployment 2013-04-23)

    regards,
    mirko
    Attached Files

    #2
    Thanks for the notification. We've made a change to address this. Please try the next nightly build (Apr 26 2013) and let us know if you still see it.

    Regards
    Isomorphic Software

    Comment

    Working...
    X