0

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.

Preview
  • 35,317
  • 10
  • 92
  • 112
Deepak
  • 195
  • 3
  • 6
  • 17

1 Answers1

0

Try this..

FIDDLE

$(document).ready(
                    function () {
                        $('#fileUploadTest').ace_file_input({
                           no_file: 'No File ...',
                            btn_choose: 'Choose',
                            btn_change: 'Change',
                            droppable: false,
                            onchange: null,
                            thumbnail: false
                        });
                    }
                );

Twitter Bootstrap

Community
  • 1
  • 1
KesaVan
  • 1,031
  • 16
  • 32