In this example i have tried for the datetime parameter postback
Hope it works for you as well
:)
For the Datetime field in the Parameters make fisrt a parameter as dummy Date value & then assign this datetime value to the actual datetime parameters of the
report
Supposse we have a SP where we have to supply From Date & To Date
STEPS:1
Go to the Report Parameters Add a dummy Datetime Parameter as Datetime_Dummy the Name & Datetime as Datatype Make it Hidden
STEPS:2
In the Default value selection select Non-queried & give value as =Today
STEPS:3
Make sure that this is the First datetime parameter in the datetimes parameter
STEPS:4
Now take the FromDate Parameter assign its datatype as Datetime & Now in the Default value selection select Non-queried & go to the Expression
Give the expression as
=Parameters!Datetime_Dummy.Value
STEPS:5
By doing this it ensures that the page will not post back when From date is selected.
cheers,
Smitha.......