Jump to content

Sherzod

Moderators
  • Posts

    19854
  • Joined

  • Last visited

  • Days Won

    646

Everything posted by Sherzod

  1. CSS class names should not begin with a number...
  2. .avatar50 img { vertical-align: middle; width: 50px; height: 50px; border-radius: 50%; } .avatar24 img { vertical-align: middle; width: 24px; height: 24px; border-radius: 50%; } function beforeInit(sender, config) { config.cls='avatar50' } function beforeInit(sender, config) { config.cls='avatar24' }
  3. http://forums.unigui.com/index.php?/topic/9766-unicalendar-missing-event/&do=findComment&comment=50678
  4. Hi, Can you please explain in more details what you wanted? Which build are you using? In the latest versions doLayout changed to updateLayout
  5. Hi, http://forums.unigui.com/index.php?/topic/8730-unicalendarpanel-change-settings/&do=findComment&comment=64445
  6. First you need to set the editor to Readonly := True Then use Ctrl+Click
  7. http://forums.unigui.com/index.php?/topic/11844-как-определить-находится-ли-ячейка-в-сгруппированном-ряду/&do=findComment&comment=63068
  8. http://forums.unigui.com/index.php?/topic/11844-как-определить-находится-ли-ячейка-в-сгруппированном-ряду/&do=findComment&comment=63068
  9. One possible solution: 1. CustomCSS: .textCard { text-align: center; font-family: 'Bowlby One SC', cursive; //font-size: 3.5vw !important; } 2. UniLabel1 -> FontSize = 34 3. p1 -> OnResize event: procedure TMainForm.p1Resize(Sender: TUniControl; OldWidth, OldHeight: Integer); begin UniLabel1.Font.Size := Round(p1.Width * 0.08) end;
  10. I think there are many solutions for this, I will try to analyze
  11. Hello, Can you please specify which edition and build of UniGUI are you using?!
  12. OK Sorry, this moment is not very clear to me
  13. Hello, Can you make a simple testcase for this?
  14. Hi, Can you please explain what you wanted?
  15. Hello, \FMSoft\Framework\uniGUI\Demos\Desktop\CustomControl-1 \FMSoft\Framework\uniGUI\Demos\Desktop\CustomControl-2 \FMSoft\Framework\uniGUI\Demos\Desktop\CustomControl-3 \FMSoft\Framework\uniGUI\Demos\Desktop\CustomControl-4 \FMSoft\Framework\uniGUI\Demos\Desktop\CustomControl-5
  16. Merhaba, Use UniMainModule -> OnSessionTimeOut event procedure TUniMainModule.UniGUIMainModuleSessionTimeout(ASession: TObject; var ExtendTimeOut: Integer); begin ExtendTimeOut := 600000; // you can set "your" time in milliseconds end;
  17. Hi, http://forums.unigui.com/index.php?/topic/12231-messagealerttoast-before-uniapplicationrestart/&do=findComment&comment=65232
  18. Hi, Can you please specify which edition and build of UniGUI are you using? You can try to search on the forum
  19. Hi, One possible solution: procedure TMainForm.UniButton1Click(Sender: TObject); var HiddenProps: string; begin HiddenProps := '"Name", "Enabled"'; with UniPropertyGrid1.JSInterface do begin JSCall('getStore().clearFilter', []); JSCode(#1'.getStore().filterBy(function (record){ if (['+ HiddenProps +'].indexOf(record.get("name"))>-1) return false; else return true;});'); end; end;
  20. Hi, UniCalendarPanel -> OnDateChange event ?
  21. Sherzod

    UniButton

    .myOKboton.x-btn:focus { background: white; border-color: #CC33CC; color: orange; border-width: 1px; }
  22. Can you please specify which edition and build of UniGUI are you using?
  23. Sherzod

    UniButton

    Попробуйте использовать псевдоклассы: hover и focus .myOKboton:hover { } .myOKboton:focus { }
×
×
  • Create New...