Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am in need of using a mini calendar for picking up dates. I cannot find a suitable plugin for twitter bootstrap but what i have found is a plugin for selecting dates (http://www.eyecon.ro/bootstrap-datepicker/) which involves firing up a calender when the calender button is clicked. I want to know whether is there any way possible that we do not need to click a button; rather the calendar is displayed permanently and we can then select a date and use its info. There must be!
Would really appreciate any help.
Sure, you can use .datepicker('show') to display datepicker without clicks. Also there are events('hide') you can track to prevent its hiding. All needed info you can find on the page you provided(http://www.eyecon.ro/bootstrap-datepicker/). Hope it helps!
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to build a calendar with javasCript that allow users to enter their shift manually and have 2 option when a date is clicked on( swap or give away)? any thought on how to do it? im I going to need an API? building the calendar will I have to build it using table or which is most efficient way?
I am a rookie coder who started less than a month so pardon if I am not too specific.
How about a php calendar? This works good http://fast-apps.co.uk/fast_cal.php#go
Also you can use Google Calendar and embed that too.
Here is an example of where I have it.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I would like to implement onto my website a drop down style menu of which also has a text input field to add your own option aside from the predefined provided options. I have an example of this via the images below;
Drop Down Example - Closed
Drop Down Example - Open
What is my best solution to achieve this result for my website?
Select2
Selectivity (formerly Select3)
fSelect (lightweight)
There's a jquery plugin called chosen by harvest that handles this well. It allows free form input on the dropdown, and many other options. It's docs are here: https://harvesthq.github.io/chosen/
Once it's installed you can use something like this to initialize it on your select box.
$(".chosen-select").chosen();
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am having a button on my html page, i want a pop-up menu to be appear when button is clicked.
Please see the attached image.
I am not javascript expert.
Please suggest how can i create a pop up menu in html ?
You can use dropdowns from bootstrap framework, you can check this link
http://getbootstrap.com/components/#btn-dropdowns
HTML is only used to structure the page, so you can't make something appear/disappear using only html.
You will have to use javascript for that.
I did find a html 5 way of adding stuff to the context menu (right-click):
http://www.w3schools.com/tags/att_global_contextmenu.asp
but it's currently only supported in firefox.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am creating a form which requires the user to fill in a date for a booking. I want to have a calendar as a part of the form where the default date is the date for that particular date.
Are there any premade calendars (I don't want to reinvent the wheel)?
I am developing using html, css, javascript, jsp and bootstrap. I don't mind adding another framework in order to make this work. Thank you!
Bootstrappers have many examples of date-time pickers:
http://eonasdan.github.io/bootstrap-datetimepicker/ This has many calender examples. You can easily incorporate this in to your form.
This question should be more technical, but i think this is what you are looking for.
https://jqueryui.com/datepicker/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want when I click in the select, I see all options on full screen.
I have an example in this link.(By choosing the state)
Note : I don't want to use jQuery mobile.
It's been a few hours I'm looking for this feature, but unfortunately I can not find any result.
Thank you.
Try this plugin, and just set the maxHieght and menuWidth properties to the page size. I would use a dynamic calculation, to determine current pages coordinates, then plugin them into the plugins properties. Plugin can be found here: https://github.com/fnagel/jquery-ui/wiki/Selectmenu. Hopefully this will help you out. Happy coding!