Jump to content

Sherzod

Moderators
  • Posts

    19683
  • Joined

  • Last visited

  • Days Won

    635

Everything posted by Sherzod

  1. Добрый день, Попробуйте: function beforeInit(sender, config) { config.tabBar = { layout: { type: 'hbox', pack: 'start', overflow: Ext.layout.overflow.Scroller({ arrows: true }) } }; }
  2. You can use ClipBoard on the client side, but as I said above, you cannot use, specifically the ClipBrd module. Please use the search on the forum.
  3. Не смог воспроизвести. Не всегда видна полоса.
  4. Sherzod

    Фильтры

    Попробуйте: function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { columns.forEach(function(col) { if (col.fedit && !col.fedit.isCheckbox && col.fedit.getTriggers() && col.fedit.getTriggers().clear) { col.fedit.getTriggers().clear.el.addListener('click', function(event) { event.keyCode = 13; col.fedit.fireEvent('keydown', col.fedit, event); }) } }); }
  5. Merhaba, Look at these properties: CaseSensitive AnyMatch
  6. Hello, Are you running a desktop app from a mobile?
  7. Sherzod

    Фильтры

    Добрый день, Сможете сделать простой тестовый случай?
  8. Hello, Use UniTreeView.OnCellContextClick event.
  9. Sherzod

    Фильтры

    Добрый день, На форуме есть решение.
  10. Это уже другой вопрос.
  11. Hello, What kind of application, deployment? What theme are you using? Are additional themes installed on the server?
  12. Sherzod

    Messagebeep

    Hello, We will try to analyze.
  13. Быстрое решение, без учета добавления, удаления узлов (еще, не три, а два состояния). Полностью не протестировал. Протестируйте пожалуйста. function afterCreate(sender) { sender.on('checkchange', function(node, checked) { if (checked == true) { node.cascadeBy(function(node) { node.set('checked', checked) }); node.cascadeBy(function(node) { if (node.parentNode) { var allChecked = true; node.parentNode.childNodes.forEach(function(childNode) { if (childNode.get('checked') == true) { allChecked = allChecked && true } else { allChecked = false } }); if (node.parentNode.childNodes.length > 0) node.parentNode.set('checked', allChecked); } }) } else { node.parentNode.cascadeBy(function(node) { if (node.parentNode) { node.parentNode.set('checked', checked) } }); node.cascadeBy(function(node) { node.set('checked', checked) }) } }) }
  14. Я попробую проанализировать.
  15. http://forums.unigui.com/index.php?/topic/4218-extuxgridtristatetree/
  16. Нет такого свойства. Но, на форуме было несколько решений, если не ошибаюсь.
  17. В начале прокрутка видна, а потом после скроллинга исчезает!?
×
×
  • Create New...