cancel
Showing results for 
Search instead for 
Did you mean: 

Coulmns in result view are not resizable

Former Member
0 Kudos

Hi,

I have an unsual issue for resizing the column width. In result view for search, column widths are not resizable. Hence I can not resize them.

Is there any special code do be written in to htm for resizing the column width?

Current code written into Resultview.htm is as :

 

<thtmlb:grid cellSpacing = "1"
             columnSize  = "1"
             height      = "100%"
             rowSize     = "1"
             width       = "100%" >
  <thtmlb:gridCell columnIndex = "1"
                   colSpan     = "1"
                   rowIndex    = "1" >
    <chtmlb:tableExtension tableId = "Table"
                           layout  = "FIXED" >
      <chtmlb:configTable id                         = "ResultTable"
                          navigationMode                = "BYPAGE"
                          table                                 = "//RESULTAREA/Table"
                          onRowSelection              = "select"
                          visibleRowCount              = "12"
                          selectedRowIndex           = "<%= resultarea->SELECTED_INDEX %>"
                          selectedRowIndexTable  = "<%= resultarea->SELECTION_TAB %>"
                          selectionMode                 = "<%= resultarea->SELECTION_MODE %>"
                          width                               = "100%" />
    </chtmlb:tableExtension>
  </thtmlb:gridCell>
</thtmlb:grid>

Thanks,

Madhura

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Resolved Issue.

Following code is added....


<chtmlb:tableExtension tableId = "ResultList"
                       layout  = "FIXED" >
  <chtmlb:configTable xml                   = "<%= lv_xml %>"
                      id                    = "ResTable"
                      navigationMode        = "BYPAGE"
                      onRowSelection        = "select"
                      table                 = "//Result/Table"
                      width                 = "100%"
                      headerVisible         = "TRUE"
                      visibleRowCount       = "<%= lv_lines %>"
                      fillUpEmptyRows       = "FALSE"
                      *tableLayout           = "FIXED"*
                      scrollable            = "TRUE"
                      *forceScrollable       = "TRUE"*
                      selectionMode         = "<%= Result->SELECTION_MODE %>"
                      selectedRowIndex      = "<%= Result->SELECTED_INDEX %>"
                      selectedRowIndexTable = "<%= Result->SELECTION_TAB %>"
                      downloadToExcel       = "TRUE"
                      showNoMatchText       = "FALSE" />
</chtmlb:tableExtension>

Thanks,

Madhura