Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/28/20 in all areas

  1. Hello, we are working on it. For now please use this code to show configurator. procedure TMainForm.UniFormCreate(Sender: TObject); begin with uniDBPivotGridEX1, JSInterface do begin JSConfigPlugin('Ext.pivot.plugin.Configurator', []); JSConfigObject('configurator', 'fields', [JSArray([])]); end; end;
    1 point
  2. Perfect!!! Working very fine! Thank's, @Sherzod!
    1 point
  3. Try this: function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { var widgetColIndx=1; columns[widgetColIndx].onWidgetAttach = function(column, widget, record) { widget.setTextAlign('left'); widget.setHeight('auto'); widget.btnInnerEl.setStyle('white-space', 'normal'); }; }
    1 point
  4. Then try this approach: function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { var widgetColIndx=1; columns[widgetColIndx].onWidgetAttach = function(column, widget, record) { widget.setTextAlign('left'); widget.setHeight(40); widget.btnInnerEl.setStyle('white-space', 'normal'); }; }
    1 point
×
×
  • Create New...