Ticket T1287161
Visible to All Users

TabPanel Item Title text is duplicated

created 12 days ago

The code below renders the words Data as "DataData" and Map as "MapMap". Im not able to change any style sheet if its a known issue but I culd override with a specific CSS class if that would work, please supply the exact details

Code
@(Html.DevExtreme().TabPanel() .Items(items => { items.Add() .Title("Data") .Icon("detailslayout") .Template(new TemplateName("datagrid-template")); items.Add() .Title("Map") .Icon("globe") .Template(new TemplateName("map-template")); }) .AnimationEnabled(false) .SwipeEnabled(true) .Width("100%") )
Show previous comments (1)
P P
Pete Feehan Ashridge 10 days ago

    devexpresstabpanel.png

    Thanks as I said it must be a CSS issue, can you supply the CSS override please, it is a known issue in your help / support but as I said I cant alter the main CSS file, I could override if I knew what element it is??

    dx-tab-text-span
    dx-tab-text-span-pseudo

    <span class="dx-tab-text-span">
    "Piling Data"
    <span class="dx-tab-text-span-pseudo">Piling Data</span>
    </span>

    P P
    Pete Feehan Ashridge 10 days ago

      This fixes it

      Code
      .dx-tab-text-span-pseudo { display: none; }
      Mark Ramirez (DevExpress Support) 9 days ago

        Hello Pete,

        Manually hiding the duplicate text is a valid approach if modifying the main CSS file is not an option.

        I'm happy to hear that you found a solution. Thank you for keeping me updated.

        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.