You are viewing documentation for an older version. For current documentation - click here.

FusionWidgets XT allows you to open links in specified frames too. To do so, you just specify the name of the frame in the link itself. This feature can be very useful when creating simulated drill-down reports and dashboards.

To open link in a specified frame, you need to set the link as under:

<set ... value='2235' link='F-FrameName-ShowDetails.asp%3FMonth%3DJan' ... >

The first character in the link is F, denoting that we need to open this link in a frame. Post F, we add a dash character (-) and then specify the name of frame in which we want the link to open. Soon after the frame name, we add another dash character and finally write the actual link which is to be opened. Again, the link needs to be URL Encoded.

Advanced Note : You can provide _parent as the name of the frame. The URL will get loaded in the frame or browser window which is the parent of the current window. Typically, the main browser space becomes the parent frame that contains all the frames. Hence, if you wish to remove all frames and load the URL freshly on the same location you can use _parent as the name of the frame.

Example data:

<chart caption="chart caption" subcaption="" xAxisName="" yAxisName="" numberPrefix="">
<set label="" value="" link="F-detailsFrame-../DemoLinkPages/DemoLink1.html"/>
<set label="" value="" link="F-detailsFrame-../DemoLinkPages/DemoLink2.html"/>
<set label="" value="" link="F-detailsFrame-../DemoLinkPages/DemoLink3.html"/>
<set label="" value="" link="F-detailsFrame-../DemoLinkPages/DemoLink4.html"/>
<set label="" value="" link="F-detailsFrame-../DemoLinkPages/DemoLink5.html"/>
<set label="" value="" link="F-detailsFrame-../DemoLinkPages/DemoLink6.html"/>
</chart>
{
  "chart": {
    "caption": "chart caption",
    "subcaption": "",
    "xaxisname": "",
    "yaxisname": "",
    "numberprefix": ""
  },
  "data": [
    {
      "label": "",
      "value": "",
      "link": "F-detailsFrame-../DemoLinkPages/DemoLink1.html"
    },
    {
      "label": "",
      "value": "",
      "link": "F-detailsFrame-../DemoLinkPages/DemoLink2.html"
    },
    {
      "label": "",
      "value": "",
      "link": "F-detailsFrame-../DemoLinkPages/DemoLink3.html"
    },
    {
      "label": "",
      "value": "",
      "link": "F-detailsFrame-../DemoLinkPages/DemoLink4.html"
    },
    {
      "label": "",
      "value": "",
      "link": "F-detailsFrame-../DemoLinkPages/DemoLink5.html"
    },
    {
      "label": "",
      "value": "",
      "link": "F-detailsFrame-../DemoLinkPages/DemoLink6.html"
    }
  ]
}

In this example, the main frameset is contained in FrameExample.html, which has two vertical frame pane- one on top containing the chart (FramePages\FrameChart.html) and one on bottom to show the linked frame pages. The bottom pane by default shows FramePages\LowerFrame.html which contains the message "Click on columns above to view details ".

The setup looks as under:

See it live!

The HTML code of FrameExample.html is as under:

<html>
	<head>
		<title>FusionWidgets XT Frame Drill-down example</title>
	</head>
		<frameset rows="350,*" cols="*" frameborder="YES" border="1" framespacing="0">
			<frame src="FramePages/FrameChart.html" name="chartFrame" scrolling="NO" noresize >
			<frame src="FramePages/LowerFrame.html" name="detailsFrame" scrolling="Auto" noresize>
		</frameset>
</html>

The top frame (FramePages\FrameChart.html) contains the chart and is named as chartFrame. The bottom frame responds to click events from the chart - it's named as detailsFrame, and we use this name in our XML data links.

When the user now clicks on the chart links, they open up in detailsFrame frame pane, which is what we exactly wanted to.

Note: Internally the chart decodes a URL that you set as link. Before invoking the link it again encodes the URL. If you are passing multilingual characters via a URL or do not want this decode-encode mechanism to be handled by the chart, you can set unescapeLinks='0' in <chart> element of the chart's XML data. If you are using JSON data, you need to use { "chart" : { "unescapeLinks" : "0" ... } ... } .