Draggable snapping problem
Hi, In my page I have a number of objects (imgs) that user can drag and drop into a #dropzone div. These objects can snap to each others edges. When I drop an object to #dropzone, I have to clone it and it to the #dropzone. However while during the drag operation the objects snap together, as soon as I drop the object it goes to an incorrect x and y position. I have uploaded the Web page with all the JS files to: https://dl.getdropbox.com/u/34024/Snap-jQuery.zip However the relevant parts are pasted
reload content of a tab
Hello, I have a working jQuery tabs. This works great, apart from one of the tabs which has a flash object embedded into it. The problem is that if the page loads up with this tab, the flash object is displayed, if not the flash object is not shown - it is only displayed if I refresh the page. Also if I switch from tab to tab and going back to the tab with the flash object, it is not displayed. So is there a way in which I can re-load the content of this tab? Many thanks Norman
Sortable nested solution?
I was reviewing the forum for a solution on using the jQuery UI sortable for nested lists. Just briefly, items that are sorted out of the nested list no longer can be inserted as child elements of top elements. Reference: http://groups.google.com/group/jquery-ui/browse_thread/thread/cb30d348dd0eb2f/3bc363a8980ce6e6?lnk=gst&q=sortable+nested#3bc363a8980ce6e6 Does anyone have a way of solving the problem as described in the previous thread? For a visual example of what I mean: http://www.bernardopadua.com/nestedSortables/test/nested_sortable/
Enhance to drag'n'drop: Drag'on'click
Hi, I've modified ui.core.js to allow drag'on'click funcionality, that is, you can allow to init drag just by clicking (click and release mouse button) the item. Then the item will follow the cursor until you stop dragging by clicking again. You can allow this behaviour (or traditional drag'n'drop) with a new parameter passed to draggable class. I've made this to do drag'n'drop funcionality easier for kids. If anyone may be interested i can send you this modification. I think it may be useful enought
Calculate a new date depends on datepicker with a certain offset of days
Hi everyone! I've got a input field with a datepicker. In another field I have a integer value (eg. 10). Now I want to calculate a new date with this offset. I use the datepicker with an own dateform (DD, d. MM yy). How can I solve this problem? Thx for help! Jonathan
Inserting form into modal dialog (newb question?)
I'm a jQuery newb so sorry if the answer is painfully obvious. :D I'm using jQuery version 1.2.6 and UI version 1.5. I'm loading a form into a modal dialog box using the .load method, but I seem to have trouble assigning a click event to the button in my form; it just won't register. I tried including a script block in the form itself, but that gets stripped out when the form is loaded. It looks like it tries to look for the button before the form is loaded and isn't finding it. Below is my code.
Trying to use UI Dialog with .data and dialog.width, dialog.height
Hi there, I am using the jQuery UI 1.5 Dialog and have run across a problem trying to dynamically set the width and height of these boxes. Currently my code receives HTML from an AJAX call and then creates a div, appends the div to the body, fills the div with teh HTML and then calls dialog on this div. Here is the call : form = $('<div class="holder"></div>'); $("body").append(form); form.html(data).dialog({ autoOpen : false, width : 700, height : 450, overlay
jQuery and Accordion plugin
Hi can anyone help? I implemented the Accordion plug-in for jQuery (http:// jquery.bassistance.de/accordion/demo/ - location based example), and am having problems with the js calcualting the height of the nested elements correctly. Basically, it calculates the height of the first element you click and applies it to all the others thereafter instead of recalculating it each time. Has anyone come across this problem before and more importantly have a solutions? I have tried setting heights to the
Anchoring a dialog to a link
I'm using 1.5 ui.base.js and ui.dialog.js for a simple dialog: $("#fscbox").dialog("open"); The dialog itself looks pretty good, but it pops up in the center of the screen. I'd like it to pop up right below the link that triggers it. I'm very new to jQuery in general, so I'm not sure how to go about this. How can I anchor my dialog to my link?
bugs
I new to jquery. my first srcipt is a tab browsing galley for images. this script works fine expect for certain mysterious bug: in firefox sometimes, very rarely, image resize doesn't get executed on first load. upon refresh it works. in safari it loads fine first time but upon refresh image resize and positioning gets messed up. I close the browser window and open a new one load the page and it looks fine. in IE6, it just gives up on image resize. it sets the first 2-3 images correctly and then
[accordion] unobstrusive link on header
hello I set up an accordion menu here : http://www.logedesgardes.com/ the structure is like <h3><a href="/real-link-1.html">First link</a></h3> <h3><a href="/real-link-2.html">Second link</a></h3> <ul class="submenu"> <li><a href="link.html">submenu1</a></li> <li><a href="link.html">submenu2</a></li> <li><a href="link.html">submenu3</a></li> </ul> <h3><a href="/real-link-3.html">Third link</a></h3> <ul class="submenu"> <li><a href="link.html">submenu1</a></li> <li><a href="link.html">submenu2</a></li>
sortable questions/help
Hello: Really having a tough time using Sortable. I've been using it in a web app for over a year now, and with the new version it's not quite as straight forward. Here goes...this is how I'm calling up Sortables... $('div#mytest').sortable({ items: "li.sortableitem", axis: "y", stop: function(){ update_index_sort(); } }); I'm not sure if this is ok...now we have the 'connectedwith' option. What I'm doing here is applying it to a div that holds multiple ul's...and then I apply it further
Newbie question
I hope this is not too off topic. If so, then just ignore it. I am a desktop app developer (.net world) moving to web apps. The tools and technologies in the web world are overwhelming but the user community is fantastic! So I am trying to determine the best environment for my development. My apps will be data intensive. Pretty much mirroring the desktop apps I have developed (e.g. warehouse management, inventory tracking etc). So far, I am sold on JQuery and JQuery UI as the libraries to use and
Bug with resizable dialog on page with scroll in IE6/7
How to view bug: 1. Open page http://dev.jquery.com/view/trunk/ui/demos/functional/#ui.dialog 2. Move dialog to the bottom, while browser create scroll. 3. Try resize Dialog. On click by resize element dialog is jumping more bottom This bug is IE only.
Make .sortable("refresh") update list of elements matching connectWith selector
I'm building a widget that has 2 levels of sortables that lets a user build a form. There are fieldsets and fields, and I'm trying to make it so that you can sort the fieldsets and also sort the fields both within the fieldset, and also moving between fieldsets (they're linked using the connectWith option). That's all built and working now, my issue is that I want to be able to dynamically add new fieldsets (which is easy), but when I add a new fieldset and do a .sortable('refresh'); on both sortables,
Sortables connectWith problem
After a long while with no jQuery development i'm back and the Ui library look very impressive. I'm playing with the sortables now and i found out if you use connectWith and empty one list it's impossible to add a sortable item to the empty list. You can test it on the functional demo. Is this a problem or is this expected behavior?
[Treeview] jQuery SimpleTree Drag&Drop Vs. Bassistance Treeview
I found a fine treeview which exceed mine expectations in this site below: http://news.kg/wp-content/uploads/tree/ Demo: http://news.kg/wp-content/uploads/tree/d&d/ But I wish to use Bassistance Treeview, becouse it's most confiableI I think. My question is: There way to do Bassistance's Treeview create by Jorn Zaefferer work like jQuery SimpleTree Drag&Drop? I wish think like just like edit or somethink match more. Thz.
Problems with ui datepicker and themeroller
Hello, I have created a simple theme with themeroller and tried to apply it to a datepicker but it does not work well. You can see a simple test page at http://www.libertyline.com/tests/roller.html If I use the css that is included in the ui package it works ok (example at http://www.libertyline.com/tests/standard.html) Is this a problem with themeroller? Thanks Daniele
Draggables don't work without dimensions in IE
I'm using jQuery 1.2.6 and jQuery UI 1.5 final to implement draggables. It works fine in FireFox, but in IE any attempt to drag a draggable results in an "invalid argument" error being thrown, unless I include jquery.dimensions.js as well. I was under the impression that the dimensions plugin was now completely a prt of jQuery and the separate plugin was no longer necessary?
[accordion] Issue with inner a hrefs.
I feel kind of silly. I've poured over accordion documentation over two sites and I'm not seeing anything to resolve my issue. First, here is the HTML Code: <li> <span class="ui-accordion-left"></span> <a href="#" class="ui-accordion-link">System : Who's Online <span class="ui-accordion-right"></span></a> <div> <a href="/stuff/" class="action">Remove Application From Role</a> <fieldset><legend>Available Permissions:</legend> <input type="checkbox" name="permission_id" value="5_9"
selection group from widget (drag&drop plus sortable)
hello, I try for some time with drag&drop plus sortable as to be produced in liferayportal or in netvibes a kind selection group from widget to put these then by drag/drop into a sortable. the selection group from widget it not around a sortable. how I can now create it by drag/drop widget with that sortable to connect that the sortable with droppen me create a new widget in such a way into sortable provided. idea? sorry for my english. someone into German to help me here. << hans thx for help.
Making Accordion works within a modal dialog
Hello, How do you make the Accordion works within a modal dialog? I noticed that the Accordion works fine in a modeless dialog but not within a modal one. Once I looked in the jquery-ui-1.5 souce code I found that in the function overlay.create(), which is used by a modal dialog, it binds some functionality. As the result while overlay is shown, the modal dialog will cancel some UI events like mousedown/click/etc for its content, which would trigger widgets' features like Accordion. Is there any
unsubscribe
Closing the Modal Box
Can you help me on designing on this layout? I open a modal box by clicking on an object and I want to close the modal box when the mouse is click on outside of the modal box. Is it doable?
Anyway to have datepicker hide when text-field clicked a second time?
It wouldn't be too hard to add another event handler to check and see whether the datepicker is visible, and hide it otherwise, but this isn't the prettiest solution. Anyone know of a better way to do this? Thanks, Keith
Submit Form to div on different tab
I have a page with two tabs loading an AJAX page in each. I want to submit the form on the first tab and have it display the data in the second tab, in a specific div. I am using Jquery forms with ajaxForm. I have tried using $('#container1 > ul').tabs("select", '#Fees_Selected'); in the beforeSubmit callback, and then just using the specific div e.g. #FeesOwedSelected, in the ajaxForm target. e.g. target: '#FeesOwedSelected' This just opens the results in a new page, which just contains the page
Setting focus on select field when switching tabs
I'm having trouble getting the tabs function to set focus properly when the tab key is pressed. I'm trying to create a form where the user can just press the tab key to move from field to field, even across tabs. In Firefox, it will select a text box easily enough, but in IE, it moves to the *second* text box on the new tab. To make matters stranger, in Firefox it won't set focus on a drop-down select at all. I'll appreciate any help you can give on this. Here's my sample html page, based on the
Download Asian PORN Videos from, Thailand, Japan, China, Malaysia, Hong Kong and the rest of the word.
Download Asian PORN Videos from, Thailand, Japan, China, Malaysia, Hong Kong and the rest of the word. From amateur videos of prostitute fucking in Thailand to brutal and perverted Japanese Sex Videos! Our categories includes deep throat, anal, cream pie, lesbian and other TEEN related content. http://tinyurl.com/3n3cte http://tinyurl.com/3n3cte
Scroll inside a dialog and remember position on reopen
I've created a dialog with the amazing ui / jquery libary. But I want to scroll inside the dialog (overflow : scroll doens't work). I don't want to use a iframe but just a div. Is that possible? Second problem i've got is when I close the dialog and reopen it, the dialog position will be centered again. It remembers the size but forget the position. Hopefully some got some tips. The problems are under ie7 & firefox 3 & 4, so it doens't look like a browser bug to me.
accordion and could be general jquery or js
Hello, I'm using accordion module on one of my sites. Since it manages all the letters of alphabet on the same page that means that I have like 30 accordion initializations on the same page. By using this code: $("#acc1").accordion({ alwaysOpen: false, autoheight: false, header: 'a.acc1', clearStyle: true }); jQuery('#acc1').accordion("activate",false); $("#acc2").accordion({ alwaysOpen: false, autoheight:
anyone try the theme builder?
I was using the default flora them for an app with tabs and dialogs, and I tried a theme from the theme builder, and it breaks my tabs, the tabs never get created. I check paths, files, images, everything, it's all there.
tabs showing and hidding
Hi guys, Love the new jquery UI. I am trying to use it in a new project I'm working on and currently I'm trying to hide/show between two separate tab interfaces and I am wondering how I would go about this. Right now I have two tabbed divs. One with an id of tabWrapper and another with an id of updateTabWrapper. I initialize them like so: $( '#tabWrapper > ul' ).tabs( { unselect: true } ); $( '#updateTabWrapper > ul' ).tabs( { selected: null } ); And when selecting an item from tabWrapper to appear
question about ui tabs and ui development
I have a question about the ui tabs. I am asking this because currently I am using my created tabs because the jquery tabs that were out at the time had an issue with structuring the content like I need and I don’t think that is it a very uncommon thing that might happen. I would like to use the jquery ui as the base on my widget library(since it is now out of beta) and just extend it. lets say I have the following structure: <div id="top_container"> <div id="static_image_container"> </div> <div
UI version 1.5 slider( "moveTo", value, index ) function doesn't work?
I tried to move the slider programmably but the slider( "moveTo", value, index ) function doesn't seem to work at all. this is my code: //add sliders to div $("#slider").slider({ min: 0, max: 15, steps: 15, range: true, handles: [{start:2, min:0, max:14, id:"sliderFrom"}, {start:4, min:1, max:15, id:"sliderTo"}], change: function(e,ui) { console.log("value: " + ui.value + ", range:" + ui.range); } }); $("#slider").slider("moveto", 8, 1); // trying to move the 2nd slider (index=1)
Desi Indian Masala Village Girl's Nude Pics
Desi Indian Masala Village Girl's Nude Pics Young College girl Fucked by Three Professor's in Computer Lab,Watch Desi Videos For Free. UNLIMITED...Nude Sex Show by Mallu Actress in a Malayalam Movie - Mallu Masala,Rambha Meena Reshma Silksmitha Boobs Saree sex shakeela nude ... Sexy nude Indian babes from Tamil sex galleries to hot east and south Indian sexy babes. ********************************************** http://desibeautygirls.blogspot.com/ **********************************************
Draggable speed issues
Hi everyone. I'm developing intranet system with some hard drag&drop functionality. I have from 2-4 draggables (10-15+ is normal) and droppable table with at least 42 droppable TD's. I'm facing some strange performance issues: When I start to drag a draggable it is drawing after a significant delay of 2-3 seconds. Start callback is also called with this significant delay. After 10-15 drag&drop's it gets worse up to 5-6 seconds. I followed some advices found here like destroying draggables after they
UI Shadow Demo page doesn't work
I was reading some random doc on jquery site and I found that this example doesn't work: http://dev.jquery.com/view/tags/ui/1.0.1a/demos/ui.shadow.html Don't know If is a known bug. Bye :-)
How to bind function on event resize Dialog
How to bind function on event resize Dialog?
Change UI resize image
I am trying to figure out how I can change the UI resize image that is used for the resize bar. Also, I want to change the cursor. Right now, js is adding those inline to my div, how can I make it not do that, and be able to set the CSS myself?
proportionallyResize?
I am wanting to get proportionallyResize working, but I am not sure how, and am hoping for an example. Am I correct, that this option will make a div under my resize div expand as I contract the resizable div above?
Next Page