Simple custom Input UI

rtwilkins3
Tera Contributor

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

Sohithanjan G
Kilo Sage
Kilo Sage

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..:)