Jump to content

Search the Community

Showing results for tags 'titlebutton'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 4 results

  1. b: TUnimTitleButton; ... with TUnimTitleButton.Add do begin ButtonId:= 5; IconCls:= 'star'; Width:= 48; end; Tried code above but fails - please advise - thanks in advance
  2. Как правильно выровнять заголовок мобильной формы ближе к правому краю? Дело в том, что в заголовок помещаю вторую кнопку, и текст заголовка "наезжает" на кнопку. Я так понимаю, что это можно сделать с помощью CSS. Но я боюсь, если укажу параметры для "x-component x-title x-floating", то это зацепит еще какие-нибудь другие компоненты, а мне нужно только заголовок. Вообще, было бы замечательно, если бы текст заголовка формы автоматически смещался бы вправо при добавлении 2ой или 3ей кнопки. Спасибо.
  3. I am trying to change TitleButton Icon at runtime with the following code but it paints BLANK instead of icon - please advise - thanks. UniSession.AddJS(GPSmForm.TitleButtons[2].JSName + '.setIconCls("add")');
  4. With my Mobile Form OnShow Event I want to selectively Hide or Show particular Title Buttons (buttonid 1 in this case), my code below has no effect - please show me how - thanks. for i:= 0 to PDFmForm.TitleButtons.Count - 1 do begin if i = 1 then begin if UniMainModule.PdfEmailFlag = True then begin PDFmForm.TitleButtons.Visible:= True; end else begin PDFmForm.TitleButtons.Visible:= False; end; end; end;
×
×
  • Create New...