We are creating dynamic application(layout) using angular , jQuery, kendo, bootstrap etc, which consist of container and content boxes. My requirement is to achieve to drag and drop(which means anything can placed anywhere) with bootstrap responsive css.
Anyone help me in static or dynamic way to example. If you guys need more elaborate manner. please let me know. Thank in advance.
This library will do exactly what you want.
https://rosspi.github.io/gridstrap.js/
It will maintain the responsiveness of bootstrap.
Related
I'm wanting to implement something similar to following dropdown feature on my website, however I have limited skills in this area. Is there a css library I can use to get the desired result? Or will I have to manually create this myself?
Any examples would be appreciated.
Use BootStrap's Dropdowns. It supports images inside the text area. Overwrite the CSS so that it looks similar to the dropdown in the image. This way you won't need to rewrite everything.
https://getbootstrap.com/docs/4.0/components/dropdowns/
I have an angular app with a scrollable sidenav.
This sidenav has the native ugly scrollbar. I want to replace this one with a styleable scrollbar.
Are there any good solutions for angular 2 which don't require jQuery?
Do I have to use an external JavaScript solution which doesn't rely on angular?
Thanks in advance!
PS: If important, I use Angular Material 2
PPS: I've already tried gemini-scrollbar, but this has broken the width of the sidenav and simplebar which has caused a ram overflow.
Edit:
I want to replase this ugly scrollbar:
Try using the OVERVIEW EXAMPLE its better than Example tap section
this one:
You don't need JQuery to archive this task. It's pretty simple and easy to use ADD to do this. There's a example in this link https://css-tricks.com/almanac/properties/s/scrollbar/
I am trying to make a sidebar using Semantic-UI which, when collapsed, still has a portion visible. Something like this, to be more precise. I have tried looking in the semantic-ui css source, hoping to find something that might be of help, unfortunately, I couldn't find anything that could be useful.
Is there any possible way of doing it using semantic, without having to write the whole sidebar javascript/css from scratch? Any help would be appreciated
This is exactly what the sidebar component is for. See examples here: http://semantic-ui.com/modules/sidebar.html#/examples
I'm new to AngularJS. My requirement is to design a web app with Drag & Drop functionality.
My app needs the following feature:
A slider from where I could select widget, drag them over from the slider and drop them over to a grid in screen
I should be able to re-size the dropped widget in the grid
should be able to re-position the widget on the grid in the screen.
Could anyone suggest any websites, plugins or tutorials that could help me get around with this.
Any help is much appreciated.
Take a look in AngularJS documentation. There is an simple example for an directive that can add drag/drop functionality on elements.
Here you can find a plunker for example.
I am trying to implement a webpage like the mockup I've posted. I tried looking for some jquery libraries that can help me achieve this task, but havent found any yet.
The idea is to make three separate scrollable grids, all three should occupy the entire browser screen, and the header bars should be able to hold text at the center.
Any help that would put me in the right direction will be a great help.
Try with this plugin: jScrollPane / http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
Demo in jsfiddle: http://goo.gl/hG9CV
You don't really need to do this using jquery, Simple CSS would work, just use position:fixed to position the divs and overflow:scroll to create scrollable element.
See a sample fiddle