or
function
(operation)
{
if
($(
'#grid'
).data(
'bindData'
) !==
false
)
{
var
params = operation.data;
params[
'id'
] = $(
'#grid'
).data(
'webServiceId'
);
$.ajax({
url:
'webservice.php'
,
contentType:
'application/json'
,
type:
'POST'
,
data: kendo.stringify(params),
success:
function
(response) { operation.success(response); }
});
}
}
animation: {
close: {
effects:
"none"
,
duration: 0
},
open: {
effects:
"none"
,
duration: 0
}
},
columns.Bound(e => e.Client)
.FooterTemplate(@<
text
>
@foreach (var acct in accountsRollups)
{
@Formatters.FormatCurrency(acct.UnrealizedGainLoss)
<
br
/>
}
</
text
>)