Bonjour,
Désolé pour mon mauvais Français .. Je ne suis pas à l'aise dans cette langue.
Tout d'abord, félicitations pour ce composant génial! Je l'utilise avec plaisir.
Maintenant, à ma question ...
Lorsque j'ai utilisé la version 0.4.1, je pouvais voir la forme d'un 'textfield' ajuster.
Dans la version 0.5.0, le texte en clair (plain text). Est-ce exact?
Merci pour la réponse.
Formatage du texte 'textfield'
Re: Formatage du texte 'textfield'
Bonjour,
Vous pouvez parler en anglais si vous le souhaitez
Je ne comprends pas bien la question. Normalement il n'y a pas de changement de fonctionnement au niveau du textfield entre les 2 versions.
Quel problème rencontrez vous ? (une capture d'écran peut-être)
-------
You can speak english if you want.
I don't really understand the question. There no difference between the 2 versions in the textfield format.
What is your problem ? (maybe you could make a snapshot)
Steevo.
Vous pouvez parler en anglais si vous le souhaitez
Je ne comprends pas bien la question. Normalement il n'y a pas de changement de fonctionnement au niveau du textfield entre les 2 versions.
Quel problème rencontrez vous ? (une capture d'écran peut-être)
-------
You can speak english if you want.
I don't really understand the question. There no difference between the 2 versions in the textfield format.
What is your problem ? (maybe you could make a snapshot)
Steevo.
Re: Formatage du texte 'textfield'
Thanks for your comment.
I have attached screenshots to clarify my problem.
In the backend I can format the text. But after saving text in both the front and in the back end changes in plaintext.
I have attached screenshots to clarify my problem.
In the backend I can format the text. But after saving text in both the front and in the back end changes in plaintext.
- Fichiers joints
-
- frontend.png
- (17.25 Kio) Pas encore téléchargé
-
- backend.png
- (35.01 Kio) Pas encore téléchargé
Re: Formatage du texte 'textfield'
I think i have found the solution.
In the file administrator/components/com_collector/tables/collector_items.php
at the line 244 before
add
In the file administrator/components/com_collector/tables/collector_items.php
at the line 244 before
Code : Tout sélectionner
$this->history->id = $version;
Code : Tout sélectionner
// recuperation des champs de la collection
$query = 'SELECT * FROM `#__collector_fields`';
$query .= ' WHERE collection = ' . $this->collection;
$query .= ' ORDER BY ordering';
$db->setQuery($query);
$fields = $db->loadObjectList();
foreach ( $fields AS $field )
{
$nameField = $field->tablecolumn;
if ( $field->type == 2 )
{
$this->history->$nameField = JRequest::getVar($nameField, '', 'post', 'string', JREQUEST_ALLOWRAW);
}
if ( $field->type == 7 )
{
$timestamp = strtotime($this->$nameField);
$this->history->$nameField = JHTML::_( 'date', $timestamp, '%Y-%m-%d %H:%M:%S', 0);
}
}
Re: Formatage du texte 'textfield'
Thank you! It works perfectly again.
I'll buy you a beer.
I'll buy you a beer.
Re: Formatage du texte 'textfield'
Thank you for the beer