Hi,
I have managed to open a Rad Window from the code behind, and it does everything I want, however I would like to be able to set the size, as currently it is tiny.
The code I currently have is...
How do I set the size of this window?
And How do i name it?
Thanks for your help
Ryan
I have managed to open a Rad Window from the code behind, and it does everything I want, however I would like to be able to set the size, as currently it is tiny.
The code I currently have is...
Protected
Sub
RadGrid1_SelectedIndexChanged(sender
As
Object
, e
As
EventArgs)
Handles
RadGrid1.SelectedIndexChanged
If
RadGrid1.SelectedItems.Count > 0
Then
For
Each
item
As
GridDataItem
In
RadGrid1.SelectedItems
Dim
strid
As
String
strid = item(
"UniqueID"
).Text
Session(
"Selected"
) =
"Selected"
Session(
"ID"
) = strid
Dim
newwidow
As
New
RadWindow
newwidow.NavigateUrl =
"MessageForm1.aspx"
RadWindow1.Windows.Add(newwidow)
Next
End
If
End
Sub
How do I set the size of this window?
And How do i name it?
Thanks for your help
Ryan