Telerik Forums
Kendo UI for jQuery Forum
4 answers
405 views
The title is slightly misleading now that I've determined the cause of the issue (caused by lack of preventDefault, not a kendoUI focus feature). I can't edit it though.

I've created a fiddle to display the issue I am facing. Visit http://jsfiddle.net/LT9db/embedded/result/ and reproduce by clicking "My Web Site" followed by pressing the right arrow key 5 times.  My view from chrome: http://i.imgur.com/0rduP.png

Due to the length of the tree and the rendering of the splitter it's very hard to tell what is going on. You need to scroll all the way to the bottom in order to see the horizontal scrollbar of the treeview that has been placed inside the left frame. There are a couple of solutions I've come up with so far

  1. Wrap the text, as with my-vacation-photo etc (white-space: pre-line, unfortunately IE8+ and I support 7+). Would be nice if this was default styling?
  2. Resize the panel's width on expand
  3. preventDefault when right arrow key is pressed
This behavior is because preventDefault/return false is not called once "my-vacation-photo..." is the node actively highlighted and the right arrow key is pressed. I'm not entirely sure how to handle this situation yet other than modify the kendoui source or attach my own handler for keypress. 

I'd rather things be cut off on the right than on the left. Thoughts and other solutions are appreciated
Ryan
Top achievements
Rank 1
 answered on 22 Jan 2013
1 answer
118 views
Hi,
1.png is my graph, when I move or scroll the mouse the navigator is not responding.

2.png is if I adjust the navigator with the mouse the message from date and to date is not disappearing even I did not play with the graph.

Could you tell me what causing the issues.

I used the navigator in another page, it is working fine there without problems
Iliana Dyankova
Telerik team
 answered on 22 Jan 2013
11 answers
364 views
Can I use Kendo UI Mobile(Scroller / Pull to refresh) with Kendo UI Web?
Kamen Bundev
Telerik team
 answered on 22 Jan 2013
1 answer
214 views

Kendo UI V. 2012.2.924

So I'm trying to do something pretty messed up with my kendo tree view. The situation is this: I have a kendo tree view with on demand loading. I also implemented special placeholder nodes that can be clicked to append additional nodes to each level (as a way of batching).

The feature I need to implement is a search. The user can enter a node name and the tree will expand to that node and select it. I have all the logic on the server figured out. The only problem is that with ondemand loading, every time I append a node to a parent, there is a server call to get the contents of that parent. I want to disable this automatic call until my manual appends have been completed. Anyone know if this can be done? I have tried from the server, but if I just return null it has an error. If I return an empty list, it wipes out the existing appended nodes.

Any help would be appreciated.

Vladimir Iliev
Telerik team
 answered on 22 Jan 2013
1 answer
244 views
I have a staff page with a button "Add to groups"

When add to groups is clicked, a kendo window is opened. I can get all my checkboxes to display fine in this window, I just need to save the results back into the model or something similar, to get access to them in my controller so that I can save to database.

Any way to do this using kendo methods?

Code for the popup window below 

@(Html.Kendo().PanelBar()
        .Name("panelbar")
        .ExpandMode(PanelBarExpandMode.Single)
        .HtmlAttributes(new { style = "width:300px" })
        .Items(panelbar =>
        {
            panelbar.Add().Text("Search")
                .Expanded(true)
                .Content(@<div style="padding: 10px;">
                    <div>
                        <input class="k-autocomplete" type="text" name="search">
                    </div>
                    </div>);
            
            
            panelbar.Add().Text("Name")
                .Expanded(true)
                .Content(@<div style="padding: 10px;">
                    @foreach (var Name in Model.groups) {
                        <div class="filterBox">
                            <input type="checkbox"  name="@Name.Name" > @Name.Name
                        </div>
                    }
                    </div>);
       
       
            

                
                
                
                
                
               
        })
       )
Dimiter Madjarov
Telerik team
 answered on 22 Jan 2013
3 answers
122 views
I have a simple enough setup going where one of the buttons should prompt an actionsheet. However, when I press the tabstrip button it opens the actionsheet and closes instantly.

Here's the code set up (really, nothing complicated):
        <!--Actionsheet-->
        <ul id="SETTINGSAS" data-role="actionsheet">
            <li><a href="Pages/profile.html">Profile</a></li>
        </ul>

<div data-role="footer">
<div data-role="tabstrip">
                <a data-rel="actionsheet" href="#SETTINGSAS" data-icon="home">Settings</a>
</div>
</div>

Has anyone else come across this issue as well?
Iliana Dyankova
Telerik team
 answered on 22 Jan 2013
3 answers
113 views
In the latest SP release (maybe it was prev verions too) my calendar footer has todays date, not the date i'm binding to the calendar.

This is all I'm defining
<span data-role="calendar" data-bind="value: selectedBlock.Start" disabled="disabled"></span>
                                <span data-role="calendar" data-bind="value: selectedBlock.End" disabled="disabled"></span>
The selected date changes....footer doesn't though
Petur Subev
Telerik team
 answered on 22 Jan 2013
3 answers
66 views
I am working with lots of dates and datetimes and times sent back from the database server  and it would be very helpful to have a powerful date math library in the web client comparable to what we have in T-SQL on the server (DateDiff, DateAdd, DatePart, etc etc).
Such a library would eliminate a lot of string-parsing for the developer. The DateTimePicker already has a lot of relevant date, date-formatting, and globalization intelligence built-in. Add a few of the T-SQL style datemath functions and voila, the most powerful javascript date library. 
Petur Subev
Telerik team
 answered on 22 Jan 2013
4 answers
266 views
Hi, and thanks for the great blog!

I'm considering using Kendo for a new project I'll be working on which will present some data in a grid. The data can be edited and changes will be posted back to server on change. In one of the blog posts, I read that:

"And something like the Kendo UI DataSource will eventually help track changes to objects locally and persist those changes to the server later."

Are you planning any built in support for that in DataSource/an extension to DataSource? Or will we need to take care of it ourselves, by tracking if the connection is on-/offline, and in case of offline track the change() event of DataSource and save changes to an array for later use when connection becomes available.

Thanks!

/Jay

Sebastian
Telerik team
 answered on 22 Jan 2013
3 answers
115 views
I have a tabstrip with 7 icons that all request for a remote view when clicked.
On response the views content is show but without rendering the header/footer properly.
I have found out that on click of a tab each remote view is called twice (xhr) and returned twice.
Anyone had the same issue?
Alexander Valchev
Telerik team
 answered on 22 Jan 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
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?