Announcement

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

    List Grid Cell Wrapping alignment issue for IE 11 Browser

    Dear Ispmorphic,

    we are using smartgwt version 12.0 for client side Implementation and when we use Cell Wrapping behavior for list grid.
    In chrome browser after wrapping list grid cell contents are displaying correctly.but IE 11 browser some part of text became hidden.
    kindly let us know how can we resolve this issue.

    We are using below list grid properties :
    final ListGrid listGrid = new ListGrid() ;
    listGrid.setWidth(400);
    listGrid.setHeight(224);
    listGrid.setVirtualScrolling(false);
    listGrid.setShowRecordComponents(true);
    listGrid.setShowRecordComponentsByCell(true);
    listGrid.setCanRemoveRecords(true);

    listGrid.setMargin(10);
    listGrid.setLeaveScrollbarGap(false);
    listGrid.setWrapHeaderTitles(true);
    listGrid.setWrapCells(true);
    listGrid.setShowRollOver(false);
    listGrid.setShowFilterEditor(false);
    listGrid.setCanAutoFitFields(true);
    listGrid.setCanResizeFields(true);
    listGrid.setFixedRecordHeights(false);
    listGrid.setAllowFilterOperators(false);
    listGrid.setAutoFitHeaderHeights(true);
    listGrid.setAutoFitWidthApproach(AutoFitWidthApproach.BOTH);
    listGrid.setFetchDelay(500);
    listGrid.setWarnOnRemoval(true);
    listGrid.setShowRecordComponents(true);
    listGrid.setShowRecordComponentsByCell(true);
    listGrid.setVirtualScrolling(false);
    listGrid.setCanSelectAll(false);
    listGrid.setCellHeight(24);
    listGrid.setHeaderHeight(30);
    listGrid.setDrawAheadRatio(1.0f);
    listGrid.setCanFreezeFields(false);
    listGrid.setCanEdit(false);
    listGrid.setLeaveScrollbarGap(false);


    Thanks and Regards,
    your sincerely
    Attached Files
Working...
X