SSRS date-picker is invisible in Google Chrome, not working in Opera/IE?

前端 未结 4 1063
别跟我提以往
别跟我提以往 2020-12-30 06:34

I\'m integrating SSRS reports(developed in VS 2008 vs. 9.0 ), and when I load it into the browser with Chrome, I get this:

4条回答
  •  情歌与酒
    2020-12-30 07:16

    At least in Chrome, an option could be just to show the date excluding the time. This make more sense to the end user.

    //Update the dates
    $(document).ready(function () {
        $('input[type=text]').each(function () {
            $(this).val($(this).val().replace('12:00:00 AM', ''));
        })
    });
    

提交回复
热议问题