7
votes
0answers
1k views
Dynatree ignores select property
I am using the dynatree plugin to display a checkbox tree, using multi-select mode (mode 3).
When the tree is initialized using ajax (no lazy loading), it seems to forget that some nodes are loaded ...
7
votes
0answers
506 views
Create Fancybox gallery when integrated with PikaChoose
I am trying to create a fancybox gallery when integrated with pikachoose. I have everything working except i can't get the arrows to show or the gallery to work when fancybox popup shows.
Here is my ...
6
votes
0answers
242 views
How to move cursor from Second Column to First Column in a new row in jqgrid
I am new to jqgrid.
I have the following code to insert a new row when a tab key is pressed.
It works for the most part of it. But when a new row is inserted, the focus is given to the second Column ...
4
votes
0answers
999 views
ACE editor: create a new editor dynamically
I have a layout tab based where i can add and remove tabs, when i create a new tab i want to add a new istance of ACE editor (http://ace.ajax.org/) to it (i'm using jquery ui tabs) but so doesn't ...
3
votes
0answers
49 views
3D ribbon using CSS and JavaScript
I am trying to create a 3D ribbon using CSS and JavaScript.
Main features needed are:
Ribbon should use sticky scroll method. i.e. moves from bottom to top on page scroll and then get fixed at the ...
3
votes
0answers
39 views
Backbone load a view within a view (as partial)
Hope someone can help me with,
I have a Backbone view, that is basically a skeleton of HTML, the HTML builds a tabbed interface, each tab obviously has a link and content area. What I am wanting to ...
3
votes
0answers
57 views
Why is the hoverintent function using so much CPU?
I have implemented the following plugin:
jQuery.event.special.hoverintent = {
pxDelta: 7,
pxRate: 100,
bindType: "mouseover",
delegateType: "mouseover",
handle: function( event ) ...
3
votes
0answers
145 views
cropping browsed image on popup
Please check http://jsfiddle.net/UmJtB/18/ below code
<script type="text/javascript">
$(document).ready( function() {
$(".uploadphoto").click(function() {
...
3
votes
0answers
564 views
Jasmine lost jQuery with PhantomJS: ReferenceError: Can't find variable: $
I want to test my JS codes which uses jQuery by Jasmine in console with PhantomJS,
but ReferenceError: Can't find variable: $
I can test the codes by Jasmine in browser normally.
Thank you for your ...
3
votes
0answers
377 views
javascript file upload averaging time remaining issue
I have been working on a file upload script using uploadify that calculates the remaining time of the upload. Uploadify offers a callback called onUploadProgress, which gives me some information on ...
3
votes
0answers
245 views
Can't remove tabIndex from jquery tabs widget
I have a simple jquery tab widget set up. It starts off with two tabs, one being error 1, one being a plus sign. Clicking the plus sign adds error 2 tab. Clicking it again adds error 3 tab. The ...
3
votes
0answers
350 views
Can't get the destroy() method of a jQuery UI plugin to work (+conflicting jQuery plugins)
Background/General Problem
I'm trying to fix a friend's website in which two jQuery plugins he added aren't playing nice. Basically, one (foundation - a grid layout with tabs) isn't playing nice ...
3
votes
0answers
1k views
Performance issues using images with arbor.js
I've been working on adapting arbor.js to use images. However, being a relative js noob what I have is totally un-optimised. As far as I can tell, the way I've set it up is recreating the image object ...
3
votes
0answers
234 views
Flot memory leak while associating two graphs using panning
we are rendering two graphs with flot, which share the same x-axis.
we plot them with:
plot1 = $.plot($("#placeholderGraph1"), p1_data, d1_options);
plot2 = $.plot($("#placeholderGraph2"), p2_data, ...
3
votes
0answers
3k views
Is it possible to get the Set-Cookie value from an HTTP response header in JavaScript?
I'm using jQuery's ajax() method to make some asynchronous server calls and want to catch the case where a call fails because the session has timed out.
From looking at the response headers in this ...