jQuery popup needed - jquery-plugins

I need to display a popup window when a user clicks a hyperlink on a page. The popup needs to display an ASP.NET gridview control, so I may need a little AJAX so I can query the server for datasource depending on which hyperlink the user clicks.
Does something in the jQuery API pretty much fit my needs? Or, a good plugin?

In jQuery UI you have the window plugin. Check the examples here

Yes, jQuery would be perfect .

Jquery UI may fit the bill but also check out http://flowplayer.org/tools/overlay/index.html if you need some fancier effects.

Related

Custom Interactive UI Boxes in Google Apps Script

I know this question has somewhat been asked before, but I could not find a definitive answer for it.
I am attempting to make an interactive, custom-designed UI menu for a google doc add-on. I would like to be able to code in items such as pull-down menus or checkboxes. Are these possibilities with this discontinuation of the UI Service? And if so, how would I go about coding this? Even a link to a place that might have suggestions would be a help. Thanks!
As you mentioned, the UI Service has been deprecated and replaced by HtmlService. HtmlService let's you build a complete UI with HTML, CSS and client side Javascript, so you can make the UI as simple or complex as you like.
HtmlService intefaces can be rendered in sidebars or in popup dialogs, see https://developers.google.com/apps-script/guides/dialogs
See the HtmlService documentation here, https://developers.google.com/apps-script/reference/html/

KendoUI version of JQUERY animated side navigation

I am fond of the type of side navigation menu that is common in mobile apps. An example is: http://www.jqueryscript.net/menu/jQuery-Animated-Side-Navigation-Menu-Plugin-Sidebar.html
Which works also for web pages. However, the vast majority of my page is in KendoUI, and I don't want to load another framework just for that.
Is there a combination of tricks with Kendo (draw control for example) that I could use to get the same effect?
Alternatively, I am all wet. I just want a quick way to have a "pop-up" of settings that are only occasionally used, and most of the time save the screen real-estate. So maybe just a button and a pop-up window is the correct approach?
Any advice?

How to achieve longclick in kendo ui listview

I am doing a mobile application in kendo UI. When clicking on the item in the listview its redirecting to some page. My requirement is that for long click also it should redirect to some page.
How can i make it possible in mobile using kendo ui?
Thanks in Advance.
Based on this answer from Kendo UI forums (no native OS events), you could look at this question about Long Press just down the road in SO.
Basically start experimenting with JavaScript events and timers.
As far as I know, JQuery Mobile events (taphold) and plugins are not an option as they would be competing with Kendo UI for page control, but you might get some ideas for your implementation.

jQuery ui dialog overlay and ajax injected html

I have a problem with a site (unfortunately I can't provide a link because it's on a staging environment).
I have a jqueryui dialog that opens when page loads, if you scroll down the overlay covers all of it.
Then some part of the page is updated by ajax calls and the height of the page increase and that's the issue, the overlay don't covers all the page any more and the bottom content is accessible.
I can see that the overlay adapts to certain changes, like resize of the page.. is there a way to update it when scrolling down for example? that could solve my issue
I'm sorry I can't provide a link that shows the issue..
Regards,
Gianpiero
In a similar situation I found a successful workaround by triggering a window resize event after each asynchronous DOM change:
$(window).resize();

multiple alert boxes in jQuery?

is there any free jQuery plugin that allows me to have
multiple alerts
either fading or with ok button
customize size, color of the alert box
customize where it is placed on within the browser window
The purpose is to display 'system alerts' for the user. User will log in and during the day he will get alerts boxes....
You can look at the dialog widget from jQuery UI or the overlay from jQuery tools. Not technically plugins, but good for the job (and plenty more besides).
jGrowl is a popular plugin that would probably suit your purpose.

Resources