Telerik Forums
Kendo UI for jQuery Forum
1 answer
630 views
I'm attempting to bind a kendo grid to a model in my MVC application
.BindTo((IEnumerable<Jolt.Web.JoltServiceReference.DealDetail>)ViewBag.Detail)
.Editable(editable => editable.Mode(GridEditMode.InLine))

when ever I run my application, I receive:
An exception of type 'System.NotSupportedException' occurred in Kendo.Mvc.dll but was not handled in user codeAdditional information: There is no DataSource Model Id property specified.

Ids this possible? can you point me to anny whitre papers or reference materails?


Daniel
Telerik team
 answered on 18 Aug 2014
3 answers
495 views
I am trying to remove the footer, according to the doc 

"Template to be used for rendering the footer. If false, the footer will not be rendered."

I have tried setting it blank as below also with the word false and false as a Boolean (error no overload), is this something missing in the MVC lib, or my sleepy brain.
@(Html.Kendo().Calendar()
            .Name("calendar")
            .HtmlAttributes(new { style = "width: 143px;" })
            .Footer("")
    )
Georgi Krustev
Telerik team
 answered on 18 Aug 2014
3 answers
166 views
Is there a way to get the relative position to it's container of a dropped element ?

thanks.
Iliana Dyankova
Telerik team
 answered on 18 Aug 2014
1 answer
524 views
data comes back from ajax call and after the extend JobViewModel has the field PatientFirstName and is populated
however txt_FirstName is never populated with the value in PatientFirstName

i do var JobViewModel = kendo.observable({     }); because I only want to work with what comes back fro the ajax call

what do I have to do to get this to work?

thanks

<div id="content_wrapper">
  ....many divs deep
              <input type="text" id="txt_FirstName"  data-bind="value: PatientFirstName" />
 
</div>

from ajax call
success: function (data) {
 var JobViewModel = kendo.observable({     });
            $.extend(JobViewModel, data);
            kendo.bind($("#content_wrapper"), JobViewModel);
}
Alexander Valchev
Telerik team
 answered on 18 Aug 2014
1 answer
478 views
How do I avoid decimal values in my value axis?
I just want to see whole numbers, not 0.5 or 1.5, etc
Hristo Germanov
Telerik team
 answered on 18 Aug 2014
1 answer
73 views
After a few test i suppose that mobile widget are incompatible with web widget. I have tested kendo.ui.ToolBar and when i run script with "New kendo.mobile.Application" toolbar widget appear in wrong mode.

Is it possible obtain radio and checkbutton styles adaptive (native-like look and feel) like in mobile.application without use mobile.application, or there are way to use this widget combined with web widget ?
Kiril Nikolov
Telerik team
 answered on 18 Aug 2014
1 answer
94 views
How to space out the Boolean row filter?

http://dojo.telerik.com/@Xavier/ihUj

Thanks.

Kiril Nikolov
Telerik team
 answered on 18 Aug 2014
1 answer
245 views
I'm trying to get some information regarding how to go about setting up a grid with the new filter row functionality so that the filter textbox has autocomplete functionality.

I was taking a look at the following example in the demo section: http://demos.telerik.com/kendo-ui/grid/filter-row , unfortunately I'm not sure how I can go about setting up the server side to get the autocomplete to work because there aren't any examples of how to go about doing it.

I decided to try a different approach and am defining a separate datasource for the filter field but am running into issues going this route too:
          field: 'Name',
        title: 'Name',
        filterable: {
            cell: {                                  
                 dataSource: new kendo.data.DataSource({
                    transport: {
                        read: {
                            url: ColumnFilterQueryUrl,
                            dataType: 'json',
                            data: {
                                columnName: 'Name',
                                tableName: 'Header',
                                queryValue: $('span[data-field="Name"]').find('input')[0].value
}
                        }
                    }
                }), 
                operator: "contains"
}
        }

Are there any complete examples of how to go about implementing autocomplete within the new filter row functionality?
Kiril Nikolov
Telerik team
 answered on 18 Aug 2014
1 answer
364 views
Help,

All entries into the TabStrip get an inline style of "overflow: scroll" on the content.  I would like to set the contents to "overflow:hidden" but since they are inline, no style I set in a class overrides this.

Thanks.
Iliana Dyankova
Telerik team
 answered on 18 Aug 2014
1 answer
174 views
Hello,

When i add a newly created ObservableObject to a kendoDatasource with the pushCreate method,
the datasource wraps the ObservableObject instance into a new ObservableObject without checking if it is already a kendo.data.ObservableObject.
Due to this problem the uid changes ofcourse which makes it very hard to find the ObservableObject afterwards.

The problem is that the DataSource._createNewModel doesn't check if the model is already an ObservableObject.

_createNewModel: function(model) {
  if (this.reader.model) {
      return new this.reader.model(model);
  }
 
  return new ObservableObject(model);
 }

I think this should be changed to:

_createNewModel: function(model) {
  if (this.reader.model) {
      return new this.reader.model(model);
  }
 
  if (model instanceof ObservableObject) {
      return model;
  }
 
  return new ObservableObject(model);
 },

Thanks in advance.

Atanas Korchev
Telerik team
 answered on 18 Aug 2014
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
MultiColumnComboBox
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?