Jump to content

Sherzod

Moderators
  • Posts

    19654
  • Joined

  • Last visited

  • Days Won

    634

Everything posted by Sherzod

  1. 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;
  2. I think there are many solutions for this, I will try to analyze
  3. Hello, Can you please specify which edition and build of UniGUI are you using?!
  4. OK Sorry, this moment is not very clear to me
  5. Hello, Can you make a simple testcase for this?
  6. Hi, Can you please explain what you wanted?
  7. 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
  8. Merhaba, Use UniMainModule -> OnSessionTimeOut event procedure TUniMainModule.UniGUIMainModuleSessionTimeout(ASession: TObject; var ExtendTimeOut: Integer); begin ExtendTimeOut := 600000; // you can set "your" time in milliseconds end;
  9. Hi, http://forums.unigui.com/index.php?/topic/12231-messagealerttoast-before-uniapplicationrestart/&do=findComment&comment=65232
  10. Hi, Can you please specify which edition and build of UniGUI are you using? You can try to search on the forum
  11. 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;
  12. Hi, UniCalendarPanel -> OnDateChange event ?
  13. Sherzod

    UniButton

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

    UniButton

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

    UniListbox

    with UniListBox1 do begin ItemIndex := I; JSInterface.JSCall('boundList.getSelectedNodes()[0].scrollIntoViewIfNeeded', [False]); end;
  17. Sherzod

    UniButton

    Здравствуйте, Простите, можете уточнить вопрос?
  18. Hello, Can you please specify which edition and build of UniGUI are you using?!
  19. Hello, At the moment this is not possible
  20. Я не смог воспроизвести. Вы можете просто использовать EmptyText свойство: procedure TMainForm.UniButton1Click(Sender: TObject); begin //UniEdit1.JSInterface.JSCall('inputEl.el.dom.setAttribute', ['placeholder', 'Test']); UniEdit1.EmptyText := 'Test' end;
  21. Hi, You must fill files list (you can add to the UniListBox for example) by using FindFirst and FindNext to make a loop that looks at all the files...
  22. I think you need to analyze examples that start with "\FMSoft\Framework\uniGUI\Demos\Desktop\Clientside Alignment -..."
×
×
  • Create New...