All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wicketstuff.kendo.ui.datatable.column.AjaxPropertyColumn.js Maven / Gradle / Ivy

There is a newer version: 10.3.0
Show newest version
function loadAjaxPropertyColumn(data) {

	var field = '${field}';
	var key = data[field];
	var imageUrl = '${imageUrl}';
	var callbackUrl = '${callbackUrl}';

	jQuery.ajax({
		url : callbackUrl,
		type : "GET",
		data: { id: key },
		success : function(response) {
			jQuery("#lazy_" + key).html(response);
		},
		error: function (xhr, error) {
			console.error(error);
		}
	});

	return "
Loading...
" }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy