Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(data-table): adding a column lock configuration to data table #454

Merged
merged 1 commit into from
Mar 10, 2022

Conversation

Vignesh-Manogar-E3433
Copy link
Contributor

@Vignesh-Manogar-E3433 Vignesh-Manogar-E3433 commented Mar 3, 2022

Feature in this PR:

Added lock column configuration.

Screenshot 2022-03-04 at 11 19 52 AM

<fw-data-table id="datatable-1" label="Data table 1" show-settings="true">
</fw-data-table>
<script type="application/javascript">
  var datatable1 = document.getElementById('datatable-1');
  datatable1.columns = [{
      "key": "name",
      "text": "Name",
      "lock": true
    }];
  datatable1.rows = [{
      "id": "0001",
      "name": "Alexander Goodman"
    }];
</script>

Checklist:

  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.
  • My commits have standard messages as mentioned in Contributing Guidelines

How Has This Been Tested?

Tested with Chrome browser.

@Vignesh-Manogar-E3433 Vignesh-Manogar-E3433 merged commit 9a1545a into canary Mar 10, 2022
@Vignesh-Manogar-E3433 Vignesh-Manogar-E3433 deleted the feat/data-table-16 branch March 10, 2022 04:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants