Skip to content

Add functionality to disable a table row programmatically #3260

@shivam-2002

Description

@shivam-2002

Current Scenario

There is currently no direct method available to disable a table row.

To disable a row, developers must:

  1. Retrieve the row data
  2. Typecast it to TableRow
  3. Manually set the disabled property

This approach is not intuitive and adds unnecessary complexity for a common use case.


Proposed Solution

Add a method to the Table class that allows developers to disable a specific row by providing its index.

For example:

disableRow(index: number);

This would:

  • Improve developer experience
  • Reduce the need for manual typecasting
  • Provide a cleaner and more maintainable API

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions