Input type = text
Input type = text
![nskwortsow](https://secure.gravatar.com/avatar/95aeb7871aa6b198e12a888dc0bd8aac/?default=https%3A%2F%2Fvanillicon.com%2F95aeb7871aa6b198e12a888dc0bd8aac_200.png&rating=g&size=120)
Added type="text" to text inputs, otherwise bootstrap styling doesn't work.
dataTables.editor.js
Line: 3884
#
fieldTypes.readonly = $.extend( true, {}, baseFieldType, {
"create": function ( conf ) {
conf._input = $('')[0];
return conf._input;
}
} );
fieldTypes.text = $.extend( true, {}, baseFieldType, {
"create": function ( conf ) {
conf._input = $('')[0];
return conf._input;
}
} );
dataTables.editor.js
Line: 3884
#
fieldTypes.readonly = $.extend( true, {}, baseFieldType, {
"create": function ( conf ) {
conf._input = $('')[0];
return conf._input;
}
} );
fieldTypes.text = $.extend( true, {}, baseFieldType, {
"create": function ( conf ) {
conf._input = $('')[0];
return conf._input;
}
} );
This discussion has been closed.
Replies
Allan
Will you also include a way to define different input types - i.e , etc?
Thanks,
Harry
Excellent question. What I think will be done in the next Editor release is to allow you to define the input type that is used for the text control - thus allowing these input types to be easily defined.
Regards,
Allan