Jump to content

Sherzod

Moderators
  • Posts

    19782
  • Joined

  • Last visited

  • Days Won

    642

Everything posted by Sherzod

  1. Добрый день, Отправьте пожалуйста запрос в службу поддержки.
  2. UniChart1.ClientEvents.ExtEvents -> Ext.chart.PolarChart[chart] -> function chart.redraw: function chart.redraw(sender, eOpts) { this.series[0].setAnimation(true); this.series[0].setHighlight(true); }
  3. Hello, Can you please specify which edition and build of UniGUI are you using?
  4. If I understand you correctly: ... with UniChart1 do begin JSInterface.JSAssign('colors', [JSInterface.JSStatement(ColorsStr)]); JSInterface.JSCall('chart.series[0].setColors', [JSInterface.JSStatement(ColorsStr)]); //<---------- //JSInterface.JSCall('chart.series[0].setRenderer', [JSInterface.JSFunction('sprite, record, attributes, index, store', // ' if (record) {'+ // ' if ('+ JSName +'.colors[index]) {'+ // ' attributes.fill = '+ JSName +'.colors[index];'+ // ' }'+ // ' }'+ // ' return attributes;' //)]); end; ...
  5. "3D Pie series currently always display labels 'outside'." https://docs.sencha.com/extjs/6.7.0/classic/Ext.chart.series.Pie3D.html#cfg-label
  6. Hi, Can you please specify, which edition and build of UniGUI are you using?
  7. Hello, Firstly, in your test case, there are two folders named "files", image is located in the wrong folder. Secondly, the UniPanel.Background.Fit property is not set True, therefore, you will not see the image, since the size is not small (1920x1200) Also try this modified code: with UniPanel1 do begin JSInterface.JSCall('setBodyStyle', ['background-image', 'url(files/111.jpg)']); JSInterface.JSCall('setBodyStyle', ['background-repeat', 'no-repeat']); JSInterface.JSCall('setBodyStyle', ['background-position', 'center']); if Background.Fit then JSInterface.JSCall('setBodyStyle', ['background-size', '100%']); end;
  8. function beforeitemkeydown(sender, record, item, index, e, eOpts) { var me=sender.grid; me.needToClear = (e.getKey() !== 13 && e.getKey() !== 9); }
  9. Like this for example: function afterrender(sender, eOpts) { var me=sender; me.triggerButtonEl = me.bodyEl.createChild({ tag: 'button', html: '<i class="fa fa-search fa" style="position:relative; color:grey;"></i>' }); me.triggerButtonEl.setStyle('position', 'absolute'); me.triggerButtonEl.setStyle('top', '0px'); me.triggerButtonEl.setStyle('right', '0px'); me.triggerButtonEl.setStyle('left', 'auto'); me.triggerButtonEl.setStyle('height', '100%'); me.triggerButtonEl.addListener('click', function(){ //ajaxRequest(me, 'clicked', []); }); me.inputEl.setStyle('padding-right', me.triggerButtonEl.getWidth()+1); }
  10. Sherzod

    Progressbar

    \FMSoft1401Main\Framework\uniGUI\Demos\Desktop\SyncClientUpdate - 1 * With "EnableSynchronousOperations=True" in MainModule.
  11. Hi, Can you please upgrade to the latest build?
  12. UniServerModule: procedure TUniServerModule.UniGUIServerModuleHTTPCommand( ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo; var Handled: Boolean); var s: string; begin s := ARequestInfo.Document.ToLower; if (s.StartsWith('/server') and (ARequestInfo.RemoteIP = '127.0.0.1')) then begin AResponseInfo.ResponseNo := 401; AResponseInfo.ContentText := 'Access denied!'; Handled := True; end; end;
  13. Какую сборку используете? Можете прикрепить тестовый случай?!
  14. Здравствуйте, В каком месте Вы используете этот код?
  15. Здравствуйте, Попробуйте этот CustomCSS: .wordwrapbtn .x-text-el { white-space: normal; text-align: center; }
  16. Hi, Sorry for asking, can you please make a simple testcase for this?
  17. Hi, Sorry, can you clarify your question?
  18. procedure TMainForm.UniButton1Click(Sender: TObject); begin Prompt('Please enter a text', '', mtInformation, mbOKCancel, PromptCallBack, True); UniSession.AddJS('Ext.get("messagebox-1001_header-title-textEl").setText("Your Caption")'); end;
  19. I'm sorry, Can you please make a simple testcase and attach here (without third-party components)?
  20. Please look carefully. Ext.get("messagebox-1001_header_hd-textEl") Ext.get("messagebox-1001_header-title-textEl")
  21. Hi, Can you try this?: http://forums.unigui.com/index.php?/topic/10211-how-do-i-change-caption-property-of-prompt-showmessage-and-messagedlg-window/&amp;do=findComment&amp;comment=53243
×
×
  • Create New...