0

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.

theduck
  • 2,589
  • 13
  • 17
  • 23

1 Answers1

0

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

MJBZA
  • 4,796
  • 8
  • 48
  • 97