We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Problems with the component Window

Hello again.

Now I am working with the window and I have a little problem with it.

When you assign an address in this way everything is working well:

HyperLink

But when I do this because it does nothing:



My question is if I have to do some special method so that you can send URL composed?

What we need is to send a URL composed of values of C #

Tks



4 Replies

KP Karla p. dzul sosa January 23, 2009 12:29 AM UTC

Height="300px" Modal="False" Source="about:blank" Width="500px">

In this way I started the component




KP Karla p. dzul sosa January 23, 2009 12:31 AM UTC



This will assign and does nothing




KP Karla p. dzul sosa January 23, 2009 12:33 AM UTC

'" Text="Detalle" ToolTip="Circulo de credito">

This will assign and does nothing




PN Pradeep N Syncfusion Team January 26, 2009 03:42 PM UTC

We can open a hyperlink in a syncfusion window in any one of the following process

1. Set the target of the hyperlink to the id of the window control.(Which you have specified already)

Height="300px" Modal="False" Source="about:blank" Width="500px">

http://WWW.Google.com" Text="Detalle" ToolTip="Circulo de credito">Link

2. Window control has a specific property called "Source" property in which we can specify the url.

We can open the window control in the client click property of hyperlink or input button using the javascript API _sfWindow1.Open();





Height="300px" Modal="False" Source="http://www.google.com" Width="500px">

3. We can also achieve this dynamically in cs side as follows

Window Window1 = new Window();
Window1.ID = "Window1";
Window1.Source = "http://www.google.co.in";
Window1.Modal = false;
Window1.Width = 500;
Window1.Height=300;
this.Controls.Add(Window1);

Please let us know for if this reply helps.

We regret for the delayed reply.

Regards,
Pradeep.






Loader.
Live Chat Icon For mobile
Up arrow icon