Namespaces
Variants
Actions
Revision as of 08:40, 12 March 2012 by hamishwillee (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

CEikEdwin::InsertDeleteCharsL does not update virtual keyboard edit field (Known Issue)

Jump to: navigation, search

Characters inserted using CEikEdwin::InsertDeleteCharsL() are not displayed in the edit field of the virtual keyboard (VKB).

Article Metadata

Tested with
Devices(s): Nokia N97, Nokia N97 Mini
Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 5th Edition

Article
Keywords: CEikEdwin, InsertDeleteCharsL
Created: User:Kbwiki (07 Apr 2010)
Last edited: hamishwillee (12 Mar 2012)

Description

CEikEdwin::InsertDeleteCharsL() replaces the cursor selection with the specified text. However, when the virtual keyboard is active, characters inserted into the host editor are not displayed in the VKB edit field.

Solution

Avoid using CEikEdwin::InsertDeleteCharsL() to replace text in an editor. A workaround (when replacing a single character) is to first delete the character at cursor position and then add a new character:

TInt pos = editor->CursorPos();
TKeyEvent keyEvent;
keyEvent.iCode = EKeyDelete;
keyEvent.iScanCode = EStdKeyDelete;
keyEvent.iModifiers = 0;
keyEvent.iRepeats = 0;
iEditor->OfferKeyEventL( keyEvent, aType );
iEditor->SetCursorPosL( pos, EFalse );
iEditor->OfferKeyEventL( newKeyEvent, aType );
218 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