Telerik Forums
UI for ASP.NET MVC Forum
0 answers
134 views
I am using the popup editor for the grid and i need to populate latitude and longitude values from a map using jQuery. When i try to use the kendo.bind() function, the values get populated into the textboxes, but they do not post back to the controller. Any ideas why?
Oren
Top achievements
Rank 1
 asked on 30 Aug 2012
1 answer
205 views
When configuring a Treeview with the MVC extensions I don't see an option to specify the id or hasChildren fields.

I have to make sure my returned Json has exactly "id" and "hasChildren" for it to work.

Am I missing something?

Alex Gyoshev
Telerik team
 answered on 30 Aug 2012
5 answers
1.2K+ views
Here is my problem, I have a Razor page with a <table>Kendo.Grid</table> tag the page will duplicate my database headers (the first set headers has no data the second set has data) however my page 2 on the grid will pull correct record 11-19 and display them for page 2 so the paging works.  If I remove the <table></table> tag my headers are no longer duplicated however my 2 page does not pull any records and the page number just shows a 0.... has anyone seen this before?
with <table></table>
Header1    Header2    Header3

Header1    Header2    Header3
data            data            data
data            data            data

without <table></table>
Page one
Header1    Header2    Header3
data            data            data
data            data            data        1-10 records

Page2
Header1    Header2    Header3

  • 0 <----page number
no items to display  <---- record text
Rosen
Telerik team
 answered on 30 Aug 2012
3 answers
852 views
Although i set the culture to germany [ kendo.culture("de-DE") ] the format of the datetime is not correct, it is still default "en-US".
I have to set additionally the format like this

[Javascript]
jQuery(function(){jQuery("\#start").kendoDateTimePicker({format:kendo.culture().calendar.patterns.g,min:new Date(1899,11,31,0,0,0,0),max:new Date(2100,0,1,0,0,0,0),interval:30});});

or this

[Razor]
@(Html.Kendo().DateTimePicker()
            .Name("start")
            .Format("dd.MM.yyyy HH:mm")
            .Value(DateTime.Now)
             
    )


The format/values of date and time in both dropdowns of the datetimepicker are correct, only the format in the input field is wrong.


But the format of time-values in the dropdownlist of a normal timepicker is not correct too,  it is not like the format of the current culture, it is still default "en-US" but without "AM" & "PM".

List of format failure:
Culture set to "de-DE"

DateTimePicker:
 format of values (date&time) in the inputfield: wrong
 format of date in dropdown: correct
 format of time in dropdown: correct

TimePicker:
 format of values in the inputfield: wrong
 format of time in dropdown: wrong

DatePicker:
 format of values in the inputfield: wrong
 format of date in dropdown: correct

Serkan
Top achievements
Rank 1
 answered on 30 Aug 2012
3 answers
1.9K+ views
Is it possible to reload the grid through jQuery?
In Telerik Grid this could be done by firing the $("#grid").data("tGrid").AjaxRequest(), and all filters and sortings would stay as they were, but the records would be refreshed.
This would help my out tremendously, thanks!
Cristian
Top achievements
Rank 1
 answered on 29 Aug 2012
0 answers
158 views
Hi,

I have 2 dropdowns. A drop-down list and society people who work for the company selected. Change of the company, I want a filter for people who work for this company.
@(Html.Kendo().Grid((IEnumerable<EntrepriseViewModel>)ViewBag.Data)
    .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(p => p.Id).Visible(false);
        columns.ForeignKey(p => p.IdCompany, (System.Collections.IEnumerable)ViewBag.CompanyList, "IdCompany", "CompanyName").HtmlAttributes(new { id = "CompanyDdl" });
        columns.ForeignKey(p => p.IdEmploye, (System.Collections.IEnumerable)ViewBag.EmployeList, "IdEmploye", "EmployeName").HtmlAttributes(new { id = "EmployeDdl" });
        columns.Command(command => command.Edit()).Width(200);
    })
    .DataSource(dataSource => dataSource
        .Ajax()
        .Model(model => model.Id(p => p.id))
                        .Read(read => read.Action("Company_JSON_Read", "Home", new { id = Model.id }))
                        .Update(update => update.Action("Company_JSON_Update", "Home"))
  
    )
    .Editable(editable => editable.Mode(GridEditMode.InLine))
    )


IdEmployeList must change after IdCompany change but how ?

Thanks
pat
Top achievements
Rank 1
 asked on 29 Aug 2012
1 answer
191 views
I am evaluating several UI solutions (Kendo UI, Dhtmlx, ExtJs, jqGrid, etc.) so I created an example page to compare the performance of each solution.  The page contains tabs, form fields and three grids.  

Here's the example page using Kendo UI.

I've found Kendo UI to be very fast except for the grids.  On my beefy dev machine, this page renders in about 1.3 seconds.  On a low end machine (Win XP, IE 8, 1.86 GHz, 1 GB RAM), this page can take 5-8 seconds.  All of the other solutions are much faster than this. I was quite surprised by my findings especially since you tout the performance of these controls.

Here is my grid configuration:
@(Html.Kendo().Grid(Website.Prototype.Helpers.GetGridData(20))
                            .Name("Grid1")
                            .Columns(columns =>
                            {
                                columns.AutoGenerate(true);
                            })
                            .Sortable()
                            .Scrollable()
                            .Filterable()   
                            .DataSource(dataSource => dataSource       
                                .Ajax()
                                .ServerOperation(false)       
                             )
                        )

I have a few questions:
  1. Am I doing something wrong that would cause the performance issues?
  2. I thought using the MVC wrapper would give Kendo UI a leg up on the competition because the html needed to render the grid is generated on the server.  However, it seems that it is being regenerated on the client.  Is that correct?
  3. The grids are empty in Chrome and Firefox.  It is populated in IE.  Why is that?
  
Burke
Top achievements
Rank 1
 answered on 29 Aug 2012
0 answers
129 views
Please disregard...
Mike
Top achievements
Rank 1
 asked on 29 Aug 2012
2 answers
1.1K+ views
Hi,

I'm new to Kendo controls. We are replacing the existing MVC controls with Kendo Controls. 

The existing MVC controls looks like below
 @Html.DropDownListFor(model => model.value, new SelectList(ViewBag.list, "id", "label"))

I can able to load the data but not able to set the value like above. Please suggest to set the value. Below is my Kendo control. It has the Value property but doesn't allow model values in it.

    @(Html.Kendo().ComboBox()
                            .Name("ComboBox")
                            .DataTextField("label")
                            .DataValueField("id")
                            .BindTo(@ViewBag.list
    )
Marius
Top achievements
Rank 1
 answered on 29 Aug 2012
0 answers
334 views
Hi

I have a grid and a 5 kendoComboBox combobox on a form
When the user selects an item from the grid, I am setting the value of  kendo Combobox based on the values that were in the grid row.

i tried

// selects item if its text is equal to "test" using predicate function
combobox.select(function(dataItem) {
    return dataItem.text === "test";
});
with no result
here is my code
        var urlcountry = '@Url.Action("GetGeoGroupCountry", "GeoGroupPostalCode")';
        $.ajax({
            url: urlcountry,

            success: function (result) {
                debugger;

                var countryCombo = $("#GeoGroupCountryId").data("kendoComboBox");
                countryCombo.dataSource.add(result);

                countryCombo.select(function (dataItem) {
                    //dataItem argument is a ComboBox data item.
                    return dataItem.Text === e.sender.dataSource._data[0].GeoGroupCountryName;
                });
// e.sender.dataSource._data[0].GeoGroupCountryName) is 'United States of America'

The same no result

//                $.each(countryCombo.dataSource._data, function (key, value) {
//                    if (value.Text == e.sender.dataSource._data[0].GeoGroupCountryName) {
//                        countryCombo.select(key);
//                       return;
//                    }
//                });

            },
Thanks
Marius
Top achievements
Rank 1
 asked on 29 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
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
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?