user1358852
user1358852

Reputation:

XPages - error copying extension library controls

I have copied some code from one custom control to a new custom control. The code I copied contains some xe extension library and now all of these xe components show error messages saying that prefix xe is not bound (The prefix "xe" for element "xe:djContentPane" is not bound). Is there any way of solving this problem?

Upvotes: 3

Views: 507

Answers (1)

Knut Herrmann
Knut Herrmann

Reputation: 30960

Add the line xmlns:xe:... to <xp:view

<xp:view
    xmlns:xp="http://www.ibm.com/xsp/core"
    xmlns:xe="http://www.ibm.com/xsp/coreex">

Upvotes: 6

Related Questions