Can we make button left side freeze

Hi,

Can we make button on workbench to left side freeze similar to like check box.

plugins {
id ‘io.jmix’ version ‘3.0.0’
}

Hello,

Could you clarify, do you mean this button:

image

Or you have a button inside a DataGrid column? For grid columns there is a frozen="true" attribute.

Could you provide an XML descriptor of the view?

working on this have a button inside a DataGrid column? For grid columns there is a frozen="true" attribute.

 private void configureDataGridColumns() {
        // View Details Column
        userCheckerMakersDataGrid.addColumn(new ComponentRenderer<>(this::createViewButton))
                .setHeader("View Details").setFlexGrow(0);

        // Action Column
        userCheckerMakersDataGrid.addColumn(new ComponentRenderer<>(this::createActionButtons))
                .setHeader("Action").setFlexGrow(0);
    }

Button created via rendered i set frozen true then blank grid gor displayed

To freeze a column to the left side, the column should be first in the column list or next to another column with frozen="true". Otherwise, you see the behavior shown in your screenshot.