jQuery UI is the official jQuery user interface library. It provides interactions, widgets, effects, and theming for creating highly interactive web applications.
0
votes
0answers
4 views
Unable to drag and drop with angular js
I am newbie to angularjs. currently I am working with a project for drag and drop but with pure jquery ui I am able to drag and drop but whenever I am going to include this with angularjs then I am ...
0
votes
1answer
12 views
Clone instead of move in jquery ui and angular js
Currently I am working on a project with angular Js. I am creating two div with drag and drop
Here is the jsfiddle
What I need is that when I drag a div into another then it should clone intead of ...
0
votes
1answer
22 views
Saving jQuery UI draggable value?
I need help figuring out the best solution, I simply want to take jQuery UI draggable value and save it.
Im reading up on ajax, but I am not sure how to implement ajax and the PHP database (im using ...
0
votes
2answers
41 views
C# for Confirm box when click on the button
net MVC3.following is my view,
@using (Html.BeginForm("InsertDetails", "Home"))
{
<h2 class="filter">Associate Details</h2>
<fieldset class="fs">
...
0
votes
0answers
11 views
Unable to update jQuery mCustomScrollbar
I'm using custom scrollbar from http://manos.malihu.gr/jquery-custom-content-scroller/ .
I'm using it on a div which contains gridview. when a new row is added to Gridview, and it exceeds the size, ...
0
votes
0answers
37 views
how to create windows 8 look and feel but with expanding divs?
I'm trying to create an interactive UI for a puzzle like game where I have a set width for a container and within it 6 square divs (each will be 150x150px). 1 div will expand open on page load. Only 1 ...
0
votes
0answers
11 views
CodeIgnitier CSRF protection how submit form which is loaded via jquery tabs
I'm working on some backend project and want to load form via jQueryUI tabs
<div id="parameters_tabs" style="width:920px;">
<ul>
<li><a ...
0
votes
0answers
11 views
jQuery's resizable() method is acting nuts
I've been having a LOT of trouble taming the resizable() method. I had a element that I had built, called an "ImgBox" that contained an img tag and it was that img that I wanted to make resizable. The ...
0
votes
1answer
15 views
Manually activate tabs jquery ui 1.10.3
I am really getting mad, I searched through jquery ui doc and stackoverflow's questions (tons of questions) but I cannot figure out how to manually activate tabs ( .tabs() ) in jquery 1.10+ .
I ...
0
votes
1answer
14 views
JQuery UI dropdown list item limit?
Is there a limit to how many items can be populated inside a dropdown list? I am dynamically loading around 500 items to my jQuery UI drop down, it appears to load but if try to select the dropdown to ...
0
votes
1answer
20 views
How to target the close button in a dialog window frame?
I am using a jQuery dialog and I would like to add some functionality to the close button in the upper right and corner of the dialog frame. Can I accomplish this by simply adding a close function to ...
0
votes
2answers
22 views
Buttons to update jQuery datepicker by 30/60/90 days
I have your standard jQuery datepicker all default options. What I am trying to add is add a .net or HTML buttons that will populate this datepicker with todays date + 30/60/90 days.
<asp:TextBox ...
0
votes
1answer
20 views
Jquery slideToggle particular div
Respected ppl ...
This is my markup :
<div class="row-fluid">
<div class="span12 card card-even">
<div>
<h3>Case 1</h3>
<a href="" ...
0
votes
3answers
28 views
Jquery appending with styling and functions
i appending buttons with some IDs and i use those IDs to make on click stuff
when it appending didn't take button() effect
and on click it don't take the function that I created it for this button ...
0
votes
1answer
14 views
Why is src different for ui.draggable.attr('src') and ui.draggable[0].src
I'm using jQuery drag n drop to drop a thumbnail image into a div and I notice in the drop handler that if I pull the image src with:
src = ui.draggable.attr('src'); // brings back relative path
...