search for: kryogenix

Displaying 7 results from an estimated 7 matches for "kryogenix".

2005 Aug 12
8
Sortable Tables
I''ve put together a little library to provide sortable tables. It is heavily copied from http://www.kryogenix.org/code/browser/sorttable/ (mentioned in the Wish List) but has been modified to match the same form as the prototype.js library and add some new features. I still need to clean up some of the comments, but everything is pretty much working at this point. I posted an example at http://tom-mac...
2006 Apr 24
2
sortable table rows?
I''ve been trying to make some table rows sortable using Scriptaculous. I''ve used: Sortable.create("secondlist", {tag:''tr'', treeTag:''table''}); and Sortable.create("secondlist", {tag:''tr''}); Neither of which works. Is it even possible to do this? Thanks, Daniel
2005 Oct 26
1
Problems with Prototype 1.4_rc0/1 and sortables
Cheers, I use the javascript lib from http://www.kryogenix.org/code/browser/sorttable/ to sort tables. With prototype 1.4pre11 and earlier sorting in Firefox and IE works, with RC0 and RC1 it does not. Safari worked with 1.4pre6 or 7 but does not work with pre11. Somebody also seeing this? Regards, Jonathan -- Jonathan Weiss http://blog.innerewut.de
2006 Oct 19
2
OT :JavascriptSortableTables
I found this on the rails wiki http://www.kryogenix.org/code/browser/sorttable/ Looked farily easy, class and id for the table. Dropped the JS in to application.js. Problem is it''s putting the sort link on the first row of data and not on <thead> Anyone know how to fix it ? Here''s a bit of my table: <table class="so...
2005 Nov 07
1
treeview, master detail forms, sortable grids, etc..?
Are there any (preferable opensource) pre made widgets like calendar widgets, treeviews, sortable grids, etc.. that I can pluginto a rails application? If they are not build in Rubyy, then are there any examples an how to integrate them? John McClain Senior Software Engineer TCS Healthcare jmcclain-RI2jYlfFOOy2dUpmj6OxPQC/G2K4zDHf@public.gmane.org (530)886-1700x235 "Skepticism is the first
2006 Jan 08
2
sorting tables by columns
What I''m trying to do is have clickable column headers that will sort the table by that column. What I have below works, except there is only one variable storing the sort direction for all the columns, whereas I need a separate one for each column name. list view: <th><%= link_to ''Category'', :action => ''list'', :order =>
2006 Apr 21
13
Sorttable.js
I have come across this neat Javascript table sorter at http://kryogenix.org/code/browser/sorttable/ It seems straigh forward to use but i cant get it to work. I have included in the head <script src="javascripts/sorttable.js" type="text/javascript"></script> In the View <table class="sortable" id="anyid"> &lt...