Input type = text
Input type = text
nskwortsow
Posts: 120Questions: 0Answers: 0
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