Not a date picker,but should let user pick hour and minute,like 23:15.
Is there such a plugin yet?
My personal favorite is this one:
http://fgelinas.com/code/timepicker/
This works great and is really fast to work with - three clicks to set the time. And it's elegantly written, with code that closely resembles the jQuery UI date-picker approach and style.
It does minutes in 5-minute increments, however - not sure if that's precise enough for your purposes.
I use this one in my last project and it worked like a charm. You can use it with both date and time at the same time or separately.
check 10 jQuery Time Picker plugins: http://www.sitepoint.com/10-jquery-time-picker-plugins/
my favorite is http://tarruda.github.io/bootstrap-datetimepicker/
and this https://fgelinas.com/code/timepicker/
:D
Related
My question I think is pretty simple... I have some elements that for arguments sake have individual loading times of 1 second. Lets assume I have 10 of them. Instead of waiting 10 seconds for all the elements to load in order to get the content, is there any way I could load all that content one by one as it becomes ready?
For the record, I am using app engine (python).
I good example of what I am asking would be the following:
Right now I have an iframe containing 12 slowly loading elements. The iframe loads after the page loads, but takes 10 seconds for the iframe to load. What I am trying to do is simply get each element to load as it becomes available (it doesn't have to be in an iframe). Sorry if that was extremely vague.
Thanks and sorry if this question is semi stupid.
The answer is Ajax, look into jquery for a framework which simplifies such actions.
I'm fairly new to Share Point so forgive me if this is to easy for you guys, but I could not seem to find the answer anywhere and I am rather stumped.
I am currently trying to make a website to track if particular tasks go over their due date. I have a calculated column that leaves a DIV tag to the image of a red/yellow/green circle which is displayed by the javascript for a Content Editor Web Part (CEWP) made by Christophe on his site here:
http://blog.pathtosharepoint.com/2008/09/01/using-calculated-columns-to-write-html/
I was able to put his code into the CEWP and everything looks great when it is in a standard list.
But I want a web part version of this on the homepage for easy view. When I make the web part (of a view grouping by the image tag) and place on the main site all I see is the DIV tag! I made sure to put an identical CEWP on the homepage as well but i get as grouping:
+[columnName] : DIV>img title=blahblahblah>/DIV> (2)
Needles to say when I expand this it stays the same for all entries below
Any Ideas?
Thanks for your time :D
Nobody has responded, but I found the answer so hopefully this will save someone the hours of grief I had. This will seem ridiculous but just go with it.
In the calculated column instead of returning the type as text, return it as a currency. Sounds ridiculous BUT IT WORKS!!
I'm having problems with something which seems like an easy task, and most probably a stupid question. It will probably be my all time low experience in programming but I would really appreciate any help!
I'm using Galleriffic to display my portfolio site, and I am looking for a way to directly link to an image+description not being the first in the gallery. I would like it to link from other webpages, or from plain text/pdf documents.
In short, I would like it to link to a webaddress of slide 5 with something like:
Slide 5
but doing it this way obviously doesn't work.
Although others have tried to explain:
https://stackoverflow.com/a/7910501/1074297
jquery cycle link from external page to specific slide?
I can not seem to accomplish it, and it does not help at all that I am not a programmer.
not sure if it is too late, have been search the solutions for whole day, final found out the example 4 in the official website actually make the #link show on the address....so you can actually link the specific image ('slide'') from external page...amazing!!!!!
check this out
http://www.twospy.com/galleriffic/example-4.html#5
You can find the script after all the or just before ... and place it to your template...it works well for me, hope it helps, good luck
I'm searching for an easy way to extend the codeigniter calendar in the following way:
I have a start and an end date. The days between are coherent. For example: I want to change the background color of the cells from 11.11.2011 to 15.11.2011 (start date and end date came from the database). In the cell with the start date I want add an additional background image (this works fine at this time). How did I have to extend the template?
Best regards ...
By ammending the template you send across to the Calendar Class - http://codeigniter.com/user_guide/libraries/calendar.html - you can use the {cal_cell_content_today}{/cal_cell_content_today} tags to find out if there is an event for that particular day and then do as you wish. Maybe add a class or inline styles. Whatever works better for you.
The only drawback I've had with this is that you have to pass the days individually. So for your example, you'd need to send the following dates:
11.11.2011
12.11.2011
13.11.2011
14.11.2011
15.11.2011
I'm looking for a Ajax rating script similar to the one on metacritic, ign, gamespot, etc.
(example)
I've found only star rating systems and one slider that is not similar to the one that I'm looking for. (jquery ui slider)
Anyone knows something like that I'm looking for? Otherwise I'm willing to pay someone for this work.
It's not hard to roll your own, you just need a combination of jQuery/AJAX, CSS and the server-side poison of your choice.
Here is an example:
http://www.99points.info/2010/05/ajax-rating-system-create-simple-ajax-rating-system-using-jquery-ajax-and-php/
Essentially you wire up client-side event handlers which do AJAX HTTP POST requests to your server-side handler/web service, which then return back the response.
Now, that example isn't exactly a "slider" but it illustrates how it can be accomplished.
Check out this site for a multitude of AJAX slider examples - you just need to combine the two principles (rating and slider) and you're good to go.
Obviously if you don't like the "look" of it, you can mess with the CSS/hovering effects to suit your needs, but that should get you up and running.