0 Replies Latest reply on Oct 22, 2010 7:25 AM by sornasirahu

    <rich:simpleTogglePanel> displays with scrollbars in IE

    sornasirahu

      Hi people,

       

      I have some <rich:simpleTogglePanel> in my application. It displays fine in FireFox. Whereas the same gets displayed with vertical and horizontal scrollbars in IE. How to get rid of that?

       

      My code snippet as follows:

       

      <rich:simpleTogglePanel
                                      switchType="client" id="accountDashboardcontactListsPanel"
                                      label="Account Lists">
                                      <table width="100%">
                                          <tr align="right" valign="top">
                                              <td colspan="3" align="right" valign="top"
                                                  id="accountDashboardtopButtonsColumn"><a4j:region
                                                  id="accountsDashboardOrganizeListView">
                                                  <a4j:commandButton ajaxSingle="true"
                                                      styleClass="btnBlue" value="Organize My List" style="align:right;"
                                                      id="accountDashboardorganizeMyListButton"
                                                      action="#{backing_accountDashboard.organise_myList}"
                                                      rendered="#{userConfiguration.userPrivilegeMap.CRM_MANAGE_ACCOUNTS == '1'}">
                                                      <a4j:status onstart="showLoadingInfoWindow();"
                                                          onstop="hideLoadingInfoWindow()"
                                                          for="accountsDashboardOrganizeListView" />
                                                  </a4j:commandButton>
                                              </a4j:region> <a4j:region id="accountsDashboardSearchView">
                                                  <a4j:commandButton ajaxSingle="true" reRender="mainwindow"
                                                      styleClass="btnBlue" value="Search" style="align:right;"
                                                      id="accountDashboardnewSearchList"
                                                      action="#{backing_accountDashboard.account_advancedSeach}"
                                                      rendered="#{userConfiguration.userPrivilegeMap.CRM_VIEW_ACCOUNTS == '1'}">
                                                      <a4j:status onstart="showLoadingInfoWindow();"
                                                          onstop="hideLoadingInfoWindow()"
                                                          for="accountsDashboardSearchView" />
                                                  </a4j:commandButton>
                                              </a4j:region></td>
                                          </tr>
                                          <tr>
                                              <td align="left"> </td>
                                          </tr>
                                          <tr>
                                              <td align="left"><rich:dataList
                                                  value="#{backing_accountDashboard.savedSearchList}"
                                                  type="disc" var="searchResult"
                                                  id="accountDashboardsearchList">
                                                  <a4j:region id="accountsDashboardSearchListView">
                                                      <a4j:commandLink value="#{searchResult.searchName}"
                                                          ajaxSingle="true" reRender="mainwindow"
                                                          action="#{backing_accountDashboard.accountsSavedSearch}">
                                                          <f:setPropertyActionListener value="#{searchResult}"
                                                              target="#{backing_accountDashboard.selectedSearch}" />
                                                          <a4j:status onstart="showLoadingInfoWindow();"
                                                              onstop="hideLoadingInfoWindow()"
                                                              for="accountsDashboardSearchListView" />
                                                      </a4j:commandLink>
                                                  </a4j:region>
                                                  <!--<p style="line-height: 3px;"> </p>-->
                                              </rich:dataList></td>
                                          </tr>
                                      </table>
                                  </rich:simpleTogglePanel>

       

      Please help me out in this.

       

      Thanks in advance,

      Sorna.K