jquery-plugins

JqGrid updating grid on add

Scenario: I have three columns in my grid but only one is editable, the other two are filled in on the server side. I am using the built in add functionality of jqGrid and NOT refreshing the grid on successfully add. I would like to have the row added to the grid, like it does automatically, but would like to add it myself because it ...

jquery filterable portfolio using selectbox instead of normal href

Hello, I'm using the filterable portfolio script by new media campaigns ( http://www.newmediacampaigns.com/page/a-jquery-plugin-to-create-an-interactive-filterable-portfolio-like-ours ) which works fine when using normal links in a unordered list. I would like to offer the options in a selectbox though. Could anyone point me in the righ...

jQuery Menu - Save the State and Preserve the Back Button

I am using this jQuery Accordion plugin to save the state of the menu using a hash (#) at the end of the URL for ever level that is expanded: http://sandbox.unwrongest.com/jquery.accordion/ The only problem is that the back button doesn't work. I have tried to implement the jQuery history plugin but can't figure it out. I wouldn't even...

jQuery Input Floating Hint Box 1.1 and user controls dynamic loading

Hello! I'm developing an ASP.NET application with C# and Ajax. I have a login page and a page with a treeview on left, and a place on the right to load my own custom user controls. These controls are basically forms with some input fields to fill. I use jQuery Input Floating Hint Box 1.1 to show a tooltip on the left of inputs fields....

jQuery qTip and lightbox

Does anyone have a solution for using jQuery qTip and lightbox at the same time. It would seem that qTip hijacks the title tag in the anchor so that the title that's supposed to show underneath the enlarged image (via lightbox) is missing. The qTips work just fine. ...

JQuery Plugins Not Working Correctly With ASP.NET AJAX's ScriptManager

I am trying to use a jQuery plugin in a control. The pages that the control can be on use partial postbacks via an UpdatePanel. I include jQuery and the plugin during the control's PreRender event like this: ScriptManager.RegisterClientScriptInclude( this, this.GetType(), "jquery", "/_infrastructure/javascript/jquery.js"...

Replace pagination Next link to image

quick pagination i have downloaded the pagination from this site, ya really fine , no script problem and nothing , But i tried to change the next link to image , but am not find success , actually they given the CSS name for the next and back link , i simply overrided using css , background image, then image has changed , but i cant ...

jQuery plug-in for text zoom?

Hey, anyone knows a jQuery plug-in for text zoom a-la MAC OS X "Large Type" function in Address Book? I'd use it for the same situation - to show full-screen phone number after clicking on it. Cheers ...

Is it a Best Practice to separate css and JavaScript logic on JQuery Plugins?

We are starting to contribute to the JQuery libraries with some useful plugins that we are using in our web sites. We want to make sure that we cover the basics best practice towards the creation of plugins. My idea (which I don't know if this is a best practice or not), is to keep separate any styling from the actual logic of the Plu...

jQuery DataTables server side processing and ASP.Net

I'm trying to use the server side functionality of the jQuery Datatables plugin with ASP.Net. The ajax request is returning valid JSON, but nothing is showing up in the table. I originally had problems with the data I was sending in the ajax request. I was getting a "Invalid JSON primative" error. I discovered that the data needs t...

Jquery, Autocomplete using json, id's vs display values

I have kind of a complicated autocomplete issue. This is for a messaging system for a website I'm working on. I want it to work where you type in a user's name, it comes back with a thumb of their image and their name and their id. Then, when you select it, I want it to show the users name, but when it posts back I want it to send bac...

jQuery Columnizer plugin only working correctly on window resize.

Hi, I'm using the jQuery Columnizer plugin, and I'm running into a weird problem. Using 3 columns, I columnize content from a hidden <div> into a target <div>. It distributes only one paragraph to each of the first two columns and then puts all the remaining paragraphs into the last column. The strange thing is that it auto-corrects it...

Set a visual focus on a element with jQuery

Hello, I've seen some pages with a cool visual focus on elements for example a div: The white box is a div and the rest of the page is dimmed out. Are there jQuery plugins for that effekt? ...

Client-side templating frameworks to streamline using jQuery with REST/JSON

I'm starting to migrate some html generation tasks from a server-side framework to the client. I'm using jQuery on the client. My goal is to get JSON data via a REST api and use this data to populate HTML into the page. Right now, when a user on my site clicks a link to My Projects, the server generates HTML like this: <dl> <dt>Cl...

jQuery checkbox drop down control

link texthi, i am using jQuery checkbox drop down control. i am able to bind the values to listbox and show the values . i need to make certain items in my listbox[checkbox drop down control] non selectable. i am refering this website http://dropdown-check-list.googlecode.com/svn/trunk/src/demo.html i am using the JQuery plugin i...

Jquery Replace phrase plugin

Is there a jquery plugin that enables replacing predefined phrases with links in a defined div tag. Forexample with an array of "global warming" -> "global warming" "computer hardware" -> "computer hardware" etc... Also it will be used in a wordpress blog which jquery plugin already installed. Is there wordpress pluging that allows ...

Galleria Javascript Gallery in IE7 & IE8

Hi there I have implemented the Galleria & SmoothDivScroll plug-ins together but in IE7 & IE8 the image gets distorted [ratio is not kept in scaling] slightly when its orientation is portrait (i.e. when the image gets loaded into #main_image, the image container). In Safari and Firefox, everything is fine. Does anyone else encounter th...

Anyone know any jQuery plugins for displaying dates in popup calendar?

Hi, I'm looking for a jQuery popup calendar (like the jQuery UI Datepicker) but I don't want to use it as a date picker, only as a calendar to show that certain dates have been booked (using some styling to highlight each date, the way outlook does in the month view). Does anyone know of any plugins that can do this? I've had a hunt b...

What are your recommendations on a jQuery custom select element plugin?

I've seen quite a few online and I thought I'd consult the Stack Overflow community for which they may have experience with and can make recommendations. I basically am looking for a plugin that can replace a select element with custom dropdown that uses CSS (not tables) fair bit of flexibility with styles lightweight ...

Create Local Javascript Array From jQuery.get() AJAX Call

I'm using the jQuery Autocomplete plugin and would like to store all the autocomplete values locally in an array. I'm able to retrieve a comma separated list from a url using jQuery.load() or jQuery.get(). However, I can't load the data into an array successfully. Any suggestions on how to get this working? I realize there's probably...