Hi
I used radwindow. In my page to have number of events. When I click the some event. That time automatically same radwindow Copy open in another window (page). This one is doing number of times. I need to control this one. I want to need only one time opens the window. I don’t need to open the number of same radwindow in each event. I need only one radwindow.
RadWindow newwindow = new RadWindow();
public void BtnColumnPopup_Click(object sender, EventArgs e)
{
RadWindowManagerProperty.Visible = true;
newwindow.ID = "radWinProInfo1";
newwindow.NavigateUrl = "DynamicReportColumn.aspx";
newwindow.Behaviors = Telerik.Web.UI.WindowBehaviors.Close;
newwindow.Modal = true;
newwindow.Width = 850;
newwindow.Height = 625;
newwindow.Skin = "Web20";
newwindow.VisibleOnPageLoad = true;
RadWindowManagerProperty.Windows.Add(newwindow);
}
let me know how can i fix this problem.
Thanks
G. Manikandan
| <telerik:RadSplitter ID="RadSplitter1" Skin="Office2007" runat="server" Width="940px" |
| Height="750px" Orientation="Horizontal" BorderSize="0" OnClientLoaded="IeFix"> |
| <telerik:RadPane ID="Radpane11" runat="server" Height="40" MinHeight="40" Scrolling="None"> |
| <!-- Top --> |
| </telerik:RadPane> |
| <telerik:RadSplitBar ID="Radsplitbar3" runat="server" CollapseMode="None" EnableResize="false" /> |
| <telerik:RadPane ID="Radpane1" runat="server" Scrolling="None"> |
| <telerik:RadSplitter ID="Radsplitter2" runat="server"> |
| <telerik:RadPane runat="server" ID="pneLeft" Width="210" Height="100%" CssClass="leftBG"> |
| <!-- Left --> |
| </telerik:RadPane> |
| <telerik:RadSplitBar ID="RadSplitbar1" runat="server" CollapseMode="Forward" Height="100%" /> |
| <telerik:RadPane runat="server" ID="pneRightContent" ContentUrl="home.aspx" |
| CssClass="rightBg" Scrolling="None" > |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
| <telerik:RadSplitter ID="RadSplitter1" Skin="Office2007" runat="server" Width="100%" |
| Height="100%" Orientation="Horizontal" BorderSize="0"> |
| <telerik:RadPane ID="RadPaneTop" runat="server" Scrolling="None" Visible="false"> |
| <asp:ContentPlaceHolder ID="cphTopPane" runat="server"> |
| </asp:ContentPlaceHolder> |
| </telerik:RadPane> |
| <telerik:RadSplitBar ID="Radsplitbar3" runat="server" EnableResize="false" Visible="false" /> |
| <telerik:RadPane ID="RadPaneBottom" runat="server" Height="100%" Scrolling="Y"> |
| <asp:ContentPlaceHolder ID="cpnContent" runat="server"> |
| </asp:ContentPlaceHolder> |
| </telerik:RadPane> |
| </telerik:RadSplitter> |
I have a grid which runs off a stored procedure and works fine.
I implemented filtering, which worked fine.
I then converted one of the columns I'm filtering on from GridBoundColumn
| <telerik:GridBoundColumn DataField="plaintiff" HeaderText="Plaintiff" SortExpression="plaintiff" UniqueName="plaintiff" ReadOnly="True"> |
| </telerik:GridBoundColumn> |
to a GridHyperLinkColumn
| <telerik:GridHyperLinkColumn DataTextFormatString="{0}" DataNavigateUrlFields="id_tblmaster" UniqueName="Plaintiff1" DataNavigateUrlFormatString="showtags1.aspx?cs={0}" HeaderText="Plaintiff" |
| DataTextField="Plaintiff" SortExpression="plaintiff"> |
| </telerik:GridHyperLinkColumn> |
The hyperlink works fine and does what I wish and the DataNavigateUrlFields I am using here is in fact a GUID.
I find however that I now get an error filtering on this hyperlink style column. The filter functionality seems to be trying to filter using the DataNavigateUrl value instead of the DataTextField value. I do not see where I have a property to set which value the filter should evaluate.
It seems to me that the filtering function should look at the DataTextField value in the case of a GridHyperLinkColumn.
Any help greatly appeciated.
