Telerik Forums
Kendo UI for jQuery Forum
1 answer
199 views
I'm using the Kendo UI Web v2012.3.1114 javascript library. I have multiple instances of the Kendo Editor on my page in table rows that can be reordered on the page. My issue is that if I move one of the rows, the Kendo Editor appears to clear it's value and then stops responding to clicks or key presses.

My guess was that the events were unbound when the editor was moved withing the DOM. Looking through the documentation, I found the .refresh() method (http://docs.kendoui.com/api/web/editor#methods-refresh) which seems to be just what I'm looking for. However, when I try to use this method, I get the error "editor.refresh is not a function." I know I'm accessing the editor properly because the .paste() and .value() functions work fine.

Was the .refresh() function implemented in a later version?
Dimiter Madjarov
Telerik team
 answered on 14 May 2013
4 answers
186 views
hi i am new to kendo Ui i am having trouble in viewing the data in list view although the data is coming to the page ( i have checked it by viewing the source code of the page). Please Help me.
here is View code

@{
    ViewBag.Title = "ListView";
}

        <link href="../../Content/Kendo/kendo.common.min.css" rel="stylesheet" type="text/css" />
        <link href="../../Content/Kendo/kendo.black.min.css" rel="stylesheet" type="text/css" />
        <script src="../../Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
        <script src="../../Scripts/Kendo/kendo.all.min.js" type="text/javascript"></script>
        <script src="../../Scripts/Kendo/kendo.aspnetmvc.min.js" type="text/javascript"></script>

<h2>ListView</h2>

@(Html.Kendo().ListView(ViewBag.myList).Name("myLV").ClientTemplateId("template").TagName("div").Pageable()
        .HtmlAttributes(new { style = "width:400px;Height:400px;background-color:white;" })
 )


and this is my Controller

 public ActionResult ListView()
        {
            List<KendoModel> myList = new List<KendoModel>();
            for (int i = 1; i <= 100; i++)
                myList.Add(new KendoModel { ProductId = "PID" + i, ProductName = "name" + i, BrandName = "Brand" + i, Price = "Brand" + i });

            ViewBag.myList = myList;
            return View(myList);
        }

and i am attaching a file that shows the output of the code -
Akshay
Top achievements
Rank 1
 answered on 14 May 2013
5 answers
473 views
I have a view with multi a tags with a data-role set to "button".  When scrolling through the view, if i first press on a button and try to scroll the page will scroll but then redirect to the next, which I don't want to happen.  How do i make it so that the button redirects only when the button is tapped and won't redirect if I scroll though the view.

Thanks.
Petyo
Telerik team
 answered on 14 May 2013
1 answer
92 views
Hi,

Setting the fontsize larger than 12px on body makes the widgets sprite icon look funny.
Should I make a new set of sprite icons or is there another way to handle font size > 12px?
please see http://jsfiddle.net/khsd/wjUt9/2/  

EDIT: same question as http://www.kendoui.com/forums/ui/general-discussions/widget-display-with-changed-font-size.aspx

Best Regards
Karsten, Denmark
Kamen Bundev
Telerik team
 answered on 14 May 2013
1 answer
134 views
I have been able to successfully use validator.validate() in my pages until now where I am loading content dynamically from a partial view. 

$("#mydiv").append( $.get ... partial view );

Here are the facts of what is happening. 
  1. I load partial page with a form  and validation rules dynamically. 
  2. When the form submits the validation code is executed and the form is prevented from posting to the server when it is invalid.. 
  3. When I run the validate() function it doesn't return false like it should (ex. myvalidationform.validate()  // returns and object instead of the expected false result when the data is invalid in the form. 
Please someone uncover this mystery for me. 


Rosen
Telerik team
 answered on 14 May 2013
2 answers
175 views
For all Orchard funs, there is a common location for kendo UI framework and related script libraries module to use with Orchard CMS here. 

The module includes the latest opensource version of KendoUI Web scripts and themes. If you own the commercial version, just replace the scripts and styles folders with your version of files.

I will soon post some examples of how to use kendo with Orchard.
Michael
Top achievements
Rank 1
 answered on 13 May 2013
4 answers
501 views
Hello,
I'm having an issue where my dropdown list width does not seem to be working out very well.

If I have a DropDownList with a smaller entry and a larger entry, I end up getting something like this:
http://imgur.com/biDRhSh (this contains two entrys.   'IS' and 'is any of'

I confirmed with a jsfiddle that I see this as well: http://jsfiddle.net/LSaZ7/

What I would like to do is have the dropdown list itself be able to expand wider than the actual dropdown. Any ideas on how I could get this to work?
Iliana Dyankova
Telerik team
 answered on 13 May 2013
3 answers
204 views
We are experiencing an issue when clicking on a Kendo Combo box in a Kenodo Grid when "navigatable" is enabled on the grid.

The problem occurs more often when using an IE 7-10 browser, but it also occurs when using Chrome,  Firefox.

The following fiddle will demonstrate the problem. Just click between the products categories to reproduce the issue.

JSFiddle

Additional note: We have added mouse event tracking in our code and found that the mouse down/up events were firing several time each when clicking.
Vladimir Iliev
Telerik team
 answered on 13 May 2013
4 answers
179 views
Hey,
I'm hoping to find some help on this issue. I have a requirement to enable drag and drop from a kendo ui treeview to a templated listview.
I've tried the following:
  1. Enabling dragAndDrop on the treeview and configuring the listview as a kendoDropTarget......
  2. Disabling dragAndDrop on the treeview and instead configuring that control as kendoDraggable   to  the listview configured as a kendoDropTarget

I'm not having much luck with it. Please take a look at my fiddle. Any suggestions would be greatly appreciated http://jsfiddle.net/JQBZN/1/


Nicole
Top achievements
Rank 1
 answered on 13 May 2013
1 answer
82 views
I'm using kendo ui stockchart component using its data attributes as below:
<div
id="symbolChart"
data-role="stockchart"
data-series="[{ type: 'candlestick', openField: 'open', highField: 'high', lowField: 'low', closeField: 'close' }]"
data-category-axis="{ type: 'Date', baseUnit: 'days', field: 'time', labels: { rotation: 0, dateFormats: { days: 'MMM/dd'} } }"
data-date="{ field: 'time' }"
data-navigator="{ series: { type: 'area', field: 'high' }, select: { from: '2013/04/27', to: '2013/05/02' } }"
data-bind="source: dataSource">
And here is the json data I'm binding to my chart:
[{"id":0,"symbol":"EURUSD","time":"2013-04-25T00:00:00","open":1.2905,"close":1.3693,"low":6.1983,"high":1.2002,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-04-26T00:00:00","open":1.2905,"close":1.3693,"low":6.1983,"high":1.2002,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-04-27T00:00:00","open":1.2905,"close":1.3693,"low":6.1983,"high":1.2002,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-04-28T00:00:00","open":1.2905,"close":1.3693,"low":6.1983,"high":1.2002,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-04-29T00:00:00","open":1.1505,"close":2.2093,"low":3.1983,"high":1.1902,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-04-30T00:00:00","open":1.1005,"close":1.2093,"low":1.3983,"high":1.4002,"direction":null,"digits":0,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-05-01T00:00:00","open":1.2015,"close":3.2093,"low":1.2983,"high":1.1102,"direction":null,"digits":0,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-05-02T00:00:00","open":1.2005,"close":1.7893,"low":1.1983,"high":1.3502,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-05-03T00:00:00","open":1.2005,"close":1.7893,"low":1.1983,"high":1.3502,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null},{"id":0,"symbol":"EURUSD","time":"2013-05-04T00:00:00","open":1.2005,"close":1.7893,"low":1.1983,"high":1.3502,"direction":null,"digits":1,"spread":null,"modify_time":null,"mt4_server_id":null}]
But the navigator part of the chart is not rendering as expected. Am I doing a wrong configuration for the data-navigator attribute? Here is the screen shot of the result chart: http://i.stack.imgur.com/tbdZ0.jpg
Iliana Dyankova
Telerik team
 answered on 13 May 2013
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
Dialog
Chat
DateRangePicker
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
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?