Ticket T371556
Visible to All Users

ASPxPanel - Remove white space from collapsible panel

created 9 years ago

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?

Answers approved by DevExpress Support

created 9 years ago

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 Basic
Protected 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.

    Comments (1)
    SS SS
    Sherry Sherouse 9 years ago

      That worked. Thank you very much.

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.