Hi,
When I drop an item into a sortable list, can I modify its elements? I basically want to add a few buttons to the item when dropped, right now it's making a perfect clone of the source item. Example:
<ul id='listSource'>
<li><p>Hello!</p></li>
</ul>
<ul id='listDestination'>
</ul>
so when one of the "li" items gets dropped in...
I have two problems.
I am developing web application in Lotus, and Lotus likes to take control of the situation and insert code where it sees fit.
I am using Jquery UI to open a modal dialog window. If I simply open and close the dialog, then try to submit the parent form, I get a __click is not an object. When I took a closer look a...
Hello,
I have simplified my work for this question but the same problem remains. I am using the Textbox HTML helper to display empty textboxes as I loop through the items in this model.
<% foreach (var item in Model) { %>
<tr>
<td><%: item.ID %></td>
<td><%: Html.TextBox("usernames", null, new { @class = "datepicker" }) %></td>
<td><...
Hi!
I'm using jQuery UI to do some tabs but I wan't one of the tab to be to the right so I figured I'll use jQuery to change the CSS to float:right but that doesn't help.
Do anyone know a better solution or how I can edit the CSS of one tab?
...
In jQuery I call a few dialog boxes in sequence to create a wizard. Despite setting the position to position: ["center", "center"], the dialogs align to left center.
The wizard starts by calling getMoreParams(0). There are 7 divs in the HTML spanning moreParams[0-7].
Please let me know if more detail is required.
See video here.
Code...
For some reason jQuery UI's autocomplete has stopped working for me. I get the same error as is described on this webpage.
I've copied the content of the query from that webpage below, hoping that somebody here will be able to answer it.
Thanks!
I am using Jquery UI Autocomplete to get a list of names. But for some reason I am get...
All,
I am trying to get JQueryUI tooltip and Tablesorter plugin to work together. I am unable to display the JQueryUI tooltip when I hover on the names but they won't appear after I click the "Reset Sort Order" link.
How can I make sure the tooltip is displayed after I click the "Reset Sort Order" link. The tooltip should also be displ...
hi,
I need to use jquery's spinner in my app, problem, i cannot set its size to fit in my app which has a small size, the default spinner size is big and got wrapped up. how can I set the size? Thanks.
...
Hi,
I am using Jquery ui accordion , in that i have a text box as a accordion header , now when i am trying
to type a space in text box accordion change and changestart event fire so how would i prevent this thing while typing space in a input box
...
Hi.
I have some progress bar (search results), which value is dynamically set on document.ready
<div class="progressbar" rel="21"></div>
<div class="progressbar" rel="36"></div>
<div class="progressbar" rel="44"></div>
<div class="progressbar" rel="58"></div>
And
$(document).ready(function () {
$("div.progressbar").progressbar({
...
After shuting down the table sorting function on a jquery sorter table by using:
$("#table_"+appId).tablesorter({
headers:{
0:{sorter:false},1:{sorter:false},2:{sorter:false},
3:{sorter:false},4:{sorter:false},5:{sorter:false},
6:{sorter:false},7:{sorter:false},8:{sorter:false}
}
});
I want to re-open the sorting f...
Hello !
I don't 'speak' english well, pls forgive it to me.
I've a serious problem, soon I'm going to crazy... :-)
I got a job : There is a website, that is contains some ExtJ functions. I have to change these to JQuery functions.
I'm started to change dialogs. Under IE8 / IE7 it works fine, but under FF 3.5.10 it's not perfect.
The...
I have a jQuery Tools Modal Overlay on my website, and it works perfectly fine in both Chrome and Firefox... however, when I view the page in IE8, the black background mask appears on top of the dialog DIV... in addition, the div appears at the bottom of the page where the actual code is as opposed to centered on the screen.
In addition...
Hi:
I like to add a button (which is supported by default) and link jQuery UI dialog. How to add a link in jQuery UI dialog? In my case I like to have Save button and a Cancel link. Thanks in advance.
...
I'm using the JQuery UI Dialog plug-in. Everything works great except for where the "resize" grip icon is being placed. It is in the Left-Bottom corner of the dialog instead of the Right-Bottom corner. I rolled the theme using ThemeRoller as JQueryUI.com. Any ideas???
...
All,
I am trying to get JQueryUI tooltip and Tablesorter plugin to work together. I am unable to display the JQueryUI tooltip when I hover on the names but the tooltip won't appear after I click the "Reset Sort Order" link.
How can I make sure the tooltip is displayed after I click the "Reset Sort Order" link. The tooltip should also b...
Introduction:
Hello Everyone,
I have been looking for days for a way to extend the attached JavaScript code so that it will work as I need it to and have asked on various coding website but nobody seems to know the answer so in a last chance effort I have come here in the hopes that someone will be able to assist me.
About the script...
I have only used jQuery UI a tiny amount and do not know it very well. If I pick up a book on jQuery UI 1.7 will it still be relevant (for the most part) to 1.8?
...
Hi ,
I am using Jquery Accordion and Jquery Sortable and Draggable.
I have created an accordion and i want to make accordion header and its content body draggable at the same time.
now the problem is if is attach draggable/sortable to accordion directly then h3 (header of accordion) and div (content body of accordion) elements are dra...
I have this span that is in a loop and produce multiple results.
what I want is the attribute recordID value when its checked
<span id="row" index="<?php print $i; ?>" recordID="<?php print $row->ID; ?>" Color="<?php print $row->Color; ?>">
<input type="checkbox" style="left:10;" />
</span>
I am using this in my js file to che...