-1

Getting error on rich panel

java.lang.NoSuchMethodException: org.richfaces.component.html.HtmlPanel.setReadOnly(boolean)

using richfaces 3.3.0 and jsf 1.2. Checked the latest version of richfaces also but the method is not found in it.

Vasil Lukach
  • 3,658
  • 3
  • 31
  • 40
vin_shumi
  • 1
  • 1
  • 1
    Well it looks like you're trying to use a non-existent method. Post the code that causes this issue. – Makhiel Jan 11 '16 at 11:28

1 Answers1

0

It is possible that you are using readonly="true" on rich:panel tag but readonly attribute is not available for rich:panel. More details on available attributes is here

Alok Dubey
  • 419
  • 4
  • 13