0
votes

I am using a SmartTable. SAP UI5 library version is 1.52.15

My requirement is, I need to disable row selection (entire row including checkbox) of the SmartTable based on some row status when loading value from ODATA (model).

I am writing the code in "dataReceived" event of the smart table .

But not sure which method will disable the entire row.

1
Welcome to stack exchange! Whar did you try so far, and how did it fail?Bex

1 Answers

0
votes

You need to define an internal table, something like the this official example.

As soon as you defined the internal table, then you can play with <Table> to disable the entire row you need to define a mode for the interior table.

<Table mode="None" ...>

More example also can be found here