Jump to content

Sherzod

Moderators
  • Posts

    19651
  • Joined

  • Last visited

  • Days Won

    634

Posts posted by Sherzod

  1. 16 minutes ago, x11 said:

    Можно как-то показать какой-нибудь текст, когда нет записей (строк) в TunimDBListGrid?

    Добрый день!

    procedure TMainmForm.UnimFormCreate(Sender: TObject);
    begin
      UnimDBListGrid1.JSInterface.JSConfig('emptyText', ['<b>Н</b>ет записей...']);
    end;

     

    • Thanks 1
  2. Hello,

    4 minutes ago, asapltda said:

    1. Remove the edges of a tuniform ?  

    2. Round the edges of a tuniform ? Thank you 

    Can you attach a screenshot indicating what exactly?

  3. 5 hours ago, FFREDIANELLI said:

    Hi, how to change the font family name to  "Century Gothic" ? in the dbgrid, how to use the tunifontname ? in this example ?

    Hello,

    Well, about the same, using a variable as you wish:

    On 7/10/2021 at 8:28 AM, Sherzod said:
    procedure TMainForm.UniDBGrid1DrawColumnCell(Sender: TObject; ACol,
      ARow: Integer; Column: TUniDBGridColumn; Attribs: TUniCellAttribs);
    begin
      Attribs.Font.Size := AGridFontSize;
    end;
    procedure TMainForm.UniDBGrid1DrawColumnCell(Sender: TObject; ACol,
      ARow: Integer; Column: TUniDBGridColumn; Attribs: TUniCellAttribs);
    begin
      Attribs.Font.Name := 'Century Gothic';
    end;

     

×
×
  • Create New...