Okay
  Public Ticket #1282860
expanding collapsed column
Closed

Comments

  • eblow started the conversation

    Hi Sir,

    Great plugin to remove the complicated job of dealing with coding...

    I would like to know if it is possible to set that by clicking the row, collapsed column will expand ( I found this possible in the DataTables example, dont know if you immplemented or need a little twist.) 

    It is not convenient for mobile users if the clickable area is only the cross.

    Thanks very much for your help.

  •  1,774
    Miloš replied

    Hi eblow,
    Thank your for your purchase.

    Sorry to disappoint you but unfortunately something like this is not possible with the plugin build in features and it will require some code customization.
    If you are interested we can offer you our paid customization service where you can hire one of our developers to implement this feature for you.

    Best regards.

    Kind Regards, 

    Miloš Jovanović
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables

  • eblow replied

    Oh too bad to hear that. I think this is an implementation you should have done. 

    As it is based on Datatables subset, I have to pay an extra payment to ask this question that you just say no.

    how much would it cost? 

    ref:

    https://datatables.net/extensions/responsive/examples/child-rows/whole-row-control.html


    Thanks and Regards,

  •  1,774
    Miloš replied

    Hi eblow,


    Our price is 50$/hour and customization like this will not require more than 1 hour.
    If you are interested please give us detailed instructions and we can send you quote for this service.

    Best regards.

    Kind Regards, 

    Miloš Jovanović
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables

  • eblow replied

    please get me a quote.

    Instruction is exactly what I have been asking, when the columns are in collapsed mode, clicking any area of the same row will expand that, not just limiting to the cross button.


    Thanks for getting a quote for me Cheers

  • eblow replied

    besides, could the table content be a HTML code? 

    I also want to code for a clickable image with a link on it. Would it shows in the collapsed column when expanded as a child?

  •  4
    jcsatujp replied

    Hi Elbow,

    The content of each ot he cells CAN be html.

    Take a look here:

    http://www.keepwerking.co.uk/collection/?wdt_column_filter[0]=7&wdt_column_filter[1]=jap&wdt_column_filter[2]&wdt_column_filter[3]&wdt_column_filter[4]&wdt_column_filter[5]

    You will see that this is a database of a record collection.

    (I removed the standard filter and added my own as a simple form above it. Why? Because I wanted to be able to send a link of search results to others)

    In the table that you will see, there are images that then link to another page (to show full sized images). I use a view of a mySQL database to produce the HTML. But you could just as easily enter it manually into whatever database you are using.

    Good luck with you quest.

  • eblow replied

    What should be the code for images with a link?

    I used the link in the image attached on the cell.

    but it turns out to be http://www.mydomain.com/http://www.mylink.com over the image.

    image display correctly with a wrong link.



  •  4
    jcsatujp replied

    I just kept things VERY easy.

    The column that has the images is just a string column.

    The contents are built up with an SQL Query to extract information from my database. The image part is just

    ..... <IMG SRC="../covers/sml/' & Collection.discogs & '_001.jpeg"> .....

    where my main table is "Collection" and I have a column in that table names "discogs" which is a number that is part of the file name of my pictures.

    So the actual rendered result in the page would be something like ..

    ..... <IMG SRC="../covers/sml/12345_001.jpeg"> .....

    I would then add a <a href .... > </a> around that to point to the page you want to go to.

    But I do ALL of that BEFORE it get to the wpdatatables page. i.e. I've already got in my database all of the required output that the wpdatatable needs to render.

    Hope this helps?