Formatage du texte 'textfield'

Si vous détectez un bug, signalez-le ici
Bigfoot87
Messages : 5
Enregistré le : lun. 22 oct. 2012 15:34

Formatage du texte 'textfield'

Message par Bigfoot87 »

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. :)

Avatar du membre
steevo
Administrateur du site
Messages : 330
Enregistré le : jeu. 17 déc. 2009 22:59
Contact :

Re: Formatage du texte 'textfield'

Message par steevo »

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.

Bigfoot87
Messages : 5
Enregistré le : lun. 22 oct. 2012 15:34

Re: Formatage du texte 'textfield'

Message par Bigfoot87 »

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.
Fichiers joints
frontend.png
(17.25 Kio) Pas encore téléchargé
backend.png
(35.01 Kio) Pas encore téléchargé

Avatar du membre
steevo
Administrateur du site
Messages : 330
Enregistré le : jeu. 17 déc. 2009 22:59
Contact :

Re: Formatage du texte 'textfield'

Message par steevo »

I think i have found the solution.
In the file administrator/components/com_collector/tables/collector_items.php
at the line 244 before

Code : Tout sélectionner

		$this->history->id = $version;
add

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);
			}
		}
		

Bigfoot87
Messages : 5
Enregistré le : lun. 22 oct. 2012 15:34

Re: Formatage du texte 'textfield'

Message par Bigfoot87 »

Thank you! It works perfectly again.

I'll buy you a beer. :)

Avatar du membre
steevo
Administrateur du site
Messages : 330
Enregistré le : jeu. 17 déc. 2009 22:59
Contact :

Re: Formatage du texte 'textfield'

Message par steevo »

Thank you for the beer ;)

Répondre