Hello, I would like to use jqGrids as the subgrids for each row as its
expanded. To that end, I have modified jqGrid to allow the dynamic
creation of jqGrids that are set as the subgrid.
The idea is to have jqGrid nested inside another jqGrid.
This code is a work in progress and is probably qui
Good questions McLars... Thanks for the extra info. I was not sure if
it was just me, a moderation thing, or combination thereof.
I personally do not mind waiting to see my post... I opted to only
view my messages online, so I am not sure if messages show-up faster
via email.
Either way, I am so
I've now got it doing what I want, thanks to the .prevAll() selector.
However, the closing portion of my JS doesn't seem to work:
$(document).ready(function() {
$("#tabs > li").addClass("closed")
$("#tabs > li.closed").click (function() {
$(this).animate({top:'-3
Hey guys,
I'm hoping you can help me troubleshoot something. If you look at the
following link in FF and click on any of the thumbnails under "Photos",
you'll see that the lightbox appears correctly.
http://dev.healthybuyersclub.com/guide/detail.cfm?id=2
If you look at the same page in IE7,
Guys, there already is that feature available. It's just called a
little different: $.ui.ddmanager.prepareOffsets(); (I guess). Please
try if it works for you. Thanks.
On Dec 20, 11:06 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> If you could file a feature request ticket here, I'd be happ
I have this navigation, pretty basic really:
http://ghettocooler.net/stuff/code/jquery/push-nav/
But, If the user clicks on a list item in the middle, for example, I'd
like all the Items above it to be triggerd, as if they were clicked as
well.
So, user clicks on a navigation item & it pushes a
> We've landed about 20 more bug fixes since the previous 1.2.2 beta and
> we'd like to do a quick sanity check before we go live.
John, is there any formal procedures for beta testers? I'd be happy
to lend a hand, but I'm not really sure what you're looking for...
Thanks,
Nathan
Suppose this piece of css, how would I get the values for top, margin-
left or padding?
#divname {
top: 0;
margin-left: 1px;
padding: 7px;
}
Setting this is easy:
$(#divname).css('height', '200px');
And getting it also:
var foo = $(#divname).width();
or
var foo = $('#divname').get(0
I am looking for an experienced jquery developer to work with me on a
project?
Any recommendations are welcome. :-)
Please contact me at mike -at- yadab -dot- com
pedalpete, I am having this very same issue. Is there something
specific you had to do to get jquery to work on returned forms?
Thanks
On Dec 18, 5:35 pm, pedalpete <[EMAIL PROTECTED]> wrote:
> Thanks for your help Hamish,
>
> I just got this working with the ajaxForm plugin.
Hi All
I 2 droppable objects "FormObject" and"RadioComposite" object .There
is another object "RadioObject".
What i am trying to do is drop RadioComposite into FormObject and
then drop RadioObject into RadioComposite.
As of now, i can only drop RadioComposite into FormObject. After which
i am un
I'm sure this is something simple, but I'm fairly new to programming
and very new to jquery.
I have a table where each cell has a unique id. when the user hovers
over the cell I display some options which loads a form based on what
the user selects...(not important).
Anyway, everything works gre
> Here's what
> I was thinking of, untested:
>
> $(document).bind("myEvent", subscriber_element, function(event) {
> alert("I received an event without subscribing!");
> alert("my node type is "+event.data.nodeType);
>
> });
>
> $(document).trigger("myEvent");
>
> The basic idea is to pass
Keeping in mind that the $.get() and $.post() methods are just
convenience wrappers for $.ajax(). You could do the same with this:
$.ajax({
url: "/test/ajax/record/",
type: "POST",
data: "test=" + $("input[name=test]").val(),
success: function (data) {
alert("Successfully saved
Rob,
Imediately after the innerText post, I posted another message saying
exactly what you said above. It did not work in firefox. So I had to
change it to:
$($('#searchDataTable)[0].rows[rowid].cells[colid]).text();
I think there is something wrong with this forum software, cause I do
not see th
Very cool post detailing 50 jQuery plugins:
http://www.noupe.com/ajax/50-amazing-jquery-examples-part1.html
Rey...
BTW, This seems to be an IE only problem. Works fine in Firefox.
Hi!
You can check this one: http://code.google.com/p/syntaxhighlighter/
and yes )) its near - at Google Code ;-)
On Dec 20, 2007 8:27 PM, Erik Beeson <[EMAIL PROTECTED]> wrote:
> Chili is probably your best bet. I whipped up a little example that does a
> little post processing to add line number
Hello,
I have a chunk of code that animates fontsize changes with the units
set to em. The animation is a bit wacky. Am I doing something wrong or
have I found a bug?
#test {
font-size:1.2em;
}
http://www.google.com";>Test
$('#test').mouseover(function() {
So many bug fixes!
keep up the great work guys,
would be nice to get these (http://dev.jquery.com/ticket/2079) fixed
up though :D
Merry xmas to all jQuery team/community!
Byron
Ah do you have a copy of the form, so I can see exactly what you're doing?
- jake
On Dec 18, 2007 7:29 PM, Jesse R. <[EMAIL PROTECTED]> wrote:
>
> The request is still failing. Any other ideas?
>
> On Dec 18, 11:37 am, "Jake McGraw" <[EMAIL PROTECTED]> wrote:
> > The problem is that the form is
nice work. a good start
select rows or cols - and be able to copy (just them to copypaste) shift
clicking
sorting (excel can exclude header cells)
double click to edit in place (I see you can put the value in the top, but
that alot of backward and forewards with the mouse)
transform cell referance
Replace // ? with:
$(function(){ // 1
$("form").submit(function(){ // 2
var value = $(this).find("input[name=test]").val(); // 3
$.post("/test/ajax/record/",{"test":value},function(){ // 4
alert("Message sent successfully!"); // 5
});
return false; // 6
});
});
Notes for
Hi Nathan,
It's kind of hard to debug your example without knowing the context of the
html and css. Do you have a sample url?
Cheers,
-Jonathan
On 12/19/07, cfdvlpr <[EMAIL PROTECTED]> wrote:
>
>
> if( $.browser.msie && (jQuery.browser.version < 7.) ) {
> $('div##rightShoppingCartButton
jjshell,
The easiest way is to use the form plugin:
http://www.malsup.com/jquery/form/
On 12/20/07, jjshell <[EMAIL PROTECTED]> wrote:
>
>
> Hello,
> I'm new to jQuery (and AJAX for that matter). Even if the library is
> really easy to use, I'm still having problems "ajaxing".
>
> I'd like to unde
Hello,
I'm new to jQuery (and AJAX for that matter). Even if the library is
really easy to use, I'm still having problems "ajaxing".
I'd like to understand how to post the following simple form to the
server, and send a message to the client depending on the submission
process output (telling him
Using the meerbox plugin, we were unable in IE6 to get bottom corners to
"move" correctly when the content inside the rounded box changed height
dynamically. The bottom line would move, but the corners would not. We
also had some troubles in IE6 with the bottom line appearing approx 2px
off f
This error does NOT depend on an AJAX-queue!
The autocomplete plugin sets an internal focus variable and if it is
not set then the autcomplete listing is not shown.
I added an option for focus. The option sets the internal focus and
also sets the cursor into the field:
$(document).ready(functio
Well IE doesn't support the canvas tag natively, so you must be
including the script. If you look at the examples you will see they
include it too (conditionally).
Mike
On Dec 20, 2007 11:41 AM, Alexsandro_xpt <[EMAIL PROTECTED]> wrote:
>
> uhmmm...Good, but
>
> You tell us the #1 requires the
Chili is probably your best bet. I whipped up a little example that does a
little post processing to add line numbers:
http://erikandcolleen.com/erik/projects/jquery/chililineno/
There might already be an option for it in Chili, and there's probably a
smother way to apply it than I'm doing, but I
uhmmm...Good, but
You tell us the #1 requires the additional excanvas script for IE, I
using that and I no need any additional, and it´s working so good for
IE 6 and 7.
Alexsandro
Awesome. Thanks for giving me something to chase down.
i spent 3 hours and i cant make it work, if someone can helpme pls, i
try to integrate this:
the remove class and the pause/resume cycle
jQuery("#btn_pausa a").bind("click", function() {
jQuery(this).addClass("current").parent().parent().find("a").not(jQuery(this)).removeCl
Hi
Is the zoomed image being ajax loaded each time the thumbnail is hovered ?
I have a slow and erratic Internet connection, and when I hover the
thumb, I just see a little brown square in the inner top
of a big grey square. It then takes a few seconds before to see the
zoomed image. You may co
We just had a user on Mac 0S 9 with an old IE browser call in and say
the thickbox would not load.
If anyone has a solution for how to detect when the thickbox doesn't
load, I'd really really love to know about it.
Thanks Christian!! That worked out great. Thanks again for your time
and the plugin, of course.
On Dec 20, 3:02 am, "Christian Bach" <[EMAIL PROTECTED]>
wrote:
> Hi Jay,
>
> There was a small bug in the parser.
>
> This works as expected:
>
> $.tablesorter.addParser({
> // set a unique id
Hi Everyone -
We've landed about 20 more bug fixes since the previous 1.2.2 beta and
we'd like to do a quick sanity check before we go live.
http://code.jquery.com/jquery-1.2.2b2.js
Please pay special attention to $(document).ready() in Safari 3 and
Opera 9, .height() and .width(), and IE garba
It's probably common knowledge that changing opacity in IE7 disables
cleartype. Someone seems to have come up with a workaround:
http://mattberseth.com/blog/2007/12/ie7_cleartype_dximagetransform.html
Is this a viable fix? If so, how likely is it that this solution would
be incorporated into jQu
> I would ask for borders too, if possible, and, if I may, it would be
> great for anti-alias too as made in CurvyCorners.
> That would made it excellent.
Borders are possible, just not super thin borders. See the demo pages
referred to in the source file. Anti-aliasing will not be added to
thi
Hi Larry,
Nothing stupid at all about your question.
Brandon or John can correct me if I'm wrong, but I think the behavior
of the remove() method has changed recently in svn. With recent svn
versions, the elements are completely destroyed (to avoid memory
leaks?). Clearly I'm not the most
Hi, somebody know the www.meerbox.nl corner plugin? it´s jquery based
too.
But what that is better?
1 - www.meerbox.nl
2 - http://jqueryjs.googlecode.com/svn/trunk/plugins/corner/jquery.corner.js
3 - http://www.malsup.com/jquery/corner/
Somebody knows?
Thz
I don't use jQuery for IPhone, but I do code for it. I suppose the
problem is the delay of the interval. While a normal browser handles
20ms pretty well, the IPhone seems to go mad, see if you can find that
number in the source and change it for 80 or 100.
Ariel Flesler
On Dec 19, 7:11 pm, kpmar
Absolutely Renzi! That's why I wanted to make sure that everyone on the
list knew it had been updated. Always be sure to let us know about
updates and new plugins. :)
Rey
[EMAIL PROTECTED] wrote:
Do you like it?
it's my plugin.
Ing. Renzi Marco
On 18 Dic, 06:31, Rey Bango <[EMAIL PROTECTE
Very cool plugin !
I'll use it soon !
thanks
Cordialement,
Vincent Majer,
Responsable technique,
TraveLinks
[EMAIL PROTECTED] a écrit :
Do you like it?
it's my plugin.
Ing. Renzi Marco
On 18 Dic, 06:31, Rey Bango <[EMAIL PROTECTED]> wrote:
JQZoomhas been updated to v1.1
http://www.mind-p
UI Sortable seems a great tool but to be sure it suits my purpose I
need to know if it implements the possibility to create further
levels, ie if an item is dropped over another item, it would be nested
in that one. The demos I've seen don't work that way but it would be a
pity (and even a bit abs
Knowing the basics of jQuery helps. Then being able to project what you
know for the easy problems onto the harder problems is also a good
skill. In this case, knowing the basics that .text() gets the text of
an HTML element is the starting point. This is defined in the docs, and
after some
Hi jQuery group,
The simple piece of code below is designed to highlight table cells
whose class name is that of the currently hovered one (to visually
group them). In my example the class name itself is film + id (film1,
film2, etc) so I use the [attribute^=value] selector. OK to that
point, but
Does the class that you are applying to your set the background-
color on the itself? If so, you might want to try modifying your
CSS a bit to apply the background-color to the elements in your
like:
tr.newClass td {
background:#ff;
}
Hope this helps.
On Dec 20, 4:31 am, JQueryProgr
Do you like it?
it's my plugin.
Ing. Renzi Marco
On 18 Dic, 06:31, Rey Bango <[EMAIL PROTECTED]> wrote:
> JQZoomhas been updated to v1.1
>
> http://www.mind-projects.it/blog/?page_id=14
>
> It acts as a magnifier for images.
>
> Rey
hi all
i'm trying to learn jquery and cluetip and have come across a problem
where an extra line of jquery javascript causes cluetip to stop
working
eg it works if I write
$(document).ready(function() {
$('a.player').cluetip();
});
but if I write
$(document).ready(function() {
$('a.play
I know I saw something a while ago, but can't seem to see it on the
Plugins page. I'm looking for a plugin that can do syntax coloring and
row numbering for when I need to post code samples to my web pages.
The best I've found so far is Chili for the syntax coloring. But it's
samples don't s
Sometimes the order of your CSS definitions make a difference. If
"newClass" is defined before the other CSS being applied you can try to
move the newClass definition below.
Next, make sure your selector is working. Try something like
$(this).css("background-color", "#f00"); If you don't se
Hi Mike, thanks a lot for the plug-in!
I would ask for borders too, if possible, and, if I may, it would be
great for anti-alias too as made in CurvyCorners.
That would made it excellent.
That said, is it possible to use the wrapping div without previous
knowing its size and so image size?
I.E.
we have a table where every 2nd table-row provides some detailed
information on the row above.
structure:
main content ... ...
subcontent ...
and so on ...
now, I´d like to sort the table without rearranging the tr's with the
class extended.
is this possible? if yes, how?
anot
Have you tried giving your row a specific class instead of using name?
eg.
$('tr.myRowClass').hover(
function() {
$(this).addClass("newClass");
}, function() {
$(this).removeClass("newClass");
}
);
On Dec 20, 4:31 am, JQueryProgrammer <[EM
If you could file a feature request ticket here, I'd be happy to take a look
at it:
http://dev.jquery.com/newticket
Thanks.
- Richard
On Dec 19, 2007 6:11 AM, Karl Delandsheere <[EMAIL PROTECTED]>
wrote:
>
> Hi!
>
> I'm moving a project from Interface to UI.
>
> When it was working with Interf
Hi Jay,
There was a small bug in the parser.
This works as expected:
$.tablesorter.addParser({
// set a unique id
id: 'dates',
is: function(s) {
// return false so this parser is not auto detected
return false;
},
format: fu
57 matches
Mail list logo