Hello,
we defined the Tile Layout for the Overview Page of Component PRD01OV.
There we embedded some custom table views. Everything is working fine.
Now our customer has the requirement that we should hide the Personalize Buttons for the Table Views.
I have tried it in the .htm page of the Table View. If I set the following code at first the buttons were shown two times. The personalizable and showPersonalizeButton Values are working for the second line.
<chtmlb:configCellerator downloadToExcel =
"TRUE"
iterator = "<%= AdditionalData %>"
editMode = "<%= lv_cellerator_editmode %>"
id = "ConfCellTable"
onRowSelection = "select"
personalizable = "FALSE"
showPersonalizeButton = "FALSE"
selectedRowIndex = "<%= AdditionalData->SELECTED_INDEX %>"
selectedRowIndexTable = "<%= AdditionalData->SELECTION_TAB %>"
selectionColumn = "<%= lv_cellerator_selectioncolumn %>"
selectionMode = "NONE"
table = "//AdditionalData/Table"
usage = "EditList"
visibleFirstRow = "<%= AdditionalData->VISIBLE_FIRST_ROW_INDEX %>"
visibleRowCount = "6"
width = "100%"
xml = "<%= controller->configuration_descr->get_config_data(
) %>" />
Then I have changed the usage from EditList to Assignmentblock so the buttons were only show one time.
<chtmlb:configCellerator downloadToExcel =
"TRUE"
iterator = "<%= AdditionalData %>"
editMode = "<%= lv_cellerator_editmode %>"
id = "ConfCellTable"
onRowSelection = "select"
personalizable = "FALSE"
showPersonalizeButton = "FALSE"
selectedRowIndex = "<%= AdditionalData->SELECTED_INDEX %>"
selectedRowIndexTable = "<%= AdditionalData->SELECTION_TAB %>"
selectionColumn = "<%= lv_cellerator_selectioncolumn %>"
selectionMode = "NONE"
table = "//AdditionalData/Table"
usage = "ASSIGNMENTBLOCK"
visibleFirstRow = "<%= AdditionalData->VISIBLE_FIRST_ROW_INDEX %>"
visibleRowCount = "6"
width = "100%"
xml = "<%= controller->configuration_descr->get_config_data(
) %>" />
Has anyone an idea how I can hide the Personalize Button? I believe that it has something to do with the tile layout.
Kind regards,
Anne