Jump to content

[Résolu] [*] BO : Import afficher plus de colonnes dans la view


Recommended Posts

Bonjour à tous,

 

Dans le fichier AdminImportController.php afin que la view affiche plus de colonnes (voir captures d'écran) on peut modifier ceci :

modifié

/** this value set the number of columns visible on each page */
define('MAX_COLUMNS', 6);

par

define('MAX_COLUMNS', 12);

 

avant width : 900 px / 6 = 150 px après width : 900 px /12 = 75 px

 

Comment modifier le width afin d'utiliser tout l'écran (23 pouces) et garder des colonnes à 150 px,

je n'ai pas trouvé dans le css ? red.gif

 

Merci par avance.

 

Edit : solution Post 8

Edited by indesign (see edit history)
Link to comment
Share on other sites

Bonjour Enola,

 

Merci de intéresser à mon problème.

Essayez avec un width : 100%

D'accord, mais où ?

 

J'ai trouvé ceci dans le admin.css

/* tab: AdminImport */

form#import_form {
padding-bottom:22px;
margin-left:15px;
margin-bottom:20px;
}
.table_overflow {
width:900px;
height:500px;
overflow:auto;
}

 

et ceci

#preview_import label {
float:left;
font-weight:bold;
padding:0.2em 0 0;
text-align:left;
width:320px;
}

 

Très beau site et très beau template :rolleyes:

Le template utilisé sur le site correspond à quel thème ?

Edited by indesign (see edit history)
Link to comment
Share on other sites

Le fichier css doit se trouver dans le dossier "admin" "themes" "default" et "css"

Ok. Dans admin.css j'ai trouvé ceci. La table est déjà à 100 %

 

*TABLE*/

.table_grid {width:100%;}
.table{ background-color:#fff;border:1px solid #ccc;padding:0: border-radius:3px; -moz-border-radius:3px;-webkit-border-radius:3px;}
.filter {background-color:#f1f9ff;}
.table .filter {margin:2px;}
.table th a{text-decoration:underline}
.table a:hover{text-decoration:none}
.table tr th{ background-color: #F1F1F1; text-shadow:0 1px 0 #fff; padding:4px 6px;
   background: #ececec url('../img/bg-degrade-table.png') repeat-x scroll left top;
   background-image: -moz-linear-gradient(center top , #F9F9F9, #ECECEC);
   background: -webkit-gradient(linear, center top ,center bottom, from(#F9F9F9), to(#ECECEC)) repeat scroll 0 0 transparent;
   font-size:13px; text-align:left; color:#333;}
.table tr th.right { text-align:center;}
.table tr td{border-bottom:1px solid #ccc;color:#333;font-size:12px;padding: 4px 4px 4px 6px;}
.table tr.row_hover:hover td{background:#fff1b5}
.table tr.row_hover.filter:hover td{background:#F1F9FF}
.table tr td.row_hover:hover table tr td{background:none}
.table tr.action_details td{background:#FAFAFA;}
.table tr.alt_row.action_details td{background:#E8E8E8;}
.table tr td.empty{border-bottom:none;background:white!important}
.table tr td.first{border-left:1px solid #DEDEDE}
.table tr td.last{border-right:1px solid #DEDEDE}
.table tr.small td{height:15px}
.table tr.last td{border-bottom:none}

Link to comment
Share on other sites

La solution :

Dans le fichier AdminImportController.php afin que la view affiche plus de colonnes on peut modifier ceci :

 

modifié ligne 35 (environ)

/** this value set the number of columns visible on each page */
define('MAX_COLUMNS', 6);

par

define('MAX_COLUMNS', 12);

 

modifié ligne 556 (environ)

protected function generateContentTable($current_table, $nb_column, $handle, $glue)
..
	   	 $html .= '<th style="width: '.(900 / MAX_COLUMNS).'px; vertical-align: top; padding: 4px">
						<select onchange="askFeatureName(this, '.$i.');"
							style="width: '.(900 / MAX_COLUMNS).'px;"

par

protected function generateContentTable($current_table, $nb_column, $handle, $glue)
..
	   	 $html .= '<th style="width: '.(1300 / MAX_COLUMNS).'px; vertical-align: top; padding: 4px">
						<select onchange="askFeatureName(this, '.$i.');"
							style="width: '.(1300 / MAX_COLUMNS).'px;"

 

Ajuster le nombre de colonnes et le width selon son écran <_<

Edited by indesign (see edit history)
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...