Project

General

Profile

Actions

Support #1164

closed

Anchor to internal path html

Added by Anonymous about 12 years ago. Updated about 12 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Start date:
02/10/2012
Due date:
% Done:

0%

Estimated time:

Description

Hello,

I need to navigate to an html file located in a subdirectory off docroot in a new window. My app may build

html files which I will need to display on demand. I try to do:

Wt::WAnchor* a = new WAnchor(WLink(WLink::InternalPath, "myHtml.html"),"Doc link text", this);

a->setRefInternalPath("/subdir");

a->setTarget(TargetNewWindow);

This brings up a new window, but it is my application page again with the url showing my app url with ?_/subdir appended,

but my html doc is not displayed. It seems I'm misunderstanding how to utilize internal path navigation..

does anyone know what I'm doing wrong?

Thank you

Actions #1

Updated by Koen Deforche about 12 years ago

  • Status changed from New to Resolved
  • Assignee set to Koen Deforche
  • Target version set to 3.2.1

Hey,

Internal paths are paths implemented by the application. An actual HTML file that is external to the application (but perhaps deployed in the docroot) should be used as a simple URL.

Thus you need:

Wt::WAnchor* a = new WAnchor("myHtml.html","Doc link text", this);
a->setTarget(TargetNewWindow);
Actions #2

Updated by Koen Deforche about 12 years ago

  • Status changed from Resolved to Closed

Fixed in 3.2.1

Actions

Also available in: Atom PDF