Telerik Forums
UI for ASP.NET MVC Forum
2 answers
186 views
Hi everybody, 

I am working on a grid which contains a lot of data (like 100 000 rows). I was wondering how I could refresh it in case of some data would be changed in the dataSource without reload the entire grid.

Is it possible? I have been searching for the answer in the documentation and other posts but have not found anything!

I really need to figure it out asap!! 
any answer would be much appreciated
Thank you very much
martin
Top achievements
Rank 1
 answered on 28 Nov 2012
4 answers
475 views
I have downloaded Kendo UI and viewed the tutorials and I have found the documentation but it's not easy to figure out. To be honest, the documentation is like Microsoft's - that is to say if you want to know whether to write a colon or a semicolon, it's brilliant. But nowhere does it even begin to explain how to start with Kendo. Has anyone written a book from the perspective of someone new to Kendo who wants to write a project using, say ASP.NET MVC4? And if so, can anyone recommend a good book.
Sebastian
Telerik team
 answered on 28 Nov 2012
5 answers
654 views
Hi,
A bit similair to this other thread we wonder how to set the value attribute when appeding new nodes. Right now we do this:
treeview.append({
text: "New text",
value: "Value",
url: "/dummyUrl"
});

The node is added, with the correct text. The link is added, but value is not. (Also the attribute k-link is not added even when it is a link). Similair to the other poster it would also be nice to know if there is another way than manually via jQuery to get the value.

Thank!
/Victor
Petur Subev
Telerik team
 answered on 28 Nov 2012
0 answers
203 views
Hello,
I'm trying to animate the kendo window, however nothing is happening. The window opens without any animation. Am I missing something in the code?

@(Html.Kendo().Window()
.Name("createProjectDialog")
.Animation(c => c.Open(builder => builder.Zoom(ZoomDirection.In).Duration(AnimationDuration.Slow))
                .Close(builder => builder.Zoom(ZoomDirection.Out).Duration(AnimationDuration.Slow)
           ).Enable(true))
.Title("Create New Project")
.LoadContentFrom("Create""Projects")
.Modal(true)
.Draggable(true)
.Width(650)
.Visible(false))
Heres the script for opening the dialog:

 $("#newProjectbtn").bind("click"function () {
 	$("#createProjectDialog").data().kendoWindow.open();
 });

In the DOM i can see that the window was successfully initialized and the windows options has the enable animation section:
  1. optionsObject
    1. actionsArray[1]
    2. animationObject
      1. closeObject
        1. duration600
        2. effects"zoom:out"
        3. hidetrue
        4. __proto__Object
      2. openObject
        1. duration600
        2. effects"zoom:in"
        3. showtrue

Am I missing something here?
daniel danie
Top achievements
Rank 1
 asked on 28 Nov 2012
2 answers
93 views
Hello Team;
As I was doing some checking, I see in VS under Telerik menu there is an option to convert/incorporate Kendo into an Existing ASP MVC project. As of the current version, it seems like this option takes care of all the manual steps mentioned in the docs.
However, when I was checking the doc http://docs.kendoui.com/getting-started/using-kendo-with/aspnet-mvc/introduction in the section of "Using Kendo UI in ASP.NET MVC 4 application" It seems like the doc's steps don't match with what the conversion has done.

My question is, is doc older than the conversion and needs to be updaed?
Or is the "Convert" program incomplete and we need to add additional steps to the converted steps?

I'd appreciate if you can investigate this and let us know.
Thank you in advance!
Ben Hayat
Top achievements
Rank 2
 answered on 27 Nov 2012
2 answers
158 views
I installed the Kendo UI for ASP.NET MVC Q2 2012 SP1 on my Windows 7 machine with VS 2010. I am unable to use it.

1) I have VisualSVN installed in my VS. When I try to open any project in VS I am getting a "Broken pipe" error from  VisualSVN that it also installed in my Visual Studio. I had to uninstall the Kendo UI VSExtension to get my projects to open.

2) When I try to run the demos, I am getting this error:
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 

Parser Error Message: Could not load file or assembly 'System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

Source Error: 

Line 21:       <assemblies>
Line 22:         <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
Line 23:         <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
Line 24:         <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
Line 25:         <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

Source File: C:\Program Files\Telerik\Kendo UI for ASP.NET MVC Q2 2012 SP1\wrappers\aspnetmvc\Examples\web.config    Line: 23 

Assembly Load Trace: The following information can be helpful to determine why the assembly 'System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' could not be loaded.

sampath
Top achievements
Rank 1
 answered on 27 Nov 2012
1 answer
105 views
Has the functionality about which you wrote in the following post been implemented in the newest version?

http://www.kendoui.com/forums/dataviz/chart/chart-animation-speed.aspx#2124628

T. Tsonev
Telerik team
 answered on 27 Nov 2012
6 answers
1.0K+ views
How exactly do I get to the Demo pages for the Kendo MVC wrappers?

When I follow this path -> telerik.com -> Developer Tools for .NET-> ASP.Net MVC -> See Demos, I am taken the to this page:

http://demos.kendoui.com/web/overview/index.html

where I don't see any examples of using the Kendo MVC wrappers (it's just base Kendo).

I guess the same question applies to the documentation.  I see there is a section for the MVC wrappers in API, but is there something similar to the Kendo Getting Started section for the Kendo MVC controls?
KordaMentha
Top achievements
Rank 1
 answered on 27 Nov 2012
0 answers
138 views
Hi

I've upgraded to the latest version and suddenly my grids aren't working well. I cannot sort, nor use the pager when binding to remote data. I've also noticed that there is no mvc example in the remote data example of the grid.

The pager is showing a zero page count.

I am returning data in json form like so:

return Json(new DataSourceResult
            {
                Data = users,
                Total = Convert.ToInt32(count)
            }, JsonRequestBehavior.AllowGet);
This used to work well before the update.
Matthew
Top achievements
Rank 1
 asked on 26 Nov 2012
0 answers
146 views

Hi,

There is one field in table which is float and i have to insert only the float value in that but on submit i used the function for inserting the data into table and i want this numeric validation is happened on client side using jquery

Can anyone suggest me the clue??

Thanks!!!!

Servicii
Top achievements
Rank 1
 asked on 26 Nov 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Scheduler
DropDownList
Chart
Editor
TreeView
DatePicker
ComboBox
Upload
MultiSelect
ListView
Window
TabStrip
Menu
Installer and VS Extensions
Spreadsheet
AutoComplete
TreeList
Gantt
PanelBar
NumericTextBox
Filter
ToolTip
Map
Diagram
Button
PivotGrid
Form
ListBox
Splitter
Application
FileManager
Sortable
Calendar
View
MaskedTextBox
PDFViewer
TextBox
Toolbar
Dialog
MultiColumnComboBox
DropDownTree
Checkbox
Slider
Switch
Notification
Accessibility
ListView (Mobile)
Pager
Security
ColorPicker
DateRangePicker
Wizard
Styling
Chat
DateInput
MediaPlayer
TileLayout
Drawer
SplitView
Template
Barcode
ButtonGroup (Mobile)
Drawer (Mobile)
ImageEditor
RadioGroup
Sparkline
Stepper
TabStrip (Mobile)
GridLayout
Badge
LinearGauge
ModalView
ResponsivePanel
TextArea
Breadcrumb
ExpansionPanel
Licensing
Rating
ScrollView
ButtonGroup
CheckBoxGroup
NavBar
ProgressBar
QRCode
RadioButton
Scroller
Timeline
TreeMap
TaskBoard
OrgChart
Captcha
ActionSheet
Signature
DateTimePicker
AppBar
BottomNavigation
Card
FloatingActionButton
Localization
MultiViewCalendar
PopOver (Mobile)
Ripple
ScrollView (Mobile)
Switch (Mobile)
PivotGridV2
FlatColorPicker
ColorPalette
DropDownButton
AIPrompt
PropertyGrid
ActionSheet (Mobile)
BulletGraph
Button (Mobile)
Collapsible
Loader
CircularGauge
SkeletonContainer
Popover
HeatMap
Avatar
ColorGradient
CircularProgressBar
SplitButton
StackLayout
TimeDurationPicker
Chip
ChipList
DockManager
ToggleButton
Sankey
OTPInput
ChartWizard
SpeechToTextButton
InlineAIPrompt
TimePicker
StockChart
RadialGauge
ContextMenu
ArcGauge
AICodingAssistant
SmartPasteButton
PromptBox
SegmentedControl
LLM Kit
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?