How to disable(prevent from selecting) a row, depending on value of a column in the table???

How to disable(prevent from selecting) a row, depending on value of a column in the table???

Shashidhar.nkShashidhar.nk Posts: 21Questions: 5Answers: 0

Hi,

I ve a DataTable, one of the columns in the table is 'status'(binary) column. Depending on the this column value, i need to disable the row. How do i do that?? Help me

thanks & regards,
-SHASHIDHAR

Answers

  • allanallan Posts: 61,667Questions: 1Answers: 10,096 Site admin

    To remove a row based on its content, you need to use a search.

    Allan

  • Shashidhar.nkShashidhar.nk Posts: 21Questions: 5Answers: 0

    I need not remove the row, but instead i need to disable from selecting or clicking as same as disabled button.

  • allanallan Posts: 61,667Questions: 1Answers: 10,096 Site admin

    You can use the user-select event to disable user selection for certain rows.

    Allan

This discussion has been closed.