I'm using bootstrap controls in my application. I'm trying to create a file upload control in my application.
Here is my code:
<input type="file" id="fileUploadTest" runat="server" />
<script type="text/javascript">
$(document).ready(
function () {
$('#fileUploadTest').ace_file_input({
no_file: 'No File ...',
btn_choose: 'Choose',
btn_change: 'Change',
droppable: false,
onchange: null,
thumbnail: false
});
}
);
</script>
I'm using
File upload button is not displaying.