Link on table
Link on table
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.
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.
This discussion has been closed.
Replies
Allan
I can't see any linkable data.
There isn't specified error.
How can i send you my example?
Allan