I load the content of a Kendo Window with a call to a Controller Action that returns a partial view. This action accepts one parameter (levelid). I'd like to supply this parameter with javascript similar to the below but this is causing me an error. Is it possible to do this?
@(Html.Kendo().Window().Name("AssetLocator")
.Title("Asset Locator")
.Visible(false)
.Modal(true)
.Draggable(true)
.Width(350)
.LoadContentFrom("_LaunchAssetLocator", "Form707B", new { levelid = getsite(); })
)