Avatar billede volturex Nybegynder
21. december 2007 - 18:19 Der er 1 kommentar

Vis korte detaljer og klik for flere detaljer

Hejsa. Jeg har lidt problemer med det her script. I øjeblikket virker det sådan at når jeg viser siden er alle tables vist og når jeg så klikker billedet er alle tables også vist.

Det jeg vil ha er at kun de første 4 tables bliver vist og når jeg så klikker på billedet kommer den op med alle tables.

<?php
    include(dirname(__FILE__)."/language.php");
    include(dirname(__FILE__)."/lib.php");
    include(dirname(__FILE__)."/brugttilpaahaeng_dml.php");
   
    $x = new DataList;
    if($HTTP_POST_VARS["Filter_x"] != ""  || $HTTP_POST_VARS['CSV_x'] != "")
    {
        // Query used in filters page and CSV output
        $x->Query = "select brugttilpaahaeng.field1 as 'Både billede', brugttilpaahaeng.field8 as 'Både mærke', brugttilpaahaeng.field23 as 'Beskrivelse af båden', brugttilpaahaeng.field24 as 'Pris incl. moms Kr.', brugttilpaahaeng.field2 as 'Byggeår', brugttilpaahaeng.field3 as 'Søsat år', brugttilpaahaeng.field4 as 'Skrogmateriale', brugttilpaahaeng.field5 as 'Værft Land', brugttilpaahaeng.field6 as 'Længde', brugttilpaahaeng.field7 as 'Bredde', brugttilpaahaeng.field9 as 'Dybdegang', brugttilpaahaeng.field10 as 'CE Kategori', brugttilpaahaeng.field11 as 'Max. personer', brugttilpaahaeng.field12 as 'Antal køjepladser', brugttilpaahaeng.field13 as 'Medfølgende udstyr', brugttilpaahaeng.field14 as 'Motorfabrikant', brugttilpaahaeng.field15 as 'HK', brugttilpaahaeng.field16 as 'Type', brugttilpaahaeng.field17 as 'Antal cylindre', brugttilpaahaeng.field18 as 'Brændstofsystem', brugttilpaahaeng.field19 as 'Motor årgang', brugttilpaahaeng.field20 as 'Kørte antal timer', brugttilpaahaeng.field21 as 'Trailer', brugttilpaahaeng.field22 as 'Bådens tilstand' from brugttilpaahaeng";
    }
    else
    {
        // Query used in table view
        $x->Query = "select if(length(brugttilpaahaeng.field1), concat('<img src=" . $Translation['ImageFolder'] . "',brugttilpaahaeng.field1,' border=0>'), '') as 'Både billede', brugttilpaahaeng.field8 as 'Både mærke', brugttilpaahaeng.field23 as 'Beskrivelse af båden', brugttilpaahaeng.field24 as 'Pris incl. moms Kr.', brugttilpaahaeng.field2 as 'Byggeår', brugttilpaahaeng.field3 as 'Søsat år', brugttilpaahaeng.field4 as 'Skrogmateriale', brugttilpaahaeng.field5 as 'Værft Land', brugttilpaahaeng.field6 as 'Længde', brugttilpaahaeng.field7 as 'Bredde', brugttilpaahaeng.field9 as 'Dybdegang', brugttilpaahaeng.field10 as 'CE Kategori', brugttilpaahaeng.field11 as 'Max. personer', brugttilpaahaeng.field12 as 'Antal køjepladser', brugttilpaahaeng.field13 as 'Medfølgende udstyr', brugttilpaahaeng.field14 as 'Motorfabrikant', brugttilpaahaeng.field15 as 'HK', brugttilpaahaeng.field16 as 'Type', brugttilpaahaeng.field17 as 'Antal cylindre', brugttilpaahaeng.field18 as 'Brændstofsystem', brugttilpaahaeng.field19 as 'Motor årgang', brugttilpaahaeng.field20 as 'Kørte antal timer', brugttilpaahaeng.field21 as 'Trailer', brugttilpaahaeng.field22 as 'Bådens tilstand' from brugttilpaahaeng";
    }
   
    // handle date sorting correctly
    // end of date sorting handler
   
    $x->DataHeight = 150;
    $x->AllowSelection = 1;
    $x->AllowDelete = 1;
    $x->AllowInsert = 1;
    $x->AllowUpdate = 1;
    $x->AllowFilters = 1;
    $x->AllowSavingFilters = 0;
    $x->AllowSorting = 1;
    $x->AllowNavigation = 1;
    $x->AllowPrinting = 1;
    $x->AllowCSV = 0;
    $x->HideTableView = 0;
    $x->RecordsPerPage = 10;
    $x->QuickSearch = 3;
    $x->QuickSearchText = $Translation["quick search"];
    $x->ScriptFileName = "brugttilpaahaeng_view.php";
    $x->TableTitle = "Brugte både til påhængsmotorer";
    $x->PrimaryKey = "brugttilpaahaeng.field1";
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->ColWidth[] = 150;
    $x->Template = 'brugttilpaahaeng_templateTV.html';
    $x->SelectedTemplate = 'brugttilpaahaeng_templateTVS.html';
    $x->ShowTableHeader = 1;
    $x->ShowRecordSlots = 1;
    $x->HighlightColor = '#FFE4E1';
    $x->Render();
   
    include(dirname(__FILE__)."/header.php");
    echo $x->HTML;
    include(dirname(__FILE__)."/footer.php");
?>

På forhånd tak ;)

Best regards

VoltureX
Avatar billede volturex Nybegynder
21. december 2007 - 18:21 #1
Mener selfølgelig fields og ikke tables ;)
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester