Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Hyperlink on Table Cells doesn't seem to work (Read 1571 times)
TheEric
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 4
Joined: Mar 20th, 2008
Hyperlink on Table Cells doesn't seem to work
Mar 20th, 2008 at 12:19pm
Print Post  
Hi,

I am using MindFusion.WebChart.FlowChart object to export charts on a web page.

I have some tables on my page, and some of their cells have a HyperLink value setted.

However, when I generate an image map, no area is created for those cells (but it works with box objects).

Is it possible to active this feature or will I have to create invisible boxes on top of by cells?

I am using Flowchart 4.3.

Here is the (very classical) imagemap generation code for information:
Code
Select All
public string GetImageMap()
{
    HtmlBuilder builder;
    builder = new HtmlBuilder(flowChart); // flowChart is a MindFusion.WebChart.FlowChart object
    builder.LinkTarget = "_blank";
    return builder.CreateImageMap("chart1");
} 



Thanks in advance,
Eric
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Hyperlink on Table Cells doesn't seem to work
Reply #1 - Mar 20th, 2008 at 1:07pm
Print Post  
Hi,

Set HtmlBuilder.AreasForTableCells = true.

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


I love YaBB 1G - SP1!

Posts: 4
Joined: Mar 20th, 2008
Re: Hyperlink on Table Cells doesn't seem to work
Reply #2 - Mar 20th, 2008 at 1:21pm
Print Post  
It does help ! Grin

However, it seems it is adding an hyperlink on every single cell (including the ones which doesn't have the HyperLink property setted).

That's not really an issue since I can fix this in JavaScript Wink but it seems a little strange.

Thank you for your great help!
Eric
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Hyperlink on Table Cells doesn't seem to work
Reply #3 - Mar 20th, 2008 at 1:33pm
Print Post  
Seems the control checks if the nodes' hyperlinks are set before creating areas, but doesn't do that for table cells... I suppose someone here had a fit of absent-mindedness 8)
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint