Click the link to open index.html with a browser and open developer tools by pressing option+command+I (⌥+⌘+I).
This example create tables with form rows. These rows have adding, editing, saving and removing actions.
Debug the code to understand the usage and behavior. The Table class handles all the dynamic table functionality. The main.js handles the event registration. This example also uses Delegator design pattern to hande row actions, in an efficient way.
This example also uses template tags, which you can learn more in the HTML Template Tag example.
Return to Index