Tagged Questions
0
votes
0answers
11 views
Draggable element cannot have negative positions
I have an element with:
position: absolute;
top: x; left: x;
He's on a draggable arena (the background). The element became draggable when user clicks on a button. So I've wrote this code:
...
1
vote
1answer
19 views
Create fade-out and slide-in animation for HTML content
I am trying to get an animation effect where current content fades out, and is then replaced by content sliding in from the right side of the screen. My current effort:
http://jsfiddle.net/LKazq/3/
...
0
votes
2answers
19 views
Caculatiing form values by class
I am trying to calculate all fields in the form which have the same class (shown below in the code), I have managed to get this to work, I think I may be setting the wrong value types in javascript as ...
1
vote
1answer
26 views
jQuery Sortable plugin seems to break serialize method
I've got a simple AJAX form that allows users to reorder items and operate on them at the same time. I'm using the jQuery Sortable plugin and that all seems to work well -- however, I also added in ...
0
votes
0answers
23 views
How can I override the drag event for jQuery ui sortable?
On the jQuery UI site, it says that "By default, sortable items share draggable properties." I assumed this meant that all events that draggable has, sortable should inherit as well. However, this ...
0
votes
0answers
20 views
jquery Tabs loading Ajax content
Can someone help me figure out why the ajax content is not loaded in the following
http://jsfiddle.net/nmsZX/
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script ...
0
votes
0answers
16 views
jQuery UI Sortable - Tables in IE 7
I've got a sortable table and it's not working as it should in IE 7
As soon as i start the drag, the tr jumps to the top of it's containment element.
In a table with 2 rows, if i move the bottom ...
2
votes
2answers
30 views
JQuery UI draggable to adjust the divs size
I have two divs, and I want them to share the 100% of the width of their parent. I also have a small divider in between, which allows them do dynamically resize them. But the total area must remain ...
1
vote
0answers
40 views
jQuery dragable move left ,right or center
I am using jQueryUI Draggable and Resizable for re-size and drag of a div. I want that if div is dragged horizontally then it move only left, right or center inside container (paper-area) . Any help ...
0
votes
1answer
13 views
Lasso selectables disables CSS :hover state
I have a group of jquery ui selectable things inside a div which expands to full size upon the hover event. The desired effect is that people can select/multi-select/lasso as many of the select-able ...
0
votes
1answer
26 views
JQuery UI Date Picker Focus
I have implemented JQuery UI Datepicker but have two prob;ems with the functionality. Implemetation code is below
<script type="text/javascript">
$(document).ready(function(){
...
0
votes
0answers
17 views
Firefox SDK using JQuery Draggable UI
i want to use this: http://jqueryui.com/draggable/ in my Firefox SDK Addon.
This is the source code for a simple example:
<!doctype html>
<html lang="en">
<head>
<meta ...
0
votes
1answer
15 views
Fullcalender on Double Click show popup
Want to open a Popup when double click on any date. So that I can Insert an Event on specific date. How can I implement that ?
I am sharing my code:
$(document).ready(function() {
...
-1
votes
0answers
15 views
jquery mobile design select control hanging the page when loading inside cefsharp
I'm facing issue in cefsharp when loading a page with jquery mobile design,
Check out this url, http://jsfiddle.net/Dani_90/r5LJ6/1/
Html:
<div data-role="page">
<div ...
0
votes
2answers
35 views
Why the OK button is not getting displayed in a pop-up in following code?
my code is as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html ...
0
votes
0answers
20 views
jQuery boxslider is not working in IE9
Can anyone help me with the jQuery box slider.it does not work in IE9.
Here is the code:
var slider = $('.ad_form_container').bxSlider({
pager: false,
controls: false,
speed: 900,
...
1
vote
1answer
34 views
How do I detect with jQuery UI that I dragged outside the window?
This is my current code:
@row.draggable(
handle: '.Drag',
helper: (event) =>
clone = @row.clone()
$("td:gt(0)", clone).remove()
return clone
refreshPositions: true
stop: ...
2
votes
0answers
24 views
How do I imitate Gmail's “Swipe to delete” in KendoUI ? Example included
I am trying to recreate Gmail (on Android's) "swipe to delete" interface. In this GUI the user can
Swipe left or swipe right, and the entire list item moves with the thumb.
After it is swiped more ...
0
votes
1answer
25 views
How to make tabs from jquery-ui to reorder if in rows?
If I have very many tabs in tabs widget from jquery-ui, then tabs go in several rows. Unfortunately, if I select first tab, it remains in first row, visually detached from content it denotes.
Below ...
0
votes
1answer
21 views
How to pass multiple datepickers value as an array to php
I am following this Set multiple jQuery Datepickers' value based on one jQuery Datepicker's selected date which is already asked by me and also received answer as well.
I have following multiple ...
1
vote
1answer
24 views
jQueryUI draggable + sortable bug (Cannot read property 'options' of undefined)
My question seems to resemble this question:
dragging from a sortable list to a drag and drop plugin
But since there is no answer given to that one i was wondering if anybody could / would be able ...
1
vote
1answer
16 views
Mimicking `overflow-y: auto; overflow-x: visible` on a jQuery UI sortable object
Here is a jsFiddle so you can clearly see what I am about to describe:
http://jsfiddle.net/c26SK/5/
I have two boxes. The left hand one is filled with items, items that can be dragged into the right ...
1
vote
1answer
28 views
Set multiple jQuery Datepickers' value based on one jQuery Datepicker's selected date
I have follow jQuery UI Datepicker sample code
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Default ...
0
votes
0answers
17 views
Accessing methods from Jquery UI Datepicker?
Looking at the onSelect event that Datepicker has (http://api.jqueryui.com/datepicker/#option-onSelect), the second parameter is obj inst (an instance of the Datepicker).
I need to then call the ...
0
votes
1answer
25 views
jQuery UI slider with two handles - get initial data
I have jQuery slider with two handles and I need two open their tooltips on initialize.
var sliderTooltip = function(event, ui) {
var curValue = ui.value ;
var tooltip = htmltext;
...
4
votes
1answer
45 views
How can I call function in drop method of jquery?
I had some code in jquery with draggable and dropable elements.
Here is my link of jsfiddle - http://jsfiddle.net/hirenwebdp/Mf6zJ/333/
and I want to optimize this code by making one function for
...
1
vote
1answer
20 views
How to mix JQuery UI's draggable and sortable with div elements?
In this Fiddle I am trying to mix JQuery UI's draggable and sortable utilities, the problem is that for some reason my <div> elements get moved around strangely when I drag & drop them. I ...
0
votes
0answers
12 views
jQuery-ui Accordion widget, is there a condition to test if all panels are collapsed?
I'm using the jQuery-ui accordion widget, which among other things displays an image depending on which panel is activated. The widget is collapsible, and I want to remove the image when all panels ...
0
votes
1answer
19 views
Jquery ui two checkboxes on checked need button to activate and on unchecked disabled
Visit my fiddle first
I am using jquery ui buttonset here. What I want when both check-boxes are checked I need the buttons to be activate and removeClass disabledButton, and when not checked (both) ...
0
votes
0answers
36 views
Created Form with json schema. How to get all options from the enum list?
$('form').jsonForm({
schema: {
selectNewEdit: {type: 'string',title: 'Select the Mode (New / Edit): ', 'enum': ['Default Mode (New)']},
faq_no: {type: 'number', title: ...
0
votes
1answer
34 views
Created forms from JSON Schema, How to add Close button?
With this https://github.com/joshfire/jsonform I have created Form.
$('form').jsonForm({
schema: {
name: {type: 'string', title: 'Name', required: true},
//age: {type: 'number', ...
0
votes
1answer
32 views
Javascript/jQuery : Creating a 'Powered By' slideout for footer logo on websites
I found a jsfiddle that did something similar to what I wanted to do. The modified version is located here: http://jsfiddle.net/7m7uK/479/ and it works on the jsfiddle. I copied the code to my site, ...
0
votes
5answers
34 views
Accessibility: Why does Jquery menu explicitly set menu item tabindex to -1?
I was wondering if someone could explain to me, from an accessiblity standpoint, the logic behind explicitly giving menu item anchors a tab index of -1. I want to give my menu items a tab index of 0 ...
0
votes
1answer
31 views
Force user to use jquery datepicker
In my ASP.NET MVC 4 app, I am using the jquery.ui.datepicker.css to implement the datepicker for an input field as follows:
@Html.TextBox("txtDate", new { @class = "date", @title = "(mm/dd/yyyy)"})
...
0
votes
0answers
28 views
Passing variable to dialog function?
This works as is, but I was wondering if it's possible to pass $row to chooseBudgetItem(), so that I can change $row to var $row.
$('#dlgBudgets').dialog({
autoOpen: false,
height: 'auto',
...
0
votes
0answers
8 views
Creating Tree Map through XML Data
i am using jit chart library for the Tree Map.
Currently i am using JSON data .Is there any way we can load data in tree map through xml.or if possible can you tell me some other charting library ...
0
votes
2answers
34 views
animating one image tag with changing src attribute using jQuery
I have an application in which the one division contains a image that need to change in every three second. But the problem is that I also need to add some animations to that changing event. I have ...
-1
votes
2answers
27 views
How to reset scroll bar using jquery
I am new to Jquery , want to reset scroll bar position (at default position at top).
How can i do that ? Using jquery.momentum.0.9.js ( No documentation is available ) Here is the js file ...
0
votes
2answers
51 views
jquery conflicting with another lib
I'm using various jQuery libaries for a site from 2 plugins, but they are conflicting, I dont have the greatest knowledge of jQuery so an idiots guide might be helpful tbh.
the "jQuery-loader" is ...
1
vote
0answers
28 views
How to relocate the node in jstree after dragging back
Suppose we have two trees with the following structure:
tree #1:
root
child #1-1
...
1
vote
1answer
35 views
How to enable scrollbar in draggable jquery-ui div
I try to make a draggable div with jquery-ui, but with lot of text in, so there is a scrollbar in this div and I want to enable this scrollbar. The problem is when I want to use the scrollbar, it ...
0
votes
1answer
16 views
Jquery FullCalendar - Disable resize on Single Dates
I am using Jquery FullCalendar.
Can I check that if my Event is on single date ( I mean no end date, just start date ), so in that case it should not be resizable. How can I do that ?
For Example:
...
0
votes
1answer
42 views
+50
jquery ui autocomplete with google places - force selection and remove original input while moving up down arrows
I've following jquery ui autocomplete, that grabs data from google places...
Problem I'm having is that, once user starts going through the list of suggests via up and down arrows, original input ...
5
votes
2answers
67 views
Jquery FullCalendar Extend Start Date or End Date
I am using Jquery FullCalendar.
Here is the link of calender I am using : http://arshaw.com/fullcalendar/
I have a case where I have startdate and enddate.
Now if I extend startdate or enddate by ...
0
votes
2answers
36 views
How to add a jquery ui slider to each cell of slickgrid?
I need to add a jquery ui slider to each cell of slickgrid. Number of records is over 10,000 with over 150 columns. The problem is that the initial set of sliders are rendered fine but as I scroll ...
0
votes
1answer
24 views
Get items a .sortable() call will effect in jQuery
I am wondering if there is an efficient way to determine what items will be sorted when using the jQuery.sortable() plugin. For example, I know that there is an object property you can set [items] for ...
0
votes
1answer
22 views
JQuery UI Full Size Calender - Get JSON Data from PHP
I am using JQuery UI Full Size Calender ( Mostly Used for Event Management ).
I have a PHP file in which I have prepared a JSON.
Take a look at that JSON File (json-events.php):
echo ...
0
votes
2answers
18 views
How to Trigger LinkButton Postback after Confirmation using jQuery UI Dialog?
I want a LinkButton to popup a jQuery UI dialog that prompts the user to confirm the action. If the user hits OK, then I'd like the action to continue by posting back to the server.
I ended up ...
0
votes
1answer
13 views
Modifying (Draggable | jQuery UI)
you know this link?
http://jqueryui.com/draggable/
I think myself it's a good script. I wanted to modify it, so only top part is interactive, and could drag whole div, while rest won't be able to ...
0
votes
2answers
28 views
jQuery-ui draggable and resizable div can't resize from the left properly
I am trying to make a resizable and draggable div that is at a fixed position.
The div looks fine when I resize it from the right or bottom; however, when I resize it from the left or top, the ...