Telerik Forums
Kendo UI for jQuery Forum
1 answer
85 views

Hi,

I used "selectable: 'multiple, row'" as our treeList option, such that we can multi-select tree items (via shift-key or ctrl-key). It works fine on desktop browsers.

However, when we use iPaq (Safari) or Android Tablet (Chrome), it is very difficult to scroll the tree since touch-and-move on the tree will be treated as multiple selecting the tree item. Only when I touch on the treeList thin right-edge and move, it will scroll sometimes. It is not so user-friendly.

Do anyone have any suggestion? e.g. can we have visible scroll bar for treeList on mobile device?

Please kindly advise. Thanks!

Kelvin

 

 

 

 

 

 

Stefan
Telerik team
 answered on 23 Jun 2016
3 answers
601 views

Can someone tell me exactly how the grids behavior changes when EnableCustomBinding is set to true?

Does it change the request that is sent?

Does it change the data that is expected from the server?

Does it change how binding is done?

Does it work differently if ServerOperation is true or false?

 

 

Daniel
Telerik team
 answered on 23 Jun 2016
2 answers
85 views

The latest 2016 version treelist some time doesn't return the right data when apply the filter on column.

Here's the code which you can repeat that bug. When I apply a filter on column ClassSecurity start with "U", the data is incorrect. But the old 2015 version is good.

2016 version  http://dojo.telerik.com/@cchu/IwUso

2015 version  http://dojo.telerik.com/@cchu/uZADe

 

 

Congyuan
Top achievements
Rank 1
 answered on 23 Jun 2016
1 answer
92 views

The kendo Grid is actually a table, with output that produces a single row (formatted with varying columns) for each data record.  I was looking to create an actual grid, with a single template that outputs a "cell", and cells repeating horizontally until they wrap to the next row vertically.  Like a grid of movie posters, or whatever.

There's nothing existing that marries a DataSource with some appropriate subset of Grid concepts to do this, is there?  

Dimiter Madjarov
Telerik team
 answered on 23 Jun 2016
3 answers
7.7K+ views
<div id="tabstrip">
     <ul>
         <li>Table</li>
         <li>Chart</li>
     </ul>
     <div style="min-height:350px;"> </div>
     <div style="min-height:350px;"> </div>
</div>

How can I access the selected index or name? (tabstrip-1', tabstrip-2')

I use the select event:
$("#tabstrip").kendoTabStrip({
                        select: function(element){alert(element);}
                    });

And it works, alert pops up. But I cant use element.type or element.name or whatever on this element? So I dont
know which type is this element ...

I need the name (Chart,Table) or the index?

How to catch this?

Thank you
Marcus
Kiril Nikolov
Telerik team
 answered on 23 Jun 2016
1 answer
248 views

Is there a way to enable autocomplete for kendoTimePicker? 

Ideally, the dropdown list of time options would "follow" whatever the user types in.

So in this use case: 

1. The user clicks the timepicker field and the dropdown expands. 

2. The user types the number 2

3. The dropdown scrolls to 2:00

4. The user types 2:1

5. The dropdown scrolls to 2:10

6. The user types 2:15

7. The dropdown displays 2:15 am and 2:15 pm. 

Kiril Nikolov
Telerik team
 answered on 23 Jun 2016
3 answers
95 views
I have a couple questions regarding the Map widget in Kendo before my team kicks off implementation of a couple of features in our application.

Does the kendo map control for Bing feature include the streetside view?  If not, is there a roadmap on this or a current User Voice ticket open?
Do you plan on adding the ability to draw polygons on top of the Bing layer at some point?

Thank you!
T. Tsonev
Telerik team
 answered on 23 Jun 2016
2 answers
588 views

Hi Team,

I am using the HTML Kendo chart in one of my UI. I am using the scatter and scatter line type for the same. As I need to show the data with its best fit regression line.

I am not able see the x axis and y axis title in my chart.

Attached is the image of my chart.

<%= Html.Kendo().Chart<PRT.Web.Models.QualityOverTimeViewModel>()
.Name("BestFitGraphWarm")
.Series(series =>
{
series.Scatter(
model => model.xaxis,
model => model.yaxis
)
.Labels(labels => labels.Background("transparent").Visible(false));
})
.Series(series =>
{
series.ScatterLine(
model => model.estXFieldName,
model => model.estYFieldName
);
})
.CategoryAxis(axis => axis
.Title(title => title.Text("Time"))
.Categories(model => model.Label )
.MajorGridLines(lines => lines.Visible(false))
.Line(line => line.Visible(false))
)
.ValueAxis(axis => axis.Numeric()
.Title(title => title.Text("Warm"))
.MajorGridLines(lines => lines.Visible(false))
.Line(line => line.Visible(false))
.Max(100)
.Min(0)
)
.Title(title => title.Text("Bivariate Fit of Warm Germ Test% By Time(Days After Harvest)"))
.Legend(legend => legend
.Position(ChartLegendPosition.Bottom))
.Tooltip(true)
.DataSource(dataSource => dataSource
.Read(read => read.Action("GetRegressionWarmChartData", "Visualize"))
)
%>

Isha
Top achievements
Rank 1
 answered on 23 Jun 2016
1 answer
302 views

this is my scheduler code

 <div id="scheduler" style="height:450px; overflow-y:auto;"></div>
                        <script>
                            $("#scheduler").kendoScheduler({
                                date: new Date("2013/6/6"),
                                timezone: "Etc/UTC",
                                views: [
                                  "day",
                                  "week",// a view configuration can be a string (the view type) or an object (the view configuration)
                                  { type: "month", selected: true }, // the "week" view will appear as initially selected
                                  "agenda",
                                  "timeline"
                                ],
                                dataSource: dsSchedule
 
                                
 
                            });
                            var dsSchedule = new kendo.data.SchedulerDataSource({
                                transport: {
                                    read: {
                                        url: '/Projects/GetProject',
                                        dataType: 'json',
                                    },
                                },
                                schema: {
                                    model: {
                                        id: 'taskId',
                                        fields: {
                                            taskId: { from: "TaskID", type: "number" },
                                            title: { from: "Title", defaultValue: "No title", validation: { required: true } },
                                            start: { type: "date", from: "Start" },
                                            end: { type: "date", from: "End" },
                                            description: { from: "Description" },
                                            recurrenceId: { from: "RecurrenceID" },
                                            recurrenceRule: { from: "RecurrenceRule" },
                                            recurrenceException: { from: "RecurrenceException" },
                                            isAllDay: { type: "boolean", from: "IsAllDay" }
                                        },
                                    },
                                },
                            });
                        </script>

 

when i access schedular using $("#scheduler").data('kendoScheduler') it gives error undefined

 

Patrick | Technical Support Engineer, Senior
Telerik team
 answered on 22 Jun 2016
6 answers
241 views
When Endless Scrolling and Filtering is used the the flat skin, the bottom element is not accessible.
http://demos.kendoui.com/mobile/listview/filtering.html#/

I have this issue on both devices and web views to a greater extent. Elastic allows me to see the bottom item, removing filtering shows me all the items just fine.

Is there a work around?
Petyo
Telerik team
 answered on 22 Jun 2016
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
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?