Hi,
I am using the kendo grid with custom popup edit template and everything works fine until i use text area inside the template.
any html after the textare does not show in the edit popup template and
hence i cannot see the update and cancel buttons or any other field that
i declare after the textarea
Hi there, for some reason I can't force bubble chart to show legend, at the same time I'm able to see category name in the tooltip, could you please explain why, thanks.
$("#Chart1").kendoChart({
title: {
text: "Chart"
},
legend: {
visible: true,
position: "bottom"
},
dataSource: @{@Html.Raw(id)}ChartDataSource1,
seriesDefaults: {
type: "bubble"
},
seriesColors: ["#004D5C", "#FF8700", "#38A660", "#E5D843", "#80BF34"],
series:
[{
type: "bubble",
categoryField: "Field1",
xField: "Field2",
yField: "Field3",
sizeField: "Size",
colorField: "Color",
maxSize: 35,
minSize: 3,
visibleInLegendField: "true",
tooltip: {
visible: true,
format: "{2} {3}"
}
}
]
,
xAxis: {
//max: 1000,
labels: {
format: "{0}"
}
},
yAxis: {
//min: 80,
labels: {
format: "{0}"
}
},
});
$("#divGrid").data("kendoGrid").table[0].rows[0]. cells[0].children.ARadio; $("#divGrid").kendoGrid({ dataSource: { data: ds, pageSize: 5 } , pageable: { input: true, numeric: false } , selectable: true , sortable: true , scrollable: false, columns: [{ title: "A", template: '<input type="checkbox" id="ARadio" ARadio="#= RequestId #"/>' }, { title: "Requestor Name", field: "RequestorName", template: '<nobr><label style="width:120px;">#=RequestorName#</label></nobr>', width: 150 }, { title: "Request Type", field: "RequestType" }, { title: "Business Group", field: "BusinessSilo", template: '<nobr><label style="width:120px;">#=BusinessSilo#</label></nobr>', width: 120 }, { title: "Access Level", field: "AccessLevel" }, { title: "Access Justification", field: "AccessJustification", template: '<nobr><label style="width:120px;">#=AccessJustification#</label></nobr>', width: 150 }, { title: "Date Requested", field: "DateRequested" }, { title: "Date of Expiry", field: "ExpirationDate"}]});