Jump to content

Recommended Posts

Posted

Hi,

 

How can change TUniDBGrid Title font to Tahoma ?

 

I changed TitleFont property to Tahoma, but not effect in WebApplication.

 

Best Regards

Posted

Hi,

 

But Tahoma font not effect in TUniDBGrid, if i add previous CSS file tahoma effect !

It use another font.

 

Best Regards

  • Administrators
Posted

Here is the default CSS for grid rows:

 

.x-grid3-hd-row td, .x-grid3-row td, .x-grid3-summary-row td
{
font:normal 11px arial, tahoma, helvetica, sans-serif; 
}

 

In my browser Tahoma is used by default.

Posted

Which CSS class did you change ?

 

 

Hi, Mr. Farshad

 

I wrote a custom main.css:

 

 .x-grid-panel *  {  
     	
 	font-family: Tahoma;

}

 

and put this file in CustomFiles property in TUniGUIServerModule.

 

Attention: if you not put ( * ) (Star Character) after x-grid-panel class font not affect in other sub tags in DBGrid;

 

Best Regards

Posted

Hi, Mr. Farshad

 

One other thing, The DBGrid Footer ( Page x Of x) Font not change with above css !

Only change with this:

 

.x-toolbar table *{
  font-family: Tahoma;
}

 

and full css for DBGrid is:

 

.x-grid-panel, .x-toolbar table *{
  font-family: Tahoma;
}

 

Best Regards

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...