this code work in silverlight report designer?
I'm trying to use, but it always let me to edit my connection....
report.Dictionary.Restrictions.Add("Connection", StiDataType.Database, StiRestrictionTypes.DenyEdit);
does Dictionary Restrictions works in silverlight?
does Dictionary Restrictions works in silverlight?
Hello,
Unfortunately, on current moment, this feature is not available in Client/Server.
We need some time to add this feature. We will let you know about the result.
Thank you.
Unfortunately, on current moment, this feature is not available in Client/Server.
We need some time to add this feature. We will let you know about the result.
Thank you.
does Dictionary Restrictions works in silverlight?
Hello,
For component Stimulsoft.Report.WebDesignSL.StiWebDesignerSL we have added new event InitRestrictions, in which you can add Restrictions for report.
For example:
Thank you.
For component Stimulsoft.Report.WebDesignSL.StiWebDesignerSL we have added new event InitRestrictions, in which you can add Restrictions for report.
For example:
Code: Select all
protected void StiWebDesignerSL1_InitRestrictions(object sender, StiInitRestrictionsEventArgs e)
{
e.Restrictions.Add("variable1", StiDataType.Variable, StiRestrictionTypes.DenyDelete);
e.Restrictions.Add("variable2", StiDataType.Variable, StiRestrictionTypes.DenyEdit);
e.Restrictions.Add("variable3", StiDataType.Variable, StiRestrictionTypes.DenyDelete);
}
does Dictionary Restrictions works in silverlight?
I'm using 2011.3 version...
this new event will be on next version?
Thanks!
this new event will be on next version?
Thanks!
does Dictionary Restrictions works in silverlight?
Hello,
Yes.
This event will be available on next build on this week.
Thank you.
Yes.
This event will be available on next build on this week.
Thank you.