Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Tables examples (Read 2606 times)
vtortola
Full Member
***
Offline


I love YaBB 1G - SP1!

Posts: 104
Joined: Nov 26th, 2008
Tables examples
Jan 21st, 2009 at 2:04pm
Print Post  
Hi,

Where I could find code examples (or even documentation) working with tables. I'm interested in whatever thing I can do with them, even look and feel.

Cheers.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Tables examples
Reply #1 - Jan 21st, 2009 at 2:50pm
Print Post  
Hi,

You could check the ClassDiagram, DBDesign and Entities samples from the WinForms version:

https://www.mindfusion.eu/FCNetDemo.zip

Stoyan
  
Back to top
 
IP Logged
 
vtortola
Full Member
***
Offline


I love YaBB 1G - SP1!

Posts: 104
Joined: Nov 26th, 2008
Re: Tables examples
Reply #2 - Jan 22nd, 2009 at 12:27pm
Print Post  
Thanks.

I have some issues:

- How can I put the row text in bold? I've tried with the HTML notation but doesn't work.

- The tooltips in TableNode.Row don't work, do i need something special to make them work or simply don't work?

Cheers.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Tables examples
Reply #3 - Jan 22nd, 2009 at 3:07pm
Print Post  
- set EnableStyledText = true to use the html syntax, or otherwise set the Weight of the cell's Font:

Font f = new Font("Arial", 10);
f.Weight = FontWeights.Bold;
t[0, 1].Font = f;

- seems they simply don't work Wink

Stoyan
  
Back to top
 
IP Logged
 
vtortola
Full Member
***
Offline


I love YaBB 1G - SP1!

Posts: 104
Joined: Nov 26th, 2008
Re: Tables examples
Reply #4 - Jan 22nd, 2009 at 4:47pm
Print Post  
arrrghh... I didn't see that property  Grin

Ok thanks!
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint