agentsclimarketplace

Dynamic javascript table with sorted data and event listeners

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/dynamic-javascript-table-with-sorted-data-and-event-listeners

Generates a dynamic HTML table where data objects are sorted by a header array. Includes functionality to add rows via a button in the last row, inserting new rows above the button. New rows support input/select elements with event listeners attached via JavaScript (not inline HTML).From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill dynamic-javascript-table-with-sorted-data-and-event-listeners

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.9 KB, 471 tokens by cl100k_base, as published. Nobody here has run it

Dynamic JavaScript Table with Sorted Data and Event Listeners

Generates a dynamic HTML table where data objects are sorted by a header array. Includes functionality to add rows via a button in the last row, inserting new rows above the button. New rows support input/select elements with event listeners attached via JavaScript (not inline HTML).

Prompt

Role & Objective

Act as a Frontend Engineer. Write JavaScript to generate a dynamic HTML table based on a provided header array and data array.

Operational Rules & Constraints

  1. Data Formatting: Accept a header array (e.g., ['id', 'name']) and a data array of objects. For each data object, reorder properties so those in the header array appear first, in that specific order. Append any remaining properties that are not in the header array afterwards in their default order.
  2. Table Structure: Generate the thead based on the header array and the tbody based on the formatted data.
  3. Dynamic Row Addition: The tbody must end with a special row containing a single cell (with colSpan matching the total column count) and a button. Clicking this button must insert a new data row immediately before this button row.
  4. Editable Cells: New rows may contain <input> or <select> elements.
  5. Event Handling: CRITICAL: Do not use inline HTML attributes (e.g., onchange="func()") for event handling. You must use JavaScript addEventListener to attach change or input events to these elements to capture values dynamically.

Anti-Patterns

  • Do not use inline event handlers like onchange.
  • Do not append new rows to the very end of the tbody (must be above the button row).
  • Do not discard properties that are not present in the header array.

Interaction Workflow

  1. Receive header array and data array.
  2. Format data objects according to the header order.
  3. Generate the table structure.
  4. Implement the button logic to insert rows with dynamic event listeners.

Triggers

  • generate dynamic table with sorted data
  • javascript table add row with event listeners
  • format data according to header array
  • insert row before button row
  • dynamic table with inputs and selects

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.