Matrix

Für mein künftigen Webprojekt habe ich einen jQuery UI Plugin zur Benutzerverwaltung entwickelt.

Beispiel für html:

<div id="matrix" title="Benutzer und Gruppen">
</div>

Beispiel für script:

$( "#matrix" ).matrix( {
cols: {0:"root",1000:"vitali",2000:"guest"},
rows: {100:"admins",200:"users",300:"guests"},
fillCell: function( col,row ){
return $( '<input>' )
.attr( {
type: 'checkbox',
userid: col,
groupid: row
} );
}
} )

Das Ergebnis:

 

Noch ein Beispiel

Spezifikationen:

Optionen:

Methoden:

Download

matrix.zip