move dateui to folder, add jquery-ui-datepicker

This commit is contained in:
vitalets
2012-11-14 22:44:18 +04:00
parent 8a64d3fb28
commit 00a451278a
44 changed files with 3691 additions and 9517 deletions

@@ -1,6 +1,10 @@
/**
* textarea
*/
Textarea input
@class textarea
@extends abstract
@module inputs
**/
(function ($) {
var Textarea = function (options) {
@@ -53,8 +57,24 @@
});
Textarea.defaults = $.extend({}, $.fn.editableform.types.abstract.defaults, {
/**
@property tpl
@default <textarea rows="8"></textarea>
**/
tpl:'<textarea rows="8"></textarea>',
inputclass:'span3'
/**
@property inputclass
@default 'span3'
**/
inputclass:'span3',
/**
Placeholder attribute of input. Shown when input is empty.
@property placeholder
@type string
@default null
**/
placeholder: null
});
$.fn.editableform.types.textarea = Textarea;