Tablesorter Formatting
Hello, i'm trying to come up with a way to format data within tablesorter, i'm basically looking to auto format number values to currency, and percentages then color that data either red or green to show positive/ negative numbers my data would be provided as 15.4, 26.5, -8 so i would like table sorter to automatically format it based on the column, returning: $15.4, 26.5%, $8 where the first two values are green, and the third in red due to being a negative integer. any help is greatly appreciated.
Event bug
Would be nice to see a little update with bugfix for UI library, specialy for the sortable library on wich all the event are not working
ui experimental gone?
what happened to the experimental ui plug-ins fromt he SVN?
source list and sortable list
Hi all, I am pretty new to Javascript and jquery so bear with me ;-) I went through all the demos I could find but unfortunately I did not find a way to achieve the following: I have a list with draggable items, call it the source list (e.g. a set of Lego bricks). Second, I have a sortable target list of Lego bricks. I would like to drag a brick from the source list and drop it in the target list but in such a way that sorting is active. It is like the demo you can find here:http://interface.eyecon.ro/demos/
How to always reload remote tab content
I'm trying to get a tab to load remote content each time it is selected. This is what I am currently using, which doesn't work. jQuery(document).ready(function($){ $("#mytabs> ul").tabs({ fxFade: true, fxSpeed: 'fast', ajaxOptions: {cache: false} }); $("#mytabs> ul").tabsLoad(5,'stats_main.php');}); The tab's content is loaded, but unless I refresh browser, the newly revised content is not. Can someone provide more clues? TIA
Drag n Drop
I have a draggable div, and a droppable div. How can i make something like this If drop outside droppable revert to initial position else update ?
Sortables in Subversion
Greetings, I checked out the latest UI from subversion and am running into some issues with the sortables component. First, on line 57 I get an error saying the method refresh() does not exist. Second, has the API for this functionality changed? Previously the sortables ran from $ (selector).sortable()... but now it appears as if they work from a ui object that receives a selector? Am I missing something? What's the time frame for a release? A new version is sorely needed. The current sortables is
Sortable Div Lists
I have recently switched from interface to UI -sortables. I am trying to make the 3 column layout that the interface uses by default, and I can sort between 3 lists. the problem I run into is how to get the sortable to attached to the bottom of a new parent. Its probably easier to show: http://beta.wiredbyte.com/drupal-6/?q=gamerpanel if you grab a draggable and drop it at the bottom of a new div, it snaps back to its starting parent. Does anyone knwo a way to fix this, so it appears at the bottom
sortable: no visual refresh during dragging?
Hi there, I'm having a slight problem with an implementation of sortable on one of our site. I have a viewport of horizontal thumbnails that we need to be sortable. Using sortable works perfectly BUT, when we drag an element to sort there is no visual update untill the user stops his mouse for a while. I'm not sure what the problem is exactly but I suspect sortable tries to update the display too often and leaves no time for the browser to actually refresh. I guess the frequency of the updates are
iFrame in Draggable divs
I'm using interface plugin's Sortable feature. When I placed an iFrame in side a draggable div, and when I drag it, that iFrame is getting refreshed. After dragging is cpompleted, it is getting refreshed once. How can I prevent refresh of an iFrame while dragging?
Sortable using a up/down link
I'm using sortable to sort some lists, this is great but I want it to be fool proof for my users. I want to be able to have an up, down, left and right link next to the text so users can click on them to sort the items rather than dragging. I have seen this done in Scriptaculous using Sortable.setSequence but can't find anything similar for jQuery. Any ideas or code? Thanks in advance, Nick
jBox
hi. someone now how to use this plugin for jQuery? is there a documentation in somewhere? thanks lot
Calendar has no style
Hi, I'm new to jQuery and jQuery-UI. I'm using ui.calendar.js to show datepicker and also including themes/flora/flora.calendar.css stylesheet. but the datepicker is bland and ugly with no style whatsoever. Please help me.
tabs load callback function called many times...
Hi All, I've been experiencing a problem where the callback function for the tab load is being called about 4 times. After the 1st call, the page is loaded already, and the spinner image goes out, but the "Loading..." will never change to the actual tab name. Any hints? Here is what I have: var $tabs = jQuery("#tabber ul").tabs( { cache: true, add: function(addedLi, addedDiv) { jQuery("<div class='close' /
Datepicker showon link click
Hi, Does anyone know how to make the Datepicker (calendar) be displayed by clicking on a link next to a textfield. I know it has a button option and a focus option, but our old calendar used to be launched by a link, so users are used to that. Does anyone know how to do that? Thanks, -Roman
Problem with Droppable
Hello there, this is my first post to this group - i hope i will be able to contribute in the future, but today i will need your help. I´m defining a droppable as follows: /* sth before */ $(".gastcontainer").droppable({ accept: ".gast", activeClass: 'droppable-active', hoverClass: 'droppable-hover', drop: function(ev, ui) { oldParent = ev.target.parentNode if(calcRoomFigures(this)) { // does some further evaluation $(this).append(ui.element)
TABS - Error with special characters in fragment
I am using the production (tag) version of Tabs 3. When I have a fragment with a special character an exception is thrown when I click the tab with the special character; "uncaught exception: jQuery UI Tabs: Mismatching fragment identifier." Browser is Firefox 2 under Linux, although this was filed as a bug report by a French translator who is using IE7. The HTML is served in UTF-8 (<head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />...) , and is as follows; <div id="tabs">
Inserting new elements into sortables list
Hi, I'm trying to insert new items into a sortable list, but the new items are not sortable so they mustn't be inheriting some property or initialization routine is missed on them when they're added. My basic code is this: <ul id="items"> <li>one</li> <li>two</li> </ul> <script> // stripped down initialization $('#items').$('#object-list').sortable (); function add_item () { // let's say we have item_html as an html response from the server // that contains a new <li> and its contents $('#items').append
UI release/roadmap?
Please, can you setup a public roadmap of timelines for the next release of jQuery.UI ? I need it to know 'cause in my current project I made heavy use of some ui widget (dialog, mouse, tabs, ..) and I need most of their bugs resolved before I deploy in production (mid february). Thanks, and good job to all UI staff. MarcelloP
Firefox problem with input fields in a dialog
Hi all! I've got a strange problem, if in a simple dialog I put almost one input type=text field, when I show the dialog the input field is not clickable, there's no way to click in the field and get the cursor beam blinking in it! but that happens ONLY with Firefox, with IE6/7 run correctly. I've tested this problem also modifying the ui.dialog.html demo, changing the row 41 like this: <div id="example2" title="dialog title">I have a title and I'm big<br /
Sortable hoverClass no longer existent?
Has the hoverClass property been removed from sortables? Any chance it might come back? Pax, - Stan
uiDialog.draggable is not a function
<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "> <div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Hi guys, and congrats Paul, Liferay is neat company.</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><br class="webkit-block-placeholder"></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">After updating on friday and
jQuery UI: Resizables
http://docs.jquery.com/UI/Resizables/resizable#options I am confused about how the proportionallyResize parameter works with the Resizables library. Is there any documentation for this somewhere that is more complete with examples? How do you keep the object you are resizing with the .resizables() method proportionally sized? I'm new to jQuery so I am probably overlooking something very obvious. :-\ I appreciate your help very much, Darren
How to manually change the 'Loading...' text for Tabs
Hi Klaus, I have 2 sets of tabs in 1 page. I use the default 'Loading...' text for the first set, but I want to replace this text for the second set. How do I set this text when initializing the Tabs script? Thanx.
problem with animate and magnifier
I have built a carousel using jquery animate that animates a series of images left and right based on mouse clicks. I am trying to integrate a magnify effect when the mouse moves over an image. Everything works fine until I actually animate the images. After this, magnifier will magnify the image that was previously (i.e. before the animation) at the spot the mouse is on. Is this a known issue and/or is there a workaround? Thanks, Edward
UI Sortable how to access affected elements
Hello, i'm new in JQuery. could anyone help me to understand how to get access to the affected elements ? so for example change was made $("#axcontainer").sortable({ items: ".container", hoverClass: "hover", update: function(e, ui){ WHAT SHOULD BE HERE ?} }) i have elements like: <div id="axcontainer"> <div id="container1" class="container"> <input type="input" name="blk1"
Question about sub categories in the main tabs
Hi, I try to use the ui.tabs.pack.js and i manage to get the main tab working correctly. I'm using this method for now listed below. I do have a problem about sub categories links on the main tabs selected. When i click on the main tab, it show me sub-categories links. When i click on the sub-categories links, the current tab that was selected got unselected. It somehow default to the first tab again. How can i make it remember the initial main tab i click when i click on the sub-category of the
umlaute
Hallo Leute, ich baue mir mit den querytabs ne seite auf. lese informationen aus der datenbank aus. diese informationen sind z.b. namen. einige namen lauten müller, möller schweißer,.... die umlaute werde nicht angezeigt. was muss ich wo umstellen damit diese als umlaute angezeigt werden. 10000 dank torsten
Sortable very slow on linux [Firefox/Epiphany] not Opera
Hi, When i drag element of a sortable exemple, the element is very laggy, but when i release it, he came back normaly : http://docs.jquery.com/UI/Sortables In this page i don't have any problem : http://docs.jquery.com/UI/Draggables Have you notice some bug ?
modal dialog?
Hi there, Is there a way to make the UI-Dialog modale, in a thickbox sort of way? That is with an overlay below the dialog, covering and fading out the page content below? Thanks, Tim.
scrollTop not a function
Hello, I have a problem width dimensions. After updating jQuery to 1.2.2, I have problem with scrollTop function - firebug told me that this is not a function. I have jQuery 1.2.2 and jquery.dimensions.js 1.2 Can understand why this happens ;(
Keep Accordion Open?
Hello, I am using an accordion with a list of main categories, each with a list of sub categories (so just 2 levels of hierarchy). When you click a sub category, a nearby div element is populated with a list of products via Ajax. The normal behavior for the accordion when you click the sub category is to close. I'd like it to stay open when a sub category is clicked, kind of like what the navigation option does. The navigation option doesn't seem to suit my needs because the URL isn't changing because
Tablesorter - sorting by iso date positioned within markup inside cell?
Due to circumstances beyond my control, I am trying to come up with a method to sort a column by iso date. The cells however, contains a number of markup containers, and the iso date is encapsuled in the first of these containers. I have tried to set the inline sorter options with the metadata-plugin, but it doesn't do anything. I've also tried to use text extraction pretty much as the example on tablesorter.com, but only traversing: node.childNodes[0].innerHTML; - since the container holding the
Problem in popup window
Dear Members, I am new user of jquery. I am trying to implement floating windows. It's is working first time fine with error jQuery.dequeue is not a function e()interface.js (line 12) complete()jquery.js (line 3093) e()interface.js (line 12) e()interface.js (line 12) [Break on this error] eval(function(p,a,c,k,e,d){e=function(c) {return(c<a?'':e(parseInt(c/a)))+((c=c%... and we close window it will generate another error. My code is same as given in demo, Please resolve it, Thanks
Missing mode in droppable?
I've found the need to add a mode which calculates strict intersection between two blocks (based on whether their sides cross). To add the new mode, you can just include the extra 3 lines shown in the toleranceMode switch below. Then choose 'sidescross' in the tolerance. Did I somehow miss that this is the same as some other mode? Intersect, which you would think is the same as 'sidescross' seems to require that a quarter of the block is covering the other. The modified tolerance switch code is readable
Downloading Query Sortables
HI Guys, I have downloaded the compressed sortables UI using the Download manager from ui.jquery.com which includes the draggable and droppable components as well. When i try and execute something like #("mylist").sortable({}); i get "#("mylist").sortable is not a function" as a javascript error. If i use the individual files used in the sorting examples (jquery.dimensions.js, ui.mouse.js, ui.draggable.js, ui.droppable.js, ui.sortable.js) it works fine. Can anyone give me some hints in getting the
.resizableDestroy is not a function - error
I am getting '.resizableDestroy is not a function' when calling resizableDestroy(); //clickfunction to create $('div#pick').click(function() { $('form#textEdit').hide(); $('#canvas').css('cursor','default'); $('div.movable').click(function() { $(this).resizable().draggable({containment: 'parent' }); }); }); //clickfunction to destroy $('div#text').click(function() { $('form#textEdit').show(); $('div.movable').resizableDestroy(); });
Fixing bookmarking with Tabs
I've created a test page to demonstrate an admittedly limited fix for bookmarking when using jQuery UI's tabs. I was wondering if a generalized case could possibly be worked into the tabs plugin itself. Any help/suggestions/feedback would be appreciated. Take a look at the demonstration here: http://www.davidandcollin.com/JQuery/bookmarkable_tabs.html
UI Tabs memory leaks in IE6
I'm finding several memory leaks in IE6 due to jQuery UI's Tabs plugin. Has anyone else seen this? I'm using Sieve, and leaks are reported on each tab container UL, and each tab LI, A, and tab container DIV. I traced the issue to several vars set in closures that are never cleaned up. Also, the event handlers are never unbound. Here's what I cleaned up: 1) In $.fn.tabsSelected : Set $li = null, as follows: $.fn.tabsSelected = function() { var selected = -1; if (this[0]) { var instance = $.ui.tabs.getInstance(this[0]),
Drag and drop, and drag some more?
How do I clone something that's being dragged and dropped, and have the clone be draggable? ---------------------------------- I'm just starting to migrate some drag-and-drop code that uses X library to jQuery. What I had before is an interface like this: 2 DIV containers, "frombox" and "tobox". In frombox there's a bunch of images ("items"). When you drag one from frombox to tobox it's copied. When you drag it back it's deleted. I had this working before, but I'm right now I'm stuck at one problem
Next Page