I have Grid in a partialview which is also in a partialview that is rendered by a TabStrip, when I click on the tab the grid doesnt not read
so grid in partialview1 which is in NewAccountPermissions which is being called by:
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Items(tabstrip =>
{
tabstrip.Add().Text("Add Client Permissions").Selected(true)
.LoadContentFrom("NewAccountPermissions", "Administration");
//tabstrip.Add().Text("Edut Client Administration")
// .LoadContentFrom("Index", "Tab2");
})
)
I have a gauge on my html page, defained like this:
<span kendo-radialgauge="gauge.kendoGaugeInstance" k-options="gauge.options"></span>IT has multiple pointers and I need to update the values
How can I do it?
I tried the setOptions method similar to line chart :
kendoGaugeInstance.setOptions({ options: updatedOptions});​but that doesn't work.
kendoGaugeInstance.redraw();works somewhat, but it redraws it completely with all pointers animation from 0.
How can I do it properly?
Thanks
Hello
I am using an example such as the following in MVC
http://demos.telerik.com/kendo-ui/grid/editing-inline
However, I want to send the user confirmation that the edition or destruction of the record was successfull or unsuccessfull. Is there a way to do this?
I have seen that on the controller you are returning a Json with the same model sent from the client side, but I do not know where this information returned from the controller is processed on the client side.
How can I do this?
​
Hi
I've kind of got this working at the moment but badly, e.g.
onActivate = (e: any) =>
{
if (this.minimiseOnStartup)
{
setTimeout(this.Minimise, 1);
}
}
Minimise = () =>
{
var $kendoWindow = $(this.windowId);
$kendoWindow.data('kendoWindow').minimize();
}
(this is typescript rather than javascript but I'm sure you get the point)
So, in the onActivate call I call the minimize function (this is with the opening animation switched off). This means the windows first appear full size then shrink down. If you call minimize without the slight delay it doesn't work at all.
Question
- Is there a better way of doing this? I couldn't find a configuration option
Failing that I'll have to look into hiding the window until the minimize has finished, but that feels like a hack
thanks

As replicated in here http://plnkr.co/w44pS20LB0K1EpxPIq1i
In index.html line 58, i used k-ng-disabled="true" which does not work.
Any ideas??

categoriesData = grouped ? data[0].items : datacategoriesData = grouped && typeof data[0] === "object" ? data[0].items : dataHi.
Instead of thousand words - http://dojo.telerik.com/aQUkU
After click on button, error "Uncaught TypeError: Cannot read property 'options' of null" raises.
But it works with Kendo 2015 Q1 SP2.
var testSelector = '.k-pager-sizes select[data-role="dropdownlist"]';
var test = $(testSelector).data('kendoDropDownList');
test.options.dataSource = [
{ value: 20, text: "20" },
{ value: 50, text: "50" },
{ value: 100, text: "100" },
{ value: 9007199254740992, text: "All" }
];
test.options.dataTextField = "text";test.options.dataValueField = "value";
test.refresh();- Open this demo. http://dojo.telerik.com/Inoca/2
- Click the first bar in the graph. you get an alert().
- Try and click last bar
- Bug: you can't, the tooltip hides the bar.