BgroupBy and Column Move stop functioning in IFrame.

1 reply. Last post: April 5, 2010 4:52 PM by Steve Gavrilles
Tags :
  • (None)
  • New Discussion
  • New Question
  • New Product Feedback

I have an aspx page that contains a WebGrid(Ver 7).

The ColumnMove and GroupBy functions work when I am testing it by itself (Set as startpage).

When I use it in WebDesktop and call it into a window using IFrames, those functions stop working.

I can no longer group any column or move any column.

Here is the code I use in WebDesktop to get that page and open it in a window:

 

function AddTestWindow()

{

var dm = ISGetDesktopManager(); var wnd = dm.GetWindow("wndTestPage"); if (wnd == null)

{

wnd =
new WebDesktopWindow(); wnd.Text = "Test Page"; wnd.Name = "wndTestPage"; wnd.ControlBoxImage = "./images/aqua_images/documents_16.png"; wnd.ContentURL = "Inventory1.aspx"; wnd.ContentMode = "UseIFrame"; wnd.AllowMinimize = "Yes"; wnd.AllowMaximize = "No";

dm.Windows.Add(wnd);

wnd.ResizeTo(1200, 808);

wnd.Show();

//wnd.MoveToCenterDesktop();

}

else

{

wnd.Activate();

}

}

What am I missing here...?

Thanks.

All times are GMT -5. The time now is 12:25 AM.
Previous Next