Jump to content

Sherzod

Moderators
  • Posts

    19790
  • Joined

  • Last visited

  • Days Won

    643

Everything posted by Sherzod

  1. Hi, Which edition of UniGUI are you using? How can we reproduce this issue?
  2. Отлично. Вам нужно ещё учесть "dirtychange". Т.е., при присвоении значений программным путем, при "copy/paste".
  3. Я вижу несколько способов. Первый способ: procedure TMainForm.UniFormCreate(Sender: TObject); begin UniEdit1.JSInterface.JSConfig('allowBlank', [False]); UniEdit2.JSInterface.JSConfig('allowBlank', [False]); UniButton1.JSInterface.JSAddListener('click', 'function(){return '+ Self.WebForm.JSForm.JSName +'.isValid()}'); end; Второй способ: Использовать привязки (bind). ...
  4. Hello, Please explain in more details what you wanted. Maybe you should look at these demo examples: \FMSoft\Framework\uniGUI\Demos\Desktop\PaintDemo \FMSoft\Framework\uniGUI\Demos\Desktop\CanvasDemo
  5. Мне кажется самый простой способ, использовать клиентское событие: function keypress(sender, e, eOpts) { }
  6. I don't know, it seems this functionality is available in the premium version.
  7. We will check this issue? Which build are you using?
  8. Hello, Thank you for your interest in UniGUI. It seems simple integration shown in this code: <!DOCTYPE html> <html lang='en'> <head> <meta charset='utf-8' /> <link href='fullcalendar/main.css' rel='stylesheet' /> <script src='fullcalendar/main.js'></script> <script> document.addEventListener('DOMContentLoaded', function() { var calendarEl = document.getElementById('calendar'); var calendar = new FullCalendar.Calendar(calendarEl, { initialView: 'dayGridMonth' }); calendar.render(); }); </script> </head> <body> <div id='calendar'></div> </body> </html> And the rest depends on what functionality you want to implement.
  9. Hello, Can you share your solution?
  10. Then try to set .customGrid .x-grid-cell-inner-action-col { left: 20px; // checkbox column width + xx position: absolute; }
  11. Hello, Please describe your case fully.
  12. procedure TMainForm.UniDBGrid1ColumnActionClick(Column: TUniDBGridColumn; ButtonId: Integer); begin case ButtonId of 0 : ... end; ?
  13. OK. 1. Add ActionColumn, Width = 0 2. CustomCSS .customGrid .x-action-col-icon { display: none; } .customGrid .x-grid-item-over .x-action-col-icon { display: initial; } .customGrid .x-grid-cell-inner-action-col { left: 0; position: absolute; } 3. UniDBGrid -> LayoutConfig -> Cls = customGrid
  14. Let's say you are using actionColumn. If the buttons are displayed on the left side, is this acceptable for you?
  15. An approximate view of the grid using ActionColumn (buttons appear on hover):
  16. Also possible to manipulate the actioncolumn I guess.
  17. Hello, Need to check. What selection model are you using (CellModel, RowModel)?
  18. Hello, It only works in localhost, not from a remote IP... Best regards,
×
×
  • Create New...