Telerik Forums
Kendo UI for jQuery Forum
5 answers
188 views
Hi,

I am having Issue on Ipad on using the editor. 

When I write a very long line without any space or break.

example:
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm

This line will flow over the editor.

On PC (non-ipad) the editor automatically has a horizontal scroll-bar, but not on Ipad.

Does anyone ever encounter this problem. Did I missed anything in the setting.

The was I set up the editor is pretty straight forward.
$('#some-textarea').kendoEditor({ tools: ["bold", "italic"] });

Thanks in advance,
Hubert


Dimo
Telerik team
 answered on 14 May 2013
2 answers
59 views
Hello,

Here is my scenario:

I have a Mobile Application with a DropDownList and a ColumnChart which displays the selected values from the DropDownList.
When trying to register the kendoMobileSwipeEvent on the KendoChartWrapper i get sideeffects on my DropDownList, so that i'm not allowed to change the selected DropDownList item anymore. The same happens when i change the DropDownList. Then swiping doesn't work anymore.

My question is, where is the right place to register the swipe gesture, so that the user will be able to swipe on the chart to change the chart and the corresponding DropDownList?

Thanks for your help!
Regards,
Vera

Vera
Top achievements
Rank 1
 answered on 14 May 2013
1 answer
221 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
208 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
493 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
109 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
154 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
194 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
534 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
237 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
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
Drag and Drop
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
ListBox
DropDownTree
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
PivotGridV2
Licensing
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
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?