Reputation: 9800
I want to create a web based UI which can do some basic drag drop and stuff. I am going to use it for I want to allow users to create some small certificates . Users can add text at places they want or upload images and than drop it at required places. I will than want to store those Images , text positions and width in a database based on which I will later generate a PDF file .
Is there any better approach some one suggest ? Also is there any existing UI plugin which can make this easier ?
Upvotes: 1
Views: 2352
Reputation: 174957
jQueryUI's draggable
and droppable
can make this easy. Draggable requires 0 effort, an Droppable gives you the exact coordinates. See their examples in the jQueryUI Site.
Upvotes: 1