Link on table

Link on table

stefanistefani Posts: 6Questions: 0Answers: 0
edited May 2012 in General
Hi,

I've create into my project (MVC Razor engine) a table madde of 4 column.
I 'd like that record on 3rd colum were link for other page.
I've done that




ID
Data Analisi
Risultato
AntiAGe





function CaricaFoto() {
};

$('#AnamnesiViso').dataTable({
"bProcessing": true,
"bServerSide": true,

"bSort": false,
"bInfo": false,
"bLengthChange": false,
"bPaginate": false,
"bFilter": false,

"sAjaxSource": 'JRicercaAnamnesiViso?k_clifor=' + $("input[name='KClifor']").val(),
"oLanguage": {
"sProcessing": "Caricamento...",
"sLengthMenu": "Visualizza _MENU_ elementi",
"sZeroRecords": "La ricerca non ha portato alcun risultato.",
"sInfo": "Vista da _START_ a _END_ di _TOTAL_ elementi",
"sInfoEmpty": "Vista da 0 a 0 di 0 elementi",
"sInfoFiltered": "(filtrati da _MAX_ elementi totali)",
"sInfoPostFix": "",
"sSearch": "Cerca:",
"sUrl": "",
"oPaginate":
{
"sFirst": "Prima Pagina",
"sLast": "Ultima Pagina",
"sNext": "Succ.",
"sPrevious": "Prec.",
"sEmptyTable": "Nessun Dato Trovato",
"sSearch": "Ricerca:"
},
"aoColumns": [
{ "sWidth": "30%", "sClass": "left" },
{ "sWidth": "30%", "sClass": "left" },
{ "fnRender": function (oObj) {
return '' + 'AAAAAAAA' + '';
}
},
{ "sWidth": "30%", "sClass": "left" }
]
}
});

I've got this problem:

1. table is disabled
2. no link compares.

Why?

Regards.

Replies

  • stefanistefani Posts: 6Questions: 0Answers: 0
    Any news?
  • allanallan Posts: 63,205Questions: 1Answers: 10,415 Site admin
    Almost certainly a Javascript error if the table doesn't appear. What does your browser's Javascript console say? Failing that, can you give us a link please.

    Allan
  • stefanistefani Posts: 6Questions: 0Answers: 0
    Into my datatable I see only my data.
    I can't see any linkable data.

    There isn't specified error.
    How can i send you my example?
  • allanallan Posts: 63,205Questions: 1Answers: 10,415 Site admin
    Just paste the URL for the page into this conversation :-)

    Allan
This discussion has been closed.