Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inputs size #214

Closed
wants to merge 45 commits into from
Closed

Inputs size #214

wants to merge 45 commits into from

Conversation

bazooka07
Copy link
Collaborator

Sur un écran de résolution 1920x1080, les inputs type text ont une taille ridicule dans les tableaux users, catégorie et static.

Passer d'un

plxUtils::printInput($name, $value, 'text', '10-255')
à
plxUtils::printInput($name, $value, 'text', '12-255')
résout mal le problème car il génére l'attribut size dans une balise .

Mieux vaut gérer cela à une feuille CSS. Donc réécriture de plxUtils::printInput pour gérer des appels de fonction comme ceci

plxUtils::printInput($name, $value, 'text', '-255');
plxUtils::printInput($name, $value, 'text', '');
On en profite pour éviter de générer des placeholder="" ou class="".
Ce qui fait qu'on peut écrire dans core/admin/paramètres_plugins.php un truc comme ceci :
plxUtils::printInput($_userid.'_name', plxUtils::strCheck($_user['name']), 'text', '');

Après quelques réglages dans les feuilles CSS, les inputs peuvent occuper 100% de la largeur des cellules.
S'applique à la gestion des users, categories et pages statiques.

bazooka07 and others added 30 commits March 14, 2016 08:37
if(! empty($value)) { $params[] = 'value="'.$value.'"'; }
if(! empty($extra)) { $params[] = $extra; }
if($type != 'hidden') {
if($readonly === true) { $params[] = 'readony'; }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

coquille: $params[] = 'readonly';

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, merci.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Après coup, je pense qu'on peut simplifier la déclatation de la fonction plx::printInput(...) en évitant l'emploi de chaines vides comme ceci :

public static function printInput($name, $value='', $type='text', $sizes='50-255', $readonly=false, $className=false, $placeholder=false, $extra=false) { .... }

@pluxml
Copy link
Collaborator

pluxml commented Mar 22, 2017

quand le paramètre readonly est passé avec la valeur true, il faut à la fois avoir:
class="readonly" et readonly="readonly"
(ou juste readonly à la place de readonly="readonly" avec un syntaxe html5)
Or ici on a que readonly

@pluxml
Copy link
Collaborator

pluxml commented Mar 22, 2017

implémenté. merci

@pluxml pluxml closed this Mar 22, 2017
@bazooka07 bazooka07 deleted the inputs-size branch March 22, 2017 13:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants