Jump to content

Sherzod

Moderators
  • Posts

    20175
  • Joined

  • Last visited

  • Days Won

    653

Sherzod last won the day on July 24

Sherzod had the most liked content!

About Sherzod

Contact Methods

  • Website URL
    https://t.me/uniguidevelopers - https://www.youtube.com/@uniguidevelopers

Profile Information

  • Gender
    Male
  • Location
     uniGUI )

Recent Profile Visitors

37327 profile views

Sherzod's Achievements

Advanced Member

Advanced Member (4/4)

2.3k

Reputation

  1. Yes. 1. UniDBLookupComboBox4.ClientEvents.ExtEvents -> afterrender The main modified code (if you analyze it, you can simplify the code even more)... ariaSelectable: a.ariaSelectable//, //width: parts.length * 150 2. UniDBLookupComboBox4.ClientEvents.UniEvents -> function beforeInit(sender, config) { config.store.cmp = sender; } 3. UniDBLookupComboBox4.ClientEvents.ExtEvents -> function store.load(sender, records, successful, operation, eOpts) { var parts; this.each(function(record) { var val = record.get('val'); parts = val.split(' - '); for (var i = 0; i < parts.length; i++) { record.set('field' + (i + 1), parts[i]); } }); if (parts.length > 0) { this.cmp.getPicker().setWidth(200 * parts.length) } else { //this.cmp.getPicker().setWidth(150) } }
  2. Almost the same code, with some modifications. I will post later.
  3. Добрый день! Я попробую проанализировать Ваш случай.
  4. How do you scroll? By clicking the "up/down buttons" or by clicking on the empty space of the scrollbar?
  5. function chart.beforeInit(sender, config) { // For the value zero you can also apply the condition... config.axes[0].renderer = function(axis, label, layoutContext) { return (label<=10) ? Ext.util.Format.number(label, "#.00") : Ext.util.Format.number(label, "#") }; }
  6. Hello, I think you can use conditions here, for "label":
  7. Then I don't know, need to investigate.
  8. Sorry, but please read the license agreement. From your words it is not clear who bought the license, who installed it, and what relation do you have to all this !?
  9. Hello, What do you mean? Scrolling step or?
×
×
  • Create New...