Jump to content

Sherzod

Moderators
  • Posts

    19781
  • Joined

  • Last visited

  • Days Won

    642

Everything posted by Sherzod

  1. Can you please specify first, which edition and build of UniGUI are you using?
  2. Hello, procedure TMainForm.UniFormReady(Sender: TObject); var ActionMenuText: string; ActionColIndx: Integer; begin ActionMenuText := 'ActionColumn'; ActionColIndx := 6; with UniDBGrid1 do JSInterface.JSAssign('menuText', [ActionMenuText], Columns[ActionColIndx].JSColumn); end;
  3. http://docwiki.embarcadero.com/Libraries/Rio/en/System.Classes.TComponent.FindComponent
  4. Is there an error in the browser console?
  5. Well this is normal behavior for combo. And also you use the navigation with the "keys". And also you have event handlers on the form that I did not know... Try, maybe this will suit you: procedure TMainForm.UniFormCreate(Sender: TObject); begin edt0.JSInterface.JSConfig('keyMapEnabled', [False]); ... end;
  6. Hello Dominique, UniSweetAlert ?
  7. Hello Dominique, Was there an update for Firefox?
  8. Hello, Do you mean the EventEditor form?
  9. Hello, Can you please specify first, which edition and build of UniGUI are you using?
  10. Может, как-то так? SpeedButton.ClientEvents.ExtEvents -> function afterrender(sender, eOpts) { sender.getEl().select('.x-btn-icon').setStyle('min-height', '12px'); }
  11. One possible solution by using CustomCSS. UniServerModule.CustomCSS: .customHeader .x-group-sub-header, .customHeader .x-column-header { border: none; } UniDBGrid.LayoutConfig.Cls = customHeader
  12. Есть тестовый случай, только с одной кнопкой?
  13. The forum had a solution if I am not mistaken.
  14. While I am only talking about the first question...
  15. Did you get what you wanted?
  16. Make a simple testcase or provide all the settings of your grid.
  17. Hello, One possible solution: UniDBGrid -> ClientEvents -> ExtEvents -> function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { if (columns[0].xtype && columns[0].xtype == 'rownumberer') { columns[0].width = 100; } }
  18. program KeyboardEvent; uses Forms, ServerModule in 'C:\Users\...\Documents\Embarcadero\Studio\Projects\KeyboardEvent\ServerModule.pas' {UniServerModule: TUniGUIServerModule}, MainModule in 'C:\Users\...\Documents\Embarcadero\Studio\Projects\KeyboardEvent\MainModule.pas' {UniMainModule: TUniGUIMainModule}, Main in 'C:\Users\...\Documents\Embarcadero\Studio\Projects\KeyboardEvent\Main.pas' {MainForm: TUniForm}; {$R *.res} begin ReportMemoryLeaksOnShutdown := True; Application.Initialize; TUniServerModule.Create(Application); Application.Run; end.
  19. In your test case there are no modules, they are located in your disk space.
  20. Hi, Please correct the path of your modules.
  21. Добрый день, Отправьте пожалуйста запрос в службу поддержки.
×
×
  • Create New...