Hi,
I'm using VS2005, I created a web user control, which works perfectly fine in a web application.
The web control has a grid, with a popup edit form, with controls e.g (calandar, textbox, comobo box).
When I deploy it to Sharepoint 2007 and add the user control has a web part, the calendar control does not display correctly.
I have no height, width in the popup edit form.
I'm not sure if this is a bug?
Attached is a diagram of it working correctly, then on the sharepoint portal (you will see the popup edit fomr scrolls), also is my popup edit form properties.
Thanks
Vanessa.
We have closed this ticket because another page addresses its subject:
ASPxComboBox in Sharepoint (WSS 3) with IE7
Hi Vanessa,
Thank you for the report. I suspect that this problem is a duplicate of the ASPxComboBox in Sharepoint (WSS 3) with IE7 bug report. Please use the same solution to resolve it. Please keep us informed of your results.
Thanks,
Plato
I have added to my master page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
My controls work perfctly fine (your prompt response was excellent), but now the master page does not work correctly (left nav bar).
Attached screen shot.
Thanks
Vanessa
Any news on the error reported on the 25/08/2008?
Thanks
Vanessa.
Hi!
Please give us some more time. We are investigating the problem. Thank you for your patience.
Thanks,
Andrew R
Hello Vanessa,
Comprehensive SharePoint Server support will be implemented in a future version of our controls. Currently, you can workaround the problem by replacing a standard menu with our ASPxMenu control.
<dxm:ASPxMenu ID="ASPxMenu1" runat="server" Orientation="Vertical" Height="17px" OnItemDataBound="ASPxMenu1_ItemDataBound" DataSourceID="SiteMapDS"> </dxm:ASPxMenu> <script type="text/C#" runat="server"> protected void ASPxMenu1_ItemDataBound(object source, DevExpress.Web.ASPxMenu.MenuItemEventArgs e) { PortalSiteMapNode node = (e.Item.DataItem as PortalHierarchyData).PortalSiteMapNode; e.Item.Text = node.Title; e.Item.NavigateUrl = node.Url; e.Item.Target = node.Target; } </script>
Thanks,
Nick