or
HI
I use kendo grid. I want when I edit a row and change value of drop down , show new value in column
But with this code I want
change and update database but do not show new value in grid and I should refresh page.
My English is n't good , I'm sorry if my writting is bad. :D
public string EventTypeCount{ get { JavaScriptSerializer js = new JavaScriptSerializer(); return js.Serialize((List<EventTypeCount>)obj); } set { ViewState["EventTypeCount"] = value; }}function createChartEvents() { var dataEvent = '<%= EventTypeCount %>'; $("#chartEvents").kendoChart({ theme: "metro", dataSource: { data: dataEvent, dataType: "json" }, title: { text: "Estudios" }, legend: { position: "bottom" }, seriesDefaults: { type: "column", labels: { visible: true } }, series: [{ field: "CountMade", name: "Eventos Finalizados" }, { field: "CountUnmade", name: "Eventos Pendientes" }, { field: "CountCanceled", name: "Eventos Cancelados" }], categoryAxis: { field: "EventTypeName" }, dataBound: onDataBound, }); }{ field: 'IsSelected', title: 'Select', type: "boolean", template: '<input class=selector type=checkbox />', width: '50px' }