I have an ASPxImageSlider on a responsive ASPxPanel that I do not want displayed on mobile devices. I have tried collapse and hide, but they both leave a large amount of white space between the elements above and below the Image Slider. The best combination I have come across is Collapse with ExpandButton Visible set to False, but it still leaves a significant amount of white space. Is there a way to eliminate the white space?
ASPxPanel - Remove white space from collapsible panel
Answers approved by DevExpress Support
Hi,
If your task is to remove the ASPxPanel container on mobile devices at all, you can use the following logic:
C#protected void Page_Load(object sender, EventArgs e) {
ASPxPanel1.Visible = !this.Request.Browser.IsMobileDevice;
}
Visual BasicProtected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
ASPxPanel1.Visible = Not Me.Request.Browser.IsMobileDevice
End Sub
Take a special note of the HttpCapabilitiesBase.IsMobileDevice property. Please let me know if you find this approach appropriate.
Thanks,
Alessandro.