Sujet fermé
Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5

[RESOLU] Administration (BO) de ListIt2 problème responsive
#4

Re!

J'ai pris un peu de temps pour régler ce problème.
Après inspection, le problème ne concerne que la version 1.4.1 de ListIt2.
Le problème n'apparait pas sur la version précédente : 1.4.

Ce que j'ai donc fait (et qui a priori fonctionne sans souçis), c'est que j'ai remplacé le template de la v1.4.1 par celui de la 1.4:
modules/ListIt2/framework/templates/itemtab.tpl

Voici ci-dessous le code de la v1.4 (qu'il suffit donc de copier/coller) :

Code :
[== Indéfini ==]
{if count($items) > 0}
<div class="item-search">
<form id="quicksearch_form">
    <label class="pagetext">{$mod->ModLang('search')} {$title_plural}: </label>
        <input type="text" name="search" value="" id="item_search" placeholder="{$mod->ModLang('searchfor')} {$title}" />
</form>    
</div>
<div class="pageoptions">{$addlink}{if isset($importlink)}{$importlink}{/if}{if isset($exportlink)}{$exportlink}{/if}</div>
<div class="clear"></div>
<div class="pageshowrows">{$pagination}</div>
<table id="sortable_item" cellspacing="0" class="pagetable {$themeObject->themeName}">
    <thead>
        <tr class="top">
            <th>{$title}</th>
            <th>{$mod->ModLang('alias')}</th>
            {foreach from=$items.0->fielddefs item=fielddef}
            <th>{$fielddef.name}</th>
            {/foreach}
            {if isset($items.0->create_time)}<th>{$mod->ModLang('create_time')}</th>{/if}
            {if isset($items.0->start_time)}<th>{$mod->ModLang('start_time')}</th>{/if}
            {if isset($items.0->end_time)}<th>{$mod->ModLang('end_time')}</th>{/if}
            {if isset($items.0->approve)}<th class="pageicon">&nbsp;</th>{/if}
            <th class="pageicon">&nbsp;</th>
            <th class="pageicon">&nbsp;</th>
            {if isset($items.0->delete)}<th class="pageicon">&nbsp;</th>{/if}
            <th title="{$mod->ModLang('select_all')}" class="pageicon no-sort"><input id="check_all_item" type="checkbox" /></th>
        </tr>
    </thead>
    <tbody class="content" width="100%">
{foreach from=$items item=entry}
    {cycle values="row1,row2" assign='rowclass'}
        <tr id="item_{$entry->item_id}" class="{$rowclass}" style="cursor: move;">
            <td>{$entry->title}</td>
            <td>{$entry->alias}</td>
            {foreach from=$entry->fielddefs item=fielddef}
            <td>{$fielddef->RenderForAdminListing($actionid, $returnid)}</td>
            {/foreach}
            {if isset($items.0->create_time)}<td>{$entry->create_time}</td>{/if}
            {if isset($items.0->start_time)}<td>{$entry->start_time}</td>{/if}
            {if isset($items.0->end_time)}<td>{$entry->end_time}</td>{/if}
            {if isset($entry->approve)}<td class="init-ajax-toggle approve-item">{$entry->approve}</td>{/if}
            <td>{$entry->copylink}</td>
            <td>{$entry->editlink}</td>
            {if isset($entry->delete)}<td class="init-ajax-delete">{$entry->delete}</td>{/if}
            <td class="item-mass-action">{$entry->select}</td>
        </tr>
{/foreach}
    </tbody>
</table>
<div class="pageshowrows">{$pagination}</div>
<div class="pageoptions" style="float:right;">
<select id="listit2_item_mass_action">
    <option value="">{$mod->ModLang('select_one')}</option>
    <option value="delete">Delete</option>
    <option value="approve">Toggle approve</option>
</select>
</div>
<div class="pageoptions" style="float:right;">{$submitorder}</div>
{/if}

<div class="pageoptions">{$addlink}{if isset($importlink)}{$importlink}{/if}{if isset($exportlink)}{$exportlink}{/if}</div>
Sujet fermé


Messages dans ce sujet

Atteindre :


Utilisateur(s) parcourant ce sujet : 1 visiteur(s)