Ox.load('UI', {debug: true}, function() { var $box = Ox.Element() .css({width: '512px', height: '512px', margin: '8px'}) .appendTo(Ox.UI.$body); /* $container.append( Ox.Input({ height: 64, style: 'square', type: 'textarea', width: 256 }) ); $container.append($('
')) */ var data = { country: ['France'], director: ['Jean-Luc Godard'], language: ['French', 'English'], runtime: '90 min', title: 'Deux ou trois choses que je sais d\'elle', year: '1967' }; Ox.Editable({ value: data.title }) .css({ height: '16px', fontWeight: 'bold', fontSize: '13px' }) .appendTo($box); Ox.Editable({ format: function(value) { return value ? value.split(', ').map(function(value) { return '' + value + '' }).join(', ') : 'Unknown Director' }, value: data.director.join(', ') }) .css({ height: '16px', fontWeight: 'bold', fontSize: '13px' }) .appendTo($box); var $div = $('
').appendTo($box.$element); ['country', 'year', 'language', 'runtime'].forEach(function(key, i) { var $div_ = $('
') .css({float: 'left', margin: '1px 0 0 1px'}) .append( $('
') .css({float: 'left', fontWeight: 'bold'}) .html((i ? '; ' : '') + Ox.toTitleCase(key) + ': ') ) .appendTo($div); Ox.Editable({ format: function(value) { return (value ? ( Ox.isArray(data[key]) ? value.split(', ').map(function(value) { return '' + value + '' }).join(', ') : value ) : 'unknown');// + (i == 3 ? '' : ';'); }, value: Ox.isArray(data[key]) ? data[key].join(', ') : data[key] }) .css({ float: 'left' }) .appendTo($div_); }); $div = $('
').css({clear: 'both', marginTop: '16px', textAlign: 'justify'}).appendTo($box.$element); Ox.Editable({ format: function(value) { return 'Keywords: ' + value.split(', ').map(function(value) { return '' + value + '' }).join(', ') }, type: 'textarea', value: 'Sex, Crime, Car, Spoiler in Keywords, Genre in Keywords, Director Cameo, One Or More Meta Keywords', width: 512 }) .css({ }) .appendTo($div); });