Jump to content

Sherzod

Moderators
  • Posts

    22179
  • Joined

  • Last visited

  • Days Won

    785

Sherzod last won the day on June 9

Sherzod had the most liked content!

About Sherzod

Contact Methods

  • Website URL
    https://t.me/uniguidevelopers - https://www.youtube.com/@uniguidevelopers

Profile Information

  • Gender
    Male
  • Location
     uniGUI )

Recent Profile Visitors

102870 profile views

Sherzod's Achievements

Advanced Member

Advanced Member (4/4)

2.6k

Reputation

  1. Hello, By design, not a bug: Restart reloads the same URL (it redirects to UrlReferer, taken from the Referer header — your page with ?saml=xxxxx), so the SAML login fires again. Redirect to the clean URL instead: UniSession.UrlReferer := UniSession.URL; // no query string UniApplication.Restart;
  2. Hello, If I understood your question correctly, then no, IIS or Apache is not required when deploying HyperServer in Standalone or Windows Service mode...
  3. Добрый день! И все же хотелось бы понять, какой функционал Вы хотите реализовать в итоге? Что должна представлять собой фотогалерея и как она должна работать? Например, это должна быть горизонтальная лента изображений, плитка с миниатюрами, прокручиваемая галерея или что-то другое? Тогда будет проще предложить наиболее подходящий вариант реализации.
  4. Также попробуйте поискать на форуме по ключевому слову Carousel — возможно, это поможет найти готовые примеры. И, если у Станислава, @elGringo будет время, думаю, он тоже подключится и ответит в этой теме.
  5. Я попробую извлечь пример из этого видео и опубликовать здесь основные моменты реализации. Надеюсь, это поможет.
  6. Странно. Я не устанавливал никаких региональных ограничений для этого видео. Возможно, YouTube ограничивает доступ в Вашем регионе или возникла какая-то другая проблема.
  7. Если задача именно в создании фотогалереи, возможно, этот пример окажется полезным: https://youtu.be/eQEFpRCJ0qo
  8. И еще не совсем понятно, в чем именно проблема. Правильно ли я понял, что при динамическом создании нескольких Frame каждый следующий перекрывает предыдущий и в итоге виден только последний?
  9. Добрый день, Не совсем понял, о каком UniShowCase идет речь. Если вы имеете в виду старый тестовый пример elGringo, не могли бы вы дать ссылку на тему или сам проект? Это поможет понять, о какой реализации идет речь и воспроизвести проблему.
  10. Glad it works now. Just to confirm the root cause for others: could you show the F9 handler line that read the value? It sounds like a Double := <variant/string> on data that was empty/non-numeric.
  11. Hello, Could you share a small reproducible sample or steps to reproduce it?
  12. Thanks, reproduced. The cause: TUniLabel doesn't re-publish OnEndDrag — the event exists on the base TUniControl but is protected there, so a direct Label.OnEndDrag := Handler won't compile (the other draggable components re-publish it, TUniLabel doesn't). We'll check it and fix it on our side in an upcoming build. Meanwhile, as a workaround - just reach the protected property through a small access class in the same unit: implementation type TUniControlAccess = class(TUniControl); // exposes the protected OnEndDrag ... TUniControlAccess(Lbl).OnEndDrag := LabelEndDrag; // <-- the workaround
  13. Hello, Which build of uniGUI are you using?
  14. Hello, If no editor is explicitly assigned to the column, the grid may use a default editor, but it is not guaranteed to be an Ext.form.field.Date editor with altFormats support.
×
×
  • Create New...