/* this function styles inputs with the type file. It basically replaces browse or choose with a custom button */ (function ($) { $.fn.file = function (options) { var settings = { width: 250 }; if (options) { $.extend(settings, options); } this.each(function () { var self = this; var wrapper = $("").attr("class", "ui-state-hover"); var filename = $('').addClass($(self).attr("class")).css({ "display": "inline", "width": settings.width + "px" }); $(self).before(filename); $(self).wrap(wrapper); $(self).css({ "position": "relative", "height": settings.image_height + "px", "width": settings.width + "px", "display": "inline", "cursor": "pointer", "opacity": "0.0" }); if ($.browser.mozilla) { if (/Win/.test(navigator.platform)) { $(self).css("margin-left", "-142px"); } else { $(self).css("margin-left", "-168px"); }; } else { $(self).css("margin-left", settings.image_width - settings.width + "px"); }; $(self).bind("change", function () { filename.val($(self).val()); }); }); return this; }; })(jQuery); $(document).ready(function () { $("input.focus, textarea.focus").focus(function () { if (this.value == this.defaultValue) { this.value = ""; } else { this.select(); } }); $("input.focus, textarea.focus").blur(function () { if ($.trim(this.value) == "") { this.value = (this.defaultValue ? this.defaultValue : ""); } }); /* date picker */ $(".date").datepicker({ /* showOn: 'both', buttonImage: 'resources/images/ui/calendar.png', buttonImageOnly: true */ }); /* select styling */ $(".select1").selectmenu({ style: 'dropdown', icons: [ { find: '.locked', icon: 'ui-icon-locked' }, { find: '.unlocked', icon: 'ui-icon-unlocked' }, { find: '.folder-open', icon: 'ui-icon-folder-open' } ] }); /* file input styling */ $("input[type=file]").file({ image_height: 28, image_width: 28, width: 200 }); /* tinymce (text editor) */ $("textarea.editor").tinymce({ script_url: "resources/scripts/tiny_mce/tiny_mce.js", mode: "textareas", theme: "advanced", theme_advanced_buttons1: "newdocument,separator,bold,italic,underline,strikethrough,separator,justifyleft, justifycenter,justifyright,justifyfull,separator,cut,copy,paste,pastetext,pasteword,separator,help", theme_advanced_buttons2: "bullist,numlist,separator,outdent,indent,blockquote,separator,undo,redo,separator,link,unlink,anchor,image,cleanup,help,code,separator,forecolor,backcolor", theme_advanced_buttons3: "", theme_advanced_buttons4: "", theme_advanced_toolbar_location: "top", theme_advanced_toolbar_align: "left" }); /* button styling */ $("input:submit, input:reset, input:button").button(); });