Jump to content

[RISOLTO] Modulo di test


effegiweb

Recommended Posts

Ho provato a creare il modulo di test con la procedura indicata nel manuale di sviluppo.

 

Ho problemi con la tab del backoffice: se provo ad inserire un nuovo dato al salvataggio mi da un errore "Il campo test è obbligartorio".

 

Sicuramente c'è un errore nel codice di esempio, ma non capisco dove.

 

Chi mi può aiutare?

 

Grazie.

Link to comment
Share on other sites

Anche a me lo stesso errore

Ho risolto cambiando questa riga:

 

<input size="33" type="text" name="name_' . $language['id_lang'|'id_lang'] . '" value="' . htmlentities( $this->getFieldValue( $obj, 'name', intval( $language['id_lang'|'id_lang'] ) ), ENT_COMPAT, 'UTF-8' ) . '" /><sup>*</sup>

 

con

 

<input size="33" type="text" name="test" value="' . htmlentities( $this->getFieldValue( $obj, 'name', intval( $language['id_lang'|'id_lang'] ) ), ENT_COMPAT, 'UTF-8' ) . '" /><sup>*</sup>

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...