I have a webpage with three elements <div>:
Right_bar contains several layouts (nothing to do with this question)
Bottom_barcontains several components, for example. calculator, logo, button group, etc. each component uses <div>and needs to be resized and dragged.
And a workspace where all components are discarded and changed. The user can also resize and reposition components anywhere in the workspace. As soon as the user installs the component, the page should be kept in the same style, and it cannot be changed even after the page is refreshed.
My questions:
- Should I use a database to save component location.
- Which should I use: jQuery / AJAX / anyother?
If you know any tutorials, please let me know, although I'm new to JavaScript, mostly a Java programmer.
Note: on the server I use Servlet.
source
share