hi,
we have a page A with an embedded iframe B (which is quite long, but
most of the time the content only fills the part at the very top).
Displaying a simple-modal centered in the iframe B results (obviously)
in the modal being located in the non visible area. So we're wondering
whether there is
Does this address the behavior in IE? With a multi select, clicking
tab works to select a new item (as it does in most browsers) but click
on your chosen item replaces the first selected item and leaves the
stub.
So for a set of, say, (Apple, Orange, Banana, Pear), typing "App" will
bring up the
Hi Mike.
Tablesorter used to support colspan until i found a bug in the
checkCellColSpan function. I quick fixed it by removing the function called
and forgot to update the docs.
I have a new implementation on the way.
Regards
Christian
2009/9/5 Mike Alsup
>
> > Ive used the tableso
Hey Mike,
I have the same problem on my site. I added the cleartypeNoBg but
nothing happens, it just was fixed when i use cleartype but, the text
goes ugly :(
any idea?
thanks a lot,
On Mar 29, 11:09 am, Merindol wrote:
> Great option !
> And the text is no affected.
> Thanks to you.
>
> Mik
, but so far without luck.
Thanks a bunch
-Christian
l: false,
showInfopane: false,
embedLinks: false
});
}
window.addEvent('domready', startGallery);
Thanks again for any info.
On Jan 23, 4:43 pm, Christian wrote:
> Sorry for not being clear... My fault.
>
> If you go towww.usm.edu/music, you'll see the template as it shoul
can't seem
to find a command that declares the size of the field.
Thanks again for looking at this for me
On Jan 23, 4:22 pm, jay wrote:
> I get javascript errors in IE, and the images overlap the content in
> firefox.. what am I looking for exactly?
>
> On Jan 23, 3:03 pm
Hey everyone.
I'm still a bit new to the whole jQuery world. I love what I've seen
so far, and it seems fairly simple to implement on a site.
I recently viewed a web site through promotion on
ExpressionEngine.com, and found the slideToggle effect. I asked the
web admin if they can forward me w
Hi
I have made a small script that loads content via ajax.
The site in question uses superfish for a menu, and I would like to
update the state of the menu, when I load new content to the content
area.
The menu is a 2 layer menu, and the second level will show the items
for the current level 1,
Im trying to do something like this:
joe would click somewhere on the page, type in a message and hit
submit/enter. all of that is done with javascript. javascript also
figures the X/Y coordinates on the page and then sends an AJAX request
(would best in JSON format) saying user Joe wrote "Hello
I have a little problem with the following code,
alert('start');
$.post("ajax.asp", { email: email },
function(data){
alert("Data Loaded: " + data);
});
// should wait until Data Loaded
alert('start2');
$.post("path.asp", { email: email }, validateReturn)
www.BrandonsCastle.com
Bettina, try downloading the latest development version:
http://jqueryjs.googlecode.com/svn/trunk/plugins/tablesorter/2.0/
And see if it fixes the problem, there is a bug in the 2.0.3 version that
doesn't auto detect number if the equal zero.
/Christian
2008/5/20 Hamish Campbell &l
Hi,
The plugin name changed with the 2.0 release to ".tablesorter()".
Check out the docs @ http://tablesorter.com
/Christian
2008/5/20 Luciano <[EMAIL PROTECTED]>:
>
> hi,
> i want create sort table in 3 tables byclass
>
> the code:
>
Check out the docs @ http://tablesorter.com
The constructor name is know lowercased to .tablesorter();
/c
2008/5/9 lamp5matt <[EMAIL PROTECTED]>:
>
> I inherited an app with a lot of tablesorter implementations, but
> wanted the zebra functionality -- alternating css-styled rows -- so i
> upgrad
Hi Kevin,
Take a look at the source of this page:
http://tablesorter.com/tests/checkbox.html
There is a special ie-checkbox widget, i wrote to deal with the checked
state not being fired correctly in IE6.
Happy tablesorting!
/Christian
2008/3/25, Kevin Scholl <[EMAIL PROTECTED]>:
>
_
> Karl Swedbergwww.englishrules.comwww.learningjquery.com
>
> On Feb 10, 2008, at 3:02 PM, Glen Lipka wrote:
>
> > How about this one:
> >http://plugins.learningjquery.com/cluetip/
>
> > It has a mousetracking option.
>
> > Glen
>
> > O
Hey guys,
iam using a great piece of JavaScript-Code from time to time, its
named "BoxOver" and is a ToolTip-Script for JavaScript which can be
found here: http://boxover.swazz.org, some examples:
http://boxover.swazz.org/example.html .
I've searched for a similar Plugin for jQuery, but nothing
Hi Guys,
I will see to it that i incorporate this into the next bug fix version of
tablesorter.
Thanks for spotting it!
/Christian
2008/1/17, Cesar <[EMAIL PROTECTED]>:
>
>
> I encountered this bug the alternate fix, if you want to use version
> 2.0 of the metadata plu
Hey guys, i dont get it...
Ive made a little Ajax-App, where some profile-data is coming with an
JSON-File. So i get the profile-url and the avatar-url out of JSON.
Works fine in FF and Opera, but IE6 and 7 give me something like
"ffavauri is Null or no Object".
You can find the Script here: htt
is is just a Firefox problem, in IE and Safari it works. I
couldn't find a similar post yet so I'd really appreciate your help!
Thx and a Happy New Year!
Christian
{
if(m[i] == s.toLowerCase()) {
return (i+1);
}
}
},
// set type, either numeric or text
type: 'numeric'
});
/Christian
2007/12/19, Jay Fallon <[EMAIL PROTECTED]>:
>
>
> Hi Christian, t
+) {
if(m[i] == s.toLowerCase()) {
return (i+1);
}
}
},
// set type, either numeric or text
type: 'numeric'
});
/christian
2007/12/18, Jay Fallon <[EMAIL PROTECTED]>:
>
>
> It's easy
Hi,
there is a new undocumented features for this type of behaviour take a look
at:
http://tablesorter.com/docs/example-triggers.html
/christian
2007/12/12, Arturo <[EMAIL PROTECTED]>:
>
>
> I use a code to bgcolor odd table rows in my tables. Something like:
>
>
>
Hi,
Just extact the value of the input fields and replace it with a text node.
This is untested but should work:
$("input:text").each(function() {
var $this=$(this);
$this
.after($("")
.html($this.val()))
.hide();
});
/c
2007/12/7, Johan_S <[EMAIL PROTECTED]>:
>
>
> Hello.
>
Nope, nothing wrong in what you are doing.
Just make sure that trigger is called on the table and not the row.
Ex.
$("table").trigger("update");
/c
2007/12/3, Adam Kroll <[EMAIL PROTECTED]>:
>
>
> I'm having problems with tablesorter 2.0.1 and removing rows. I'm
> allowing users to remove ro
Hi Guys,
This issue has been resolved in the latest tablesorter release.
Get it from: http://tablesorter.com/
/Christian
2007/11/29, pambuk <[EMAIL PROTECTED]>:
>
>
> Hi,
>
> I have the exact same problem and frankly, I'm out of ideas.
> Last thing I tried wa
Hi Scott,
The parser will parse the value inside the table cell and store it's values
in a huge array representing the table data.
This is done only once per column and sorting direction. So setting a max /
min value will only display the right way in one direction.
/christian
2007/
Hi Joe,
Are you passing any sorter options to tablesorter?
/christian
2007/11/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
>
>
> Has anyone been seeing the following in the firefox error console when
> sorting a tablesorter:
>
> parsers[i] has no properties line:482
&
HI Shawn,
Yeah your right, will add it to the docs as soon as i have the time.
Thanks for the feedback!
/christian
2007/10/3, sgrover <[EMAIL PROTECTED]>:
>
>
> I'm using the tablesorter plugin (Excellent work! - makes my job MUCH
> easier). But I found a slight flaw
try: jQuery('#foo\\.bar\\:filter');
2007/9/27, ravenel <[EMAIL PROTECTED]>:
>
>
> Hello jQuery Coders!
>
> Since it is allowed to use ".", ":" in the id-Tag (http://www.w3.org/
> TR/html4/types.html#h-6.2)
>
> I wonder how I select it while using the jQuery Selector Syntax?
>
> jQuery('#foo.bar:
To change the date-format to the one you requested just pass the dateFormat
options like this:
$("table").tablesorter({dateFormat: 'uk'});
/christian
2007/9/26, Jean <[EMAIL PROTECTED]>:
>
>
> Unfortunally i´m a jquery noob =/
>
> On 9/26/07, Christian B
I like the idea!
I don't have the time to put together such a solutions, is anyone interested
in helping out?
/christian
2007/9/26, Kia Niskavaara <[EMAIL PROTECTED]>:
>
>
>
> A suggestion is that all parsers (except the basic ones) are removed from
> the plugin
Fabien,
This needs to be done to support the :focus pseudo class.
Getting the stylesheet with the native cssText method will return :focus as
unkown.
/christian
2007/9/23, Fabien Meghazi <[EMAIL PROTECTED]>:
>
>
> > May I ask you why you are fetching inline/remote
Updated the script to support :focus and :after
http://lovepeacenukes.com/jquery/ie6cssfix/
/christian
2007/9/21, Christian Bach <[EMAIL PROTECTED]>:
>
> Unfortunately :after renders as unknown in ie6 :(
>
> So no luck there...
>
> 2007/9/21, Christian Bach <[EMAI
Unfortunately :after renders as unknown in ie6 :(
So no luck there...
2007/9/21, Christian Bach <[EMAIL PROTECTED]>:
>
> That would be way cool, and not to hard to implement!
>
> /christian
>
> 2007/9/21, Brandon Aaron <[EMAIL PROTECTED]>:
> >
> &g
That would be way cool, and not to hard to implement!
/christian
2007/9/21, Brandon Aaron <[EMAIL PROTECTED]>:
>
> Well why not fix :after and :before too :)
>
> --
> Brandon Aaron
>
> On 9/21/07, Christian Bach <[EMAIL PROTECTED] > wrote:
> >
> >
Yeah that would make sense!
A other thing that could be use full is to have a fix for the :focus
selector in IE6.
All though it will be returned as "unknown" in ie6.
If you want to make a plugin and release it it's fine by me.
/christian
2007/9/21, Fabien Meghazi &l
Joel: nope i didn't plan on adding it, but if you want you can add it.
Brandon: thanks man!
Fabien:
1. The script only looks for declarations in the stylesheets, that's the
beauty of it.
2. If it was rewritten to use Brandons exellent livequery plugin it would
work with load append etc.
3. Yeah i
Hi list,
The other day i got feed up with ie6 not having :hover css support so i
decided to fix it.
Here is a simple script that solves the problem:
http://lovepeacenukes.com/jquery/ie6hoverfix/
/christian
Bill,
Try the updated version, it fixes this issue:
http://tablesorter.com/jquery.tablesorter.pack.js
/christian
2007/9/20, Bill Huber <[EMAIL PROTECTED]>:
>
>
>
> Thanks for the great work Christian! I did find that the 2.0.1 packed
> version
> does not work for
Hi,
I can take a look into this issue on Thursday.
One way to solve this would either to have a option in the plugin
constructor that would allow you to specify a row index or use the metadata
plugin.
Do you have a preferred way?
/christian
2007/9/19, tlphipps <[EMAIL PROTEC
Sorry!
This is now resolved.
Thanks for the heads up!
/Christian
2007/9/19, Stoyan <[EMAIL PROTECTED]>:
>
> Anyone gets an error in the tablesortger pager example ?
>
>
> http://tablesorter.com/docs/example-pager.html
>
>
>
> missing ; before statement
>
&g
Thanks Kia, saved a few more bytes!
Removed and updated tablesorter.com with the latest version.
/christian
2007/9/18, Kia Niskavaara <[EMAIL PROTECTED]>:
>
>
>
> Thanks for the update!!
>
> I've noticed that you've included two almost identical sorters:
&
On what page in the wiki did you find tableSorter?
Could you point me to the page so i can change it.
/christian
2007/9/18, Rabbit <[EMAIL PROTECTED]>:
>
>
> Ah, of course. It's tablesorter() -- lowercase 's'. The wiki needs to
> be updated to reflect that, a
Hi Chris,
Nope there is no reason other than that i forgot to delete it.
Its removed now.
Thanks for the feedback.
/christian
2007/9/17, Chris <[EMAIL PROTECTED]>:
>
>
> Is there a reason jquery-1.1.3.js is included in the Zip file when
> 1.2.1 is required?
>
David
Hull)
Speed improvements:
* appendToTable, setting innerHTML to "" before appending new content to
table body.
* zebra widget. (Thanks to James Dempster)
Get it all at http://tablesorter.com
Enjoy!
/christian
date"}}, sortList: [[1,0]],
widgets:['zebra'], debug: true} );
/christian
2007/9/17, Rigent <[EMAIL PROTECTED]>:
>
>
>
> Oops, thanks Christian, that error was only in the post though, not in the
> actual HTML I'm using.
>
> If there's nothing
Hi Guys,
I have been stuck on a small island in Greece the last two weeks working on
project called "vacation".
I will be releasing a 2.0.1 version of tablesorter (tonight or tomorrow)
that takes care of these issues.
/christian
2007/9/16, Rodrigo Moraes <[EMAIL PROTECTED]>:
Hi Rigent,
Try this:
Change:
To:
I will be releasing version 2.0.1 of tablesorter today or tomorrow with
support for jQuery 1.2.
/christian
2007/9/15, Rigent <[EMAIL PROTECTED]>:
>
>
>
> I'm loving the tablesorter plugin, everything works splendidly except I
&g
Hi. I have been on vacation the last two weeks. I will be back next
week so expect a patch then. /christian
2007/9/11, dobosgy <[EMAIL PROTECTED]>:
>
> I think so, that's why I sent this to the discussion list.
> Maybe he haven't noticed this issue yet by himself. :)
>
Hi Travis,
Would it be possible to send me a test-case of your table, "off-list"?
Makes spotting the bug easier for me.
Regards
Christian
2007/8/28, tlphipps <[EMAIL PROTECTED]>:
>
>
> Tablesorter 2.0 rocks! But I think I've uncovered a bug.
>
> I have a
Thanks Brandon and Marshall!
/christian
2007/8/24, Marshall Salinger <[EMAIL PROTECTED]>:
>
> I upgraded from 1.0 to 2.0 in my app and noticed a big improvement in
> speed. It is an excellent plug-in. Dugg!
>
> Christian Bach wrote:
>
> Thanks Rey!
>
> If any
Thanks Rey!
If anyone would like to help me get the word out even more, please feel free
to digg:
http://digg.com/programming/jQuery_plugin_Tablesorter_2_0
Best regards
Christian
2007/8/24, Rey Bango <[EMAIL PROTECTED]>:
>
>
> The press continues around Christian Bach's tab
Thanks Chris,
The docs are know updated.
/christian
2007/8/19, Chris <[EMAIL PROTECTED]>:
>
>
> Two easy to fix errors:
>
> The example code in Getting Started uses tableSorter() several times
> rather than tablesorter(). Threw me off till I compared my code with
&g
Hi Lukek,
I took an other approach to this.
Check out: http://tablesorter.com/docs/example-extending-defaults.html
Regards
Christian
2007/8/20, lukek <[EMAIL PROTECTED]>:
>
>
> Been having a further poke around.
>
> I have done what Christian suggested and merged t
Dan,
You need to include the jquery metadata plugin:
See: http://tablesorter.com/docs/#Download
/christian
2007/8/20, Dan Vega <[EMAIL PROTECTED]>:
>
>
> The examples do not say anything about a metadata widget, should my
> code look like this?
>
>
>
Lukek,
I will supply a fix for this after the weekend. If you cant wait that
long a tip is that if this.config exists that should be extended
instead of the defaults. /christian
2007/8/17, lukek <[EMAIL PROTECTED]>:
>
> Hi,
>
> I have just been playing with the new Tablesor
table. /christian
2007/8/17, Dan Vega <[EMAIL PROTECTED]>:
>
> >From the docs I gather that I should be able to do the following: This
> should allow me to define the parser per column as well as to tell it
> that I do not want the edit column to be sortable. The parser
> defin
],
widgets: ['zebra']
});
It seems that we forgot to document the widgets option, there's always
something :)
I will update tablesorter.com the first thing tomorrow, i really need to get
some sleep.
Regards
Christian
Thanks guys!
I will see to it that i add a short overview to the examples.
/christian
Chris, Glean and Sean: Thanks!
I'm really happy with this release and hopefully it will solve all your
table sorting needs.
/christian
on TH elements
* Support secondary "hidden" sorting (e.g., maintain alphabetical sort when
sorting on other criteria)
* Extensibility via widget system
* Small code size (7,4kb packed)
* Documentation
Get it all at http://tablesorter.com
Regards
Christian
Hi Jarrod,
Would it be possible for you to make a test page and reply with the URL?
It is tested in IE 6 and should work with out a problem.
/christian
2007/8/14, jarrod <[EMAIL PROTECTED]>:
>
>
>
> I've got the tablesorter plugin working great in Firefox. However,
2007/7/19, Kia <[EMAIL PROTECTED]>:
Personally I would prefer if the string wasn't lowercased. I think the
parser should lowercase it (or use the regexp modifier 'i'), if
needed.
I will change this in time for the final release.
/christian
27;t had the time to test them and there of the experimental status.
/christian
rsion is released it will include more parser and
contributed parsers as a optional file.
/christian
That's not the case for me (the sizes are mixed up on the page).
The normal one is 13.15 kb for me and the packed on is 6.73kb. If you
pack using the Base62 encode option you can get it even smaller.
Thanks Sam, i repacked it and got down to 5,2 KB.
Updated the page to reflect the changes:
ht
ase().match(/]*">(.*)<\/a>/)[1];
// format your data for normalization
return (this.type == 'text') ? $.trim(val) :
$.tablesorter.formatFloat(val);
},
type: 'text'
});
It works for a element with text and numeric values.
/christian
Looks promising but I'm having a little problem with numeric sorting.
Here's my invocation and the table header.
$(function() { $("#listclubs").tablesorter(); });
ID#
Club Name
Area
Type
Charter
When the page first appears it is sorted the way I wrote it but if I
click
excellent job christian,
Thanks!
i have one bug to report: consider this html
if the element contains inline styles such as:
once sorted, the style is removed.
I did a quick test, and the style attribute was not removed, perhaps the
style is over-written by a css class?
Tablesorter
ow to change it to the control key:
$("table").tablesorter({
sorting: {
// valid values: ctrlKey, altKey, shiftKey
multisortKey: 'ctrlKey',
}
});
/christian
2007/7/17, Rick Pasotto <[EMAIL PROTECTED]>:
On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote:
>
> The new 2.0 release can be found here:
> http://lovepeacenukes.com/tablesorter/2.0/
Interesting that the packed version is twice as large as the unpacked. :-)
2007/7/17, David Duymelinck <[EMAIL PROTECTED]>:
Christian Bach schreef:
> After another late night, fixing a few bugs, the code is finally ready
> for it's first beta release.
>
> The main new features include:
> * Multi-column sorting
> * In-line support for
pport for rowspan and colspan on TH elements.
* New widget support, more information in the docs.
Hopefully this will take care of all the issues that was related to
the 1.xrelease.
The new 2.0 release can be found here:
http://lovepeacenukes.com/tablesorter/2.0/
Best regards
Christian
located here:
http://lovepeacenukes.com/tablesorter/2.0/docs/
The new tablesorter will be released next week.
Best regards
Christian
quot;).tablesorterClearSorting();
/christian
2007/7/6, Andy Matthews <[EMAIL PROTECTED]>:
Or better yet a "clear sort" button. That would be a bit more useful I
think.
--
*From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *Stefan P
Great point Stefan!
Will be adding it shortly.
/christian
2007/7/6, Stefan Petre <[EMAIL PROTECTED]>:
May I suggest something? When you sort: first click > sort ascending ,
second click > sort descending ; third click > clear sorting.
2007/7/6, tlob < [EMAIL PROTECTED]>
to allow paging etc.
/christian
2007/7/6, MichaL Sanger <[EMAIL PROTECTED]>:
I have same wish, paging is a must! =)
MichaL
2007/7/6, Michael Stuhr <[EMAIL PROTECTED]>:
>
> Christian Bach schrieb:
> > Hi,
> >
> > I put together a demo/preview for the upcoming release
Hi Phil,
In the 1.x release there is a option called disableHeader
Here is a example:
// disable one header from being sorted
disableHeader: 0
//disable more then one
disableHeader: [0,5,8]
/christian
2007/7/5, Phil Glatz <[EMAIL PROTECTED]>:
Christian Bach wrote:
> And to l
sorter will be supported in the same way as the old version did.
I just updated the demo so the reversing on column won't revers all the
selected columns
and an options to append 500 rows of random data (for speed testing).
http://lovepeacenukes.com/tablesorter/2.0/tests/demo2.html
/christian
.
The demo/preview is located here:
http://lovepeacenukes.com/tablesorter/2.0/tests/demo.html
Best regards
Christian Bach
.trigger("resort");
/christian
2007/7/5, Phil Glatz <[EMAIL PROTECTED]>:
On Jul 5, 4:22 am, "Christian Bach" <[EMAIL PROTECTED]>
wrote:
> set useCache: false
>
> then trigger this after the update.
>
> $('#bodytable').trigger(&q
feature: it will contain multiple column sorting.
Best regards
Christian
2007/7/5, Phil Glatz <[EMAIL PROTECTED]>:
I'm using the tableSorter plugin and am having a problem with the
number of rows displayed; I hope I can describe the situation clearly.
I'm building my table
On Jun 20, 2:09 pm, Christian <[EMAIL PROTECTED]> wrote:
> Thanks for the suggestion, but still no dice.
Well, I am working around this in a somewhat hackish way...
var sayhi = function(e) {
alert('hi');
e.halt = true;
$('
else by another
event.
Thanks for the suggestion though.
Christian
On Jun 20, 1:57 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> Christian,
> I am not a 100% on what Event Bubbling is, I searched it, but still no real
> idea.
Yeah, I think I misnamed this thread :-(
It really isn't bubbling as the two event handlers are
On Jun 20, 1:44 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote:
> Tried, return false in "sayhi"?
Yep, no dice. Thanks for the suggestion though.
Christian
les to the new handler (saybye). As I think about it, bubbles is
probably not the right term, but hopefully this makes sense to
someone.
Any thoughts? Thanks,
Christian
hello
hello2
alert($("#B").outerHtml());
/christian
2007/4/10, Fabien Meghazi <[EMAIL PROTECTED]>:
> Correct. Only Internet Explorer supports "outerHTML". Even "innerHTML"
> started off as a Microsoft only thing, but because it was used so
>
Sorry Chris, seems you found a bug.
I checked in a new version that takes care of business.
http://dev.jquery.com/browser/trunk/plugins/tablesorter/jquery.tablesorter.js?format=txt
/christian
2007/4/9, Chris W. Parker <[EMAIL PROTECTED]>:
On Monday, April 09, 2007 12:43 PM Christia
tableSorter({
sortColumn: 0,
sortDir: 1
});
Will sort the first column in the opposite direction.
/christian
2007/4/9, Chris W. Parker <[EMAIL PROTECTED]>:
On Monday, April 09, 2007 12:02 PM Andy Matthews <> said:
> There's an option for default sort. How is the data g
I checked in a new version that takes care of all the problems.
I based my test case on your example, located here:
http://lovepeacenukes.com/jquery/tests/tablesorter-mixed-data-types.html
/christian
2007/4/6, Kim Johnson <[EMAIL PROTECTED]>:
Err... I take that back.
-the only way f
year to a 4 digit format remove the dateFormat
property from the tablesorter constructor.
The new tablesorter version can be found here:
http://dev.jquery.com/browser/trunk/plugins/tablesorter/jquery.tablesorter.js?format=txt
Best regards
Christian
2007/4/5, Kim Johnson <[EMAIL PROTECTED]>:
g a simple way to present mixed data to the user
(string/numbers/etc).
$("table").tableSorter({
textExtractionType: ['title']
});
Row
Number
One
30.00
2
Anyone know a workaround for this? :) Chris
95 matches
Mail list logo