Telerik Forums
UI for ASP.NET MVC Forum
1 answer
203 views
Hi,
I have been using trail version for past 15 days. Now i have purchased it. But i want to make dynamic and configurable dashboard using chart controls. As in iGoogle, one can add widgets by selecting from list , close , maximize and configure accordingly to needs.
I need to show this to my client so that client will be ready to purchase also. Kindly can you share any dummy project or provide some source code with scripts. I have tried but could not find any success.
Georgi Krustev
Telerik team
 answered on 28 Aug 2012
3 answers
146 views
Hello,

We are in the process of converting a website from your AJAX controls to Kendo but we have hit a snag when it comes to the Editor.  The Kendo Editor lacks many of the features that the AJAX editor has - mainly filebrowsing for images & documents.  Is there a plan to have this functionality in Kendo?  If so, when can we expect this?

Thank you,
David A
Dimo
Telerik team
 answered on 27 Aug 2012
1 answer
119 views
Hi,

I use code from kendo mvc grid inline editing example.
When I save first time is ok but when I save second time first record is writen one more time into database.

I run kendo grid exapmles project to be sure that I didnt make any mistakes  when I copied code.
I noticed that same error is also on examples.

Any idea?

Tomaz
Top achievements
Rank 1
 answered on 25 Aug 2012
6 answers
660 views
Hi,

I've posted this on wrong forum, so I'm re-posting here.

A field of my Kendo UI Grid cannot be duplicated. On Telerik Extensions for ASP .NET MVC I was using Remote validation and it was ok.
Now, using KendoUI, this field is not validated on client, just on server. The problem is that, after clicking Update button, grid looks like changes were accepted, but if you see the response of ajax call, you realize that the error message is there, but it isn't displayed because it's no more on edit mode.

Something similar occurs on the example provided with Wrappers for KendoUI, Collumn Settings (http://localhost:53702/razor/web/grid/columnsettings). If I edit a row, change any field's value and click on Update, it looks like changes where accepted, but an alert is showed: "Errors: The value '1/17/2012 12:00:00 AM' is not valid for Last supply". I know I can fix it refering the right culture file, but it's not the main problem.
The problem is that it should display this error during edit mode, using Kendo Validation, to be clear for the user that this data was not updated.

How to achieve this behavior?

Tks
Daniel
Top achievements
Rank 1
 answered on 25 Aug 2012
12 answers
515 views
See attached screenshot.  Not sure when this started happening. but it is.  here is my code.

<div class="widgetContent">
        @(Html.Kendo().Grid<ContactViewModel>().Name("contact-list")
            .DataSource(dataSource => dataSource
                .Ajax()
                .Read(read => read.Action("_Index","Contact"))
            )
            .Columns(columns =>
            {
                columns.Bound(c => c.LastName).Groupable(false).Sortable(false).Template(temp =>
                {
                    return Html.ActionLink(temp.LastName ?? "org?", "Details", new { id = temp.ID });
                });
                columns.Bound(c => c.FirstName).Groupable(false).Sortable(false);
            })
            .Pageable()
            .Sortable()
        )
    </div>
CAM
Top achievements
Rank 1
 answered on 24 Aug 2012
7 answers
329 views
We are evaluating the trial version of the Kendo MVC extensions and determining if we should move forward and purchase or not.

I'm trying a simple example of a grid of phone numbers and their type (work, home, cell). We are using pop-up editing, and using an editor template for our phone view model. The problem we are experiencing is that if the user doesn't change the default value that is displayed in a Kendo DropDownList within the pop-up, the value does not get posted back to the server. If I use the exact same editor template with the Kendo Window rather than the Grid pop-up, the default value of the DropDownList will be posted back. 

Is this a bug with the Kendo Grid pop-up editor?
G_P
Top achievements
Rank 1
 answered on 24 Aug 2012
0 answers
136 views
Hi All,

Please help me on this ,

i want show some values on popup window while mouse over on grid headers.

Thanks & Regards,
Narasimha

pnara
Top achievements
Rank 1
 asked on 24 Aug 2012
11 answers
553 views
Hi,
can I try the Kendo UI MVC on the brandnew  ASP.NET MVC4 RC as well?
Means: is the Binaries\MVC3\Kendo.Mvc.dll ok for MVC4?

Cheers,
Hermann
Kushal
Top achievements
Rank 1
 answered on 24 Aug 2012
1 answer
124 views
I would like to write some client side validation for kendo objects when the save button is clicked...however I am having trouble doing so. For example I have two autocompletes that have the same data bound to them. One of them cannot be empty. And if both have a value they both cannot be the same value (name). I also have a currencytext box that cannot be empty to create the record.

All of the validation examples I have found so far deal with regular web inputs. I just figured out, thanks to this forum how to set focus to a kedno object. It was no where in documenation and intellisence did not pick up the .siblbings on the second line of code. Also Iwould of had no idea to put ("input:visible").focus();  on the second line either. Can you point me to a demo that validates ACTUAL Kendo objects on a web form? Thanks...brand new at this

 

 

var numeric = $("#AuthBudget").kendoNumericTextBox();
numeric.siblings(
"input:visible").focus();

 

Petyo
Telerik team
 answered on 24 Aug 2012
0 answers
114 views
I have an ajax form in a window widget and on this form I have 4 Kendo AutoComplete widgets configured using the AutoCompletFor() method.  The widgets are working correctly as far as suggesting and filtering against an MVC action, etc.  I placed a button on my  form to allow the user to quickly clear all of the values from the form:

Here is the button code:
<input onClick="resetOptionsQuery();" type=button value="Reset Query" />

Here is the code for one of the AutoComplete Widgets:
@(Html.Kendo().AutoComplete()
          .Name("OptionQueryApplication")
          .Placeholder("Select a default application...")
          .DataTextField("Value")
          .Filter("contains")
          .HtmlAttributes(new { style = "width:250px" })
          .DataSource(source =>
              {
                 source.Read(read =>
              {
                  read.Action("GetFilteredApplicationNameList", "ErrorLog")
                          .Data("onGetDefaultApplication");
              }).ServerFiltering(true);
 }))


Here is the javascript function in my javascript file to set the value to null:
function resetOptionsQuery() {
 
    $("#OptionQueryApplication").data("kendoAutoComplete").value(null);
    $("#OptionQueryMachine").data("kendoAutoComplete").value(null);
    $("#OptionQueryEnvironment").data("kendoAutoComplete").value(null);
    $("#OptionQueryUser").data("kendoAutoComplete").value(null);
        
}

The interesting thing is that when I first open the Window widget and display the form, the user can type into the autocomplete and then click the reset button and it clears the values and the placeholder value returns.  If, however, they submit the form using a "save" method, and then click the "Reset" button, nothing happens.  The function is called (I placed alerts inside).  If I set the value to something other than null for instance (#field).data("KendoAutoComplete").value("some value"), the value changes, but not if I set it to null, or empty string.

Any help would be appreciated.  Is this a bug or am I doing something incorrect?
Jim.Mills
Top achievements
Rank 1
 asked on 23 Aug 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
MultiColumnComboBox
Dialog
DropDownTree
Checkbox
Slider
Switch
Notification
Accessibility
ListView (Mobile)
Pager
ColorPicker
DateRangePicker
Security
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
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?