Telerik Forums
Kendo UI for jQuery Forum
2 answers
156 views
Hi!

I have a question related to Kendo UI Core: I recognized that the Kendo UI Core download does not include Typescript definitions. They are only included in the Kendo UI Pro download. Is it ok to use the Typescript definitions for Kendo UI Core, too, or are they only part of the Pro version and therefore liable for costs?

Regards,
Karin
Karin
Top achievements
Rank 2
 answered on 02 Jun 2014
3 answers
204 views
Hi,
Please, check my code here:
http://jsbin.com/lukera/3/edit?html

The problem happens while I’m using list view in view details2. When I click on position in this list, I go to view details, but after returning to the same page (view details2) instead of correct data I see:
× data from other pages or
× Uncaught TypeError: undefined has no properties at file:///android_asset/www/index.html#details2?id=9:2

Can anyone help me?
Kiril Nikolov
Telerik team
 answered on 02 Jun 2014
1 answer
321 views
Hi All,

I want to build svg paths with kendo templates binding with MVVM view model. See this http://jsfiddle.net/qqzmZ/9/. I am also attaching following images which are rendered in chrome and firefox.

Known Issue:
In firefox, when we inspect svg element and edit that svg tag element
(right click and select "Edit Svg") then the svg is rendering.

But in IE 10, no path tags are found in svg tag.

Could you please give me the solution?
T. Tsonev
Telerik team
 answered on 02 Jun 2014
3 answers
192 views
Hi

I just stumbled upon a problem I don't know how to solve: I have a kendo Scheduler with a DataSource, that uses a field-model with relation definitions (f.ex. foo: {from: "Name"}). This works like expected, if the data is delivered by ajax or hard coded when executing the script. But when i set new data (can even be the same as before) with DataSource.data(myData), the relation Model seems not to be used anymore. This is also the case on other widgets. f.ex. I tried this with ListView and a template as well, where the template finds the entry "foo" which was defined as a relation when I create the DataSource, but is missing it, when I set the new data. I double checked the relation definition and could not find an error.

Someone has an idea? Or is this a bug?
Lala
Top achievements
Rank 1
 answered on 02 Jun 2014
2 answers
271 views
I am only using the month view for the scheduler and the requirements are such that there will only be 1 event per day.

Is it possible that if a user clicks on a day that already has an event, scheduler either does not do anything or opens up the existing event for that day.

Thanking you,

Chandra
Chandrasekhar
Top achievements
Rank 2
 answered on 01 Jun 2014
6 answers
586 views
I want to create a sticky notes-type widget where a user can drag a div around the screen. I thought kendoDraggable could do that. But when I release the div, it just snaps back to where it was. Can I prevent that functionality where the element stays where I dragged it?
Daniel
Telerik team
 answered on 31 May 2014
1 answer
172 views
Hi, I have a grid with a detail template that has a checkbox with a databinding and whenever I mark it as checked, the detail template collapses.
Here's an example of the behavior: http://jsfiddle.net/5MU4r/46/

How can I prevent this behavior?
Thanks in advance.
Daniel
Telerik team
 answered on 31 May 2014
1 answer
667 views

Hello, 

I use kendo grid on batch editing mode, and I have a problem with the required validator.

The problem is that when user adds a new row without filling the required cell, he
can't select a different cell, as expected, but, he does can press on one of
the paging navigation button or on delete button in different row.

In case of pressing on page navigation button, the next grid page will be displayed,
and the new row that the user created will stay exists, although the required
field is not filled.

If I use the grid in inline editing mode, In case of pressing on "edit"
button of different row, while the focus is stuck in the new, not filled, row-
the new row will be removed.

My question is, how can I copy the second scenario behavior to the first, namely, how can I remove new
row that is not valid when the user navigates to another page?

 
For reproducing the scenarios described above, you can open this demo:
http://demos.telerik.com/kendo-ui/grid/editing-inline
and do as follow:

First scenario:

    1.  Press on "add new record" button.

    2.  Press on the page navigation button for viewing another page.

    3.  Return to the first page.

    4.  The first row exists with an empty value in the first cell (although this field is required)!

Second scenario:

    1.  Press on "add new record" button.

    2.  Press on "edit" button in the next row.

    3.  The new row is disappeared.



Thank you very much!



    











Georgi Krustev
Telerik team
 answered on 31 May 2014
1 answer
159 views
Only I can make such combinations, but here it is.
I have a Google Map JavaScript inside one of the ScrollView's pages. The problems is with swiping, dragging as you might guess.
With the Scrollview inside ScrollView  scenario had no problems regarding touch (even though it's not officially supported as I've been told).
But in this case it seems I'm out of luck. When I drag the Google map, the ScrollView drags also. And the View in which the ScrollView resides also scrolls....
I started with this piece of code
google.maps.event.addListener(map, 'dragstart', function() { setDragFlag(true); }); 
But stuck on binding  touchstart to the kendoMobileScrollView
$("#svMD").getKendoMobileScrollView().pane.userEvents.bind("touchstart", SomeFunctionWhichWritesToTheConsole)
Don't know why but touchstart event doesn't want to fire at all

Kiril Nikolov
Telerik team
 answered on 31 May 2014
3 answers
491 views
I am having an issue with passing additional parameters over a read function.

@(Html.Kendo().Grid<Wue.Web.Employee.Model.Models.DocumentLine>()
        .Name("documentLinesGrid" + @Model.Document.DocumentNumber + "lines")
        .Columns(col => {
                col.Bound(c => c.VendorPartNumber).Title("Vendor Part Num");
                col.Bound(c => c.Quantity);
                col.Bound(c => c.Price);
            }
        )
        .Scrollable()
        .DataSource(ds => ds
            .Ajax()
            .Read(readLineData => readLineData.Action("GetLineData", "Document", new { currentDoc = Model.Document }))
        )
        .ColumnMenu()
    )


On the Controller I have this as my action method:

public ActionResult GetLineData([DataSourceRequest] DataSourceRequest request, Document currentDoc) { }

The issue is that the data that is being sent is always null. I have tried to change the type to a string and passing currentDoc = "123" and having the action method accept a string currentDoc and that seems to work. Why will an object not pass through?

Note: I have also attempted to use js to send the information by using the .Data(functionName) and then in js using return { Html.Raw(Json.Encode(Model.Document)) but that returns null as well. Please help as I cannot get this to work.

Eric
Top achievements
Rank 1
 answered on 30 May 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
Drag and Drop
Application
Map
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
DropDownTree
ListBox
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
Licensing
PivotGridV2
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
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
SmartPasteButton
PromptBox
SegmentedControl
LLM Kit
+? more
Top users last month
Simon
Top achievements
Rank 2
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
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?