Jump to content

Sherzod

Moderators
  • Posts

    19744
  • Joined

  • Last visited

  • Days Won

    640

Everything posted by Sherzod

  1. First you need to set the editor to Readonly := True Then use Ctrl+Click
  2. http://forums.unigui.com/index.php?/topic/11844-как-определить-находится-ли-ячейка-в-сгруппированном-ряду/&do=findComment&comment=63068
  3. http://forums.unigui.com/index.php?/topic/11844-как-определить-находится-ли-ячейка-в-сгруппированном-ряду/&do=findComment&comment=63068
  4. 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;
  5. I think there are many solutions for this, I will try to analyze
  6. Hello, Can you please specify which edition and build of UniGUI are you using?!
  7. OK Sorry, this moment is not very clear to me
  8. Hello, Can you make a simple testcase for this?
  9. Hi, Can you please explain what you wanted?
  10. 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
  11. Merhaba, Use UniMainModule -> OnSessionTimeOut event procedure TUniMainModule.UniGUIMainModuleSessionTimeout(ASession: TObject; var ExtendTimeOut: Integer); begin ExtendTimeOut := 600000; // you can set "your" time in milliseconds end;
  12. Hi, http://forums.unigui.com/index.php?/topic/12231-messagealerttoast-before-uniapplicationrestart/&do=findComment&comment=65232
  13. Hi, Can you please specify which edition and build of UniGUI are you using? You can try to search on the forum
  14. 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;
  15. Hi, UniCalendarPanel -> OnDateChange event ?
  16. Sherzod

    UniButton

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

    UniButton

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

    UniListbox

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

    UniButton

    Здравствуйте, Простите, можете уточнить вопрос?
  21. Hello, Can you please specify which edition and build of UniGUI are you using?!
  22. Hello, At the moment this is not possible
  23. Я не смог воспроизвести. Вы можете просто использовать EmptyText свойство: procedure TMainForm.UniButton1Click(Sender: TObject); begin //UniEdit1.JSInterface.JSCall('inputEl.el.dom.setAttribute', ['placeholder', 'Test']); UniEdit1.EmptyText := 'Test' end;
×
×
  • Create New...