nihad640 / smartgwt

Automatically exported from code.google.com/p/smartgwt
0 stars 0 forks source link

UI in listgrid checkbox not visible. #727

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Created listgrid and added into tab..

What is the expected output? What do you see instead?
Checkbox must be visible but its artly visible.

What version of the product are you using? On what operating system?
4 windowsxp all browsers

Please provide any additional information below.
please review the pic I have attached.
I have tried with resizing all the properties..
code
        user = new ListGrid();

        user.setWidth("20%");
        user.setStyleName("overlapping");
        user.setShowAllRecords(false);
        user.setSelectionType(SelectionStyle.NONE);
        user.setAlternateRecordStyles(true);
        user.setShowFilterEditor(true);
        user.setFilterOnKeypress(true);
        user.setAutoFetchData(true);
        ----------------------------------
        ListGridField selectedGroupLGF = new ListGridField();
        selectedGroupLGF.setType(ListGridFieldType.BOOLEAN);
        selectedGroupLGF.setCanEdit(true);
        selectedGroupLGF.setWidth("50%");
        selectedGroupLGF.setDefaultFilterValue(1);
        ListGridField groupNameLGF = new ListGridField(
                Policies.ADDNEWPOLICYAVAILAIBLEGROUPSNAMEID,
                LOCALIZATION.getGroupsListGridName());
        groupNameLGF.setWidth("50%");

        user.setFields(selectedGroupLGF, groupNameLGF);
        --------------------------------------
         configureGroupUserActionHLayout
                .addMember(user);
        --------------------------------------

Original issue reported on code.google.com by shilsola...@gmail.com on 8 Oct 2013 at 7:17

Attachments:

GoogleCodeExporter commented 9 years ago
No standalone testcase.

Version, skin, other required details omitted.

Issue appears to be due to your own CSS added styling as several artifacts are 
visible in your screenshot.  See FAQ.  Please do not post incomplete, bogus 
issues in the future - start by posting in the forums first.

Original comment by smartgwt...@gmail.com on 8 Oct 2013 at 4:33