Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CFTREE and CFGRID FONTS

Status
Not open for further replies.

klemen

Programmer
Feb 12, 2001
5
SI
I am having a trouble with font in CFTREE ang CFGRID. I like to change font to CE (Central Europa), because I need to display special character (like 'èæšžð') (slovenian font). Please help me. Thanks
 
Hi,
Have you tried the attribute font in both tags? See if they have the font face that you want.
e.g.
<cfoutput>
<cftree name=&quot;theTree&quot; font=&quot;..&quot; fontsize=&quot;..&quot;>
<cftreeitem value=&quot;col1, col2, col3&quot;
query=&quot;theQuery&quot; queryasroot=&quot;yes&quot;
img=&quot;folder, folder, document&quot;>
</cftree>
</cfoutput>

<cfgrid ....>
<cfgridcolumn name = &quot;..&quot; header=&quot;..&quot; font=&quot;..&quot;>
</cfgrid>
 
klemen, maybe you can use some meta tags to specify which character set to use:

<META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=Windows-1251&quot;>

I don't know what the charset code for Central European letters is, but I am sure you can figure it out :). MSDN would be my best bet. Good luck...


<webguru>iqof188</webguru>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top