Simple custom Input UI
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2024 07:58 AM
Hi All:
I need to create a simple custom UI that uses input boxes to create and update data (rows) in a table.
This should be easy but I have had issues developing this.
Thanks
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2024 10:09 AM
Hi @rtwilkins3 ,
You can go for creating a widget in sp_widget table. And, add your code in HTML
<div>
<label for="name">Name:</label>
<input type="text" id="name">
<label for="age">Age:</label>
<input type="text" id="age">
<button onclick="createData()">Create Data</button>
</div>
Let me know if you need anything more..
Please mark as Accepted Solution if this solves your query and HIT Helpful if you find my answer helped you. This will help other community mates too..:)