Namespaces
Variants
Actions

MBrCtlLinkResolver interface of Browser Control API does not work on S60 5th Edition (Known Issue)

Jump to: navigation, search
Article Metadata

Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 5th Edition

Article
Keywords: MBrCtlLinkResolver, ResolveLinkL, ResolveEmbeddedLinkL
Created: User:Technical writer 1 (12 May 2009)
Last edited: hamishwillee (01 Aug 2012)

Description

The MBrCtlLinkResolver interface of the Browser Control API provides a callback mechanism for receiving the content of an embedded link or the content of a user-initiated load request. However, in S60 5th Edition devices the functions of this interface are not invoked when the links on an HTML page are clicked.

How to reproduce

1) Load any HTML page with links using the Browser Control API. You can use the standard Browser Control example available in the SDK.
2) Click on any of the links on the displayed HTML page.

Expected behaviour: The callback functions MBrCtlLinkResolver::ResolveLinkL() and MBrCtlLinkResolver::ResolveEmbeddedLinkL() must be invoked on clicking the links.

Actual behaviour: The callback functions are not invoked and the page is not loaded.

Solution

When creating the Browser Control instance, pass the entire screen area to the CreateBrowserControlL function.

Example:

 void CBrCtlSampleAppContainer::ConstructL(const TRect& aRect)
{
iBrCtlInterface = CreateBrowserControlL(
this,
aRect, // pass the entire screen area.
iBrCtlCapabilities,
iCommandBase,
iBrCtlSampleAppSoftkeysObserver,
iBrCtlSampleAppLinkResolver,
iBrCtlSampleAppSpecialLoadObserver,
iBrCtlSampleAppLayoutObserver,
iBrCtlSampleAppDialogsProvider);

Note: The Browser Control instance must be initiated with ECapabilityClientNotifyURL and ECapabilityClientResolveEmbeddedURL capabilities to enable the callback interface.

This page was last modified on 1 August 2012, at 07:40.
63 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved