0

SSRS初心者です。BIDS 2008でレポートを作成し、共有ポイントでホストしています。これらのレポートには、地域/地区、開始日、終了日などのさまざまなパラメーターがあり、デフォルトではSSRSによるドロップダウンおよびカレンダー コントロールとして表示されます。

パラメータ ペイン、パラメータにスタイルを追加する方法はありますか? また、Calendar コントロールに検証を追加しますか?

どんな種類の助けも大歓迎です。

ありがとう :)

4

1 に答える 1

0

You could try hacking the css in the report manager - not sure if that will 'pass through' to sharepoint. Maybe you could modify some css in sharepoint to this. Use a dom inspector such as Firebug, Chrome developer tools or IE developer tools to see where the styles are coming from.

If you need to validate dates, you can do this in a stored procedure. Check the values of the parameters and kick out an error message. It's not pretty, but it works.

IF DATEDIFF(m,@STARTDATE, @ENDDATE) > 0
     RAISERROR(N'Date range must be less than one month',16,1)
于 2013-06-06T20:22:26.860 に答える