Jump to content

TUnimButton - Buttons must have discernible text: Element has no title attribute


x11

Recommended Posts

 

Подскажите пожалуйста, как к кнопке TUnimButton добавить атрибут title?

Спасибо.

 

 

image.png.8ff9f6813dad7ab84e19001789a07060.png

Link to comment
Share on other sites

в браузере Microsoft Edge в инструментах разработчика - если нажать F12

я там тестирую мобильную версию приложения

 

image.png.13c7bdadc32e9f2ace235f8dbb263d0b.png

 

image.png.32dc979b6c46e6e5a258fab5252921dd.png

Link to comment
Share on other sites

48 minutes ago, x11 said:

Подскажите пожалуйста, как к кнопке TUnimButton добавить атрибут title?

Для всех кнопок:

MainmForm.Script ->

Ext.define(null, {
    override: 'Ext.Button',      
    initialize: function () {
        this.callParent(arguments);
        this.buttonElement.dom.setAttribute('title', this.id || '');
    }
});

 

  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...