Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic NetDiagram (Read 2462 times)
minal
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 2
Joined: Dec 26th, 2007
NetDiagram
Dec 26th, 2007 at 9:03am
Print Post  
Hi ,
I wanted to know whether we have a control like a listbox and where we could draw arrow from one listbox item to another listbox item.

please if thers such a control or some other way then let me know urgent.

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


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: NetDiagram
Reply #1 - Dec 26th, 2007 at 10:08am
Print Post  
Hi,

You could use Table objects to simulate list-boxes. E.g. call FlowChart.CreateTable to create a table, set its number of columns to 1, and the number of rows to the number of items you wish to display. To enable drawing arrows between table rows, set Table.LinkStyle to Rows. On the server side, you can access the table cells via the Table indexer, e.g.

// set the first item's text
table[0, 0].Text = "item 1";

On the client side that would look like

// set the first item's text
table.getCell(0, 0).setText("item 1");

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
minal
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 2
Joined: Dec 26th, 2007
Re: NetDiagram
Reply #2 - Dec 26th, 2007 at 10:10am
Print Post  
Hi,
Thanks alot.
i will try it out .

Minal.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint