qtip

Problem with qTip - Tips not showing because elements load after the script

人走茶凉 提交于 2019-11-29 14:44:34
问题 I'm not very experienced with javascript, jQuery or it's plugins but usually I manage. Anyways, my client is building a site and one of its purposes is to pick up news articles from different sites and show the titles in unordered html lists. I don't have access to his code, the news articles load up rather slow(much after the site has loaded). I'm using qTIP and the idea is that once you hover over a news title, it will generate a tooltip. This works fine in my dev environment, because I

jQuery ui - datepicker prevent refresh onSelect

十年热恋 提交于 2019-11-29 06:28:57
I'm using jQuery ui Datepicker to display a yearly inline calendar full of "special dates" (with colors). This is to allow users to batch special dates by selecting a range and some other details. $('#calendar').datepicker({ ... , onSelect: function (selectedDate, inst) { $('.date_pick').toggleClass('focused'); if ($('.date_pick.end').hasClass('focused')) { $('.date_pick.end').val(''); } # inst.preventDefault() ? <- not a function # inst.stopPropagation() ? <- not a function # return (false) ? <- calendar refreshes anyway } ... }); I'm also using qtip to show the details on each date My

Trigger jQuery Qtip on FullCalendar dayClick

一笑奈何 提交于 2019-11-29 03:48:25
问题 I have a jquery fullcalendar. I would like to trigger jquery QTip (or other jquery solution (such as a lightbox)) when I click on a day to bring up a list of options. This question is similar to this question already posted, however different enough to warrant a new question. There is an event callback for this but I am unsure how to integrate this with jQuery Qtip... $('#calendar').fullCalendar({ dayClick: function(date, allDay, jsEvent, view) { if (allDay) { alert('Clicked on the entire day

Integrating qTip with MVC3 and jQuery Validation (errorPlacement)

[亡魂溺海] 提交于 2019-11-28 06:59:31
I am working on a proyect with MVC3 and I am trying to integrate qTip2 with jQuery validation in order to show errors as floating tips. The problem I am having is that apparently calling errorPlacement on form validation is not doing anything, guess it has something to do with the way MVC handles it. Basically, what I want to do is use the integrated validation between MVC3 and jQuery (annotations) but also integrated with qTip to change how the error msg is shown. I have searched all over and the best I could find was someone suggesting modifying the jquery.validate.unobtrusive.js - onError

fullcalendar with clickable popup on hover

断了今生、忘了曾经 提交于 2019-11-27 11:43:48
问题 I need a pop up on hover full calendar like this one. Have tried full calendar with qtip but could not get clickable popup its disappers when mouse is out from the spot. Here's a similar example but it need to create a clickable popup like that of above example $(document).ready(function() { var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); var events_array = [ { title: 'Test1', start: new Date(2012, 8, 20), tip: 'Personal tip 1' }, { title:

Integrating qTip with MVC3 and jQuery Validation (errorPlacement)

半世苍凉 提交于 2019-11-27 01:39:21
问题 I am working on a proyect with MVC3 and I am trying to integrate qTip2 with jQuery validation in order to show errors as floating tips. The problem I am having is that apparently calling errorPlacement on form validation is not doing anything, guess it has something to do with the way MVC handles it. Basically, what I want to do is use the integrated validation between MVC3 and jQuery (annotations) but also integrated with qTip to change how the error msg is shown. I have searched all over