
I have a user control wrapped inside a RadDock Content Template. This User Control has a div that is used as a “PopUp” that shows when a link is clicked, it works fine but the Content Template automatically ads scroll bars around itself when the popup is show… Is there a way to avoid these scroll bars, and show the pop up on top of the RadDock?
I am working in a project that uses .Net web parts framework and I am researching Telerik RadDock as an alternative, perhaps more flexible, to our current solution.
Thanks,
Adriano
In the sample online scenario "RadGrid bound to WCF Web Service" the sample code binds to a WCF method. The sample client settings are below (I copied them straight from the sample code)
<ClientSettings>
<DataBinding SelectMethod="GetDataAndCount" Location="GridWcfService.svc"
SortParameterType="Linq" FilterParameterType="Linq">
</DataBinding>
</ClientSettings>
Now if the endpoint (which GetDataAndCount() belongs) requires message level encryption how do I provide credentials as part of the client call?
For instance in the code behind the following is how I would have performed this on the server side...
MySampleClient ac = new MySampleClient("SampleEndpointWSHttpBinding");
ac.ClientCredentials.UserName.UserName = Session["Username"].ToString();
ac.ClientCredentials.UserName.Password = Session["Password"].ToString();
List<DataPoints> dp = ac.GetDataAndCount(...);
So how do you do this on the client side. Any help appreciated
| var oWin = radopen("Report.aspx?r_Key=1", null); |
| // this could be browser specific... |
| oWin.setSize(document.body.clientWidth, document.body.clientHeight -100); |
| oWin.moveTo(0, 100); |
| oWin.set_behaviors( Telerik.Web.UI.WindowBehaviors.Resize + |
| Telerik.Web.UI.WindowBehaviors.Minimize + |
| Telerik.Web.UI.WindowBehaviors.Close + |
| Telerik.Web.UI.WindowBehaviors.Maximize + |
| Telerik.Web.UI.WindowBehaviors.Move ); |