Jump to content

Sherzod

Moderators
  • Posts

    19796
  • Joined

  • Last visited

  • Days Won

    643

Everything posted by Sherzod

  1. Yes, you should use the altFormat config.
  2. And without this customization?
  3. Пока такой прогресс: Также есть некоторые ошибки:
  4. Нужно будет проанализировать... Но, не знаю, как быстро.
  5. http://www.unigui.com/resources/installation-instructions
  6. It seems you forgot to install the UniGUI packages.
  7. Hello, Okay. Have you installed the packages?
  8. Добрый день, Попробуйте: procedure TMainForm.SelectColorInCombo(color: TColor); begin //программно выбрать цвет в списке //comboColor.ItemIndex := comboColor.items.IndexOfObject(Pointer(color)); comboColor.JSInterface.JSCall('setSelection', [comboColor.items.IndexOfObject(Pointer(color))]); end;
  9. You know much more than you think, I'm sure of it.
  10. 1. CustomCSS: .customHeaderOverCls { cursor: pointer; } 2. procedure TMainForm.UniFormCreate(Sender: TObject); begin UniPanel1.JSInterface.JSConfig('titleCollapse', [True]); UniPanel1.JSInterface.JSConfigObject('header', 'overCls', ['customHeaderOverCls']); end;
  11. procedure TMainForm.UniFormCreate(Sender: TObject); begin UniPanel1.JSInterface.JSConfig('titleCollapse', [True]); end;
  12. Hello, First of all, specify the version you are using. And a test app to reproduce.
  13. Hello, For mobile: calCalendar.JSInterface.JSCall('getView().setView', ['day']); // 'week', 'month'
  14. You correctly noted, you are using this code incorrectly, comment this code! // This is the problems.......... //calCalendar.JSInterface.JSCall('setView', 'day');
  15. function beforeInit(sender, config) { config.defaultView = 'day'; config.createButton = { hidden: true }; config.compactOptions = { createButton: { hidden: true } }; }
  16. I couldn't reproduce. Works for me. Could you make a simple testcase to check?
×
×
  • Create New...