Telerik Forums
Kendo UI for jQuery Forum
1 answer
129 views
Hello,

I was really pleased to see the actionsheet available for the web apps as of the latest release.

In my scenario I need to catch the Open event (when clicking on the table row) so that I can hide/show certain options depending on what row was clicked. However adding data-open="onOpen" to the UL doesn't call that function. This method available in the API docs. Is this a bug? I understand that this may be due to this being designed for a mobile app, but we are using Web solution and would benefit from this method.

How would you recommend I solve this problem?

Best regards.
Kiril Nikolov
Telerik team
 answered on 17 Apr 2014
1 answer
96 views
Is there a kendoui widget that can be used to zoom in and out of images?
Kiril Nikolov
Telerik team
 answered on 17 Apr 2014
2 answers
113 views
We recently upgraded the kendo code in our app from 2013.3.1414.commercial to 2014.1.318.commercial.
When we did we immediately started noticing issues with transitioning from some remote views to others. These issues manifest only while running on the iPad and do not throw any javascript errors. Are there any known issues WRT to this release and running on the iPad? If not; I can try to invest the time to create a sample application to illustrate the behavior.

Thanks
Kamen Bundev
Telerik team
 answered on 17 Apr 2014
6 answers
80 views
Hello, first I warn you that this translation it´s made with Google translator. 

I'm trying to make an application and navigation on my iPhone 5S (iOS 7) is perfect, but in another iPhone 4 with iOS 6 goes crazy to go back (only to go back). In android (Samsung Galaxy S2 - Android 4.1.2) happens the same thing if I press the dedicated button in the terminals. 

Any tips?

Thanks!
Kiril Nikolov
Telerik team
 answered on 17 Apr 2014
4 answers
110 views
Hi,

I try to resize the window by touching the frame of the window, and if my finger is not 100% over the 2 pixels of the frame, I will not be able to resize it. Even a broader frame doesn't help.

Kind regards
Axel
axel
Top achievements
Rank 1
 answered on 16 Apr 2014
1 answer
97 views
Hello,

I'm using a multiselect filter for the one of my columns. Also I want to maintain the active filters so you can further narrow down the result.
For now i'm trying to do this as below but the OldFilters variable is empty.

                    function areaOfStudyFilter(element)
        {
            //mvvm binding should be removed, other way the dataSource will try to update the UI when the dataSource filter has changed
            element.removeAttr("data-bind");
            var dataSource = $("#Grid").data("kendoGrid").dataSource
            element.kendoMultiSelect({
                optionLabel: "-Selecteer waarde-",
                dataSource:
                    {
                        transport: {
                            read: "@Url.Action("Filter_AreaOfStudyDescriptions")"
                        }
                    },
                change: function (e) {
                    var oldFilters = dataSource.filter();
                    var filter = {logic:"and", filters:[]}
                    var newFilter = { logic: "or", filters: [] };
                    var values = this.value();
                    if (values.length == 0)
                    {
                        dataSource.filter({ field: "AreaOfStudy", operator: "startswith", value: "" })
                        oldFilters = dataSource.filter();
                    }

                    $.each(values, function (i, v) {
                        newFilter.filters.push({ field: "AreaOfStudy", operator: "eq", value: v });
                        dataSource.filter({ field: "AreaOfStudy", operator: "startswith", value: "" })
                        oldFilters = dataSource.filter();
                    });
                    filter.filters.push(newFilter);
                    filter.filters.push(oldFilters);
                    dataSource.filter(filter);
                }
            });
        }

Kind Regards,

Tim
Kiril Nikolov
Telerik team
 answered on 16 Apr 2014
4 answers
115 views
Is the Custom Download tool at http://www.telerik.com/download/custom-download not working for anyone else? I cannot get the "Download" button to show when I choose any options for versions 2014.1 318 and 2013.3 1324.
Sebastian
Telerik team
 answered on 16 Apr 2014
10 answers
192 views

Hi,

I'm having a problem with Virtual Scrolling in IE8 and IE9.

This is my scenario:
1. I created a grid with several thousands of records and enabled Virtual Scrolling on it.
2. I also created a filter (textbox) and a filter method to send additional parameters to the server
3. When I initially scroll to the bottom of the grid, the last page of data is shown as expected.
4. Now when I enter filter data that would return less than the number of pages with data than the page currently shown, the data is not shown in the grid

Investigating the issue, showed me the following:
* In other browsers (tested with IE11, Chrome and Firefox), after the filtering first an empty response is returned which is immediately followed by a second request for the first page of data, as expected
* In IE8 and IE9 (the only 2 browsers that I've tested this issue in) this second request is not performed, showing no data nor scrollbar, as if there were no data present at the server.

I've attached a sample ASP.NET MVC project using Kendo UI 2014.1.318.440 that shows the problem.

Rosen
Telerik team
 answered on 16 Apr 2014
1 answer
93 views
Hi,

We are currently using an older version of kendo - 2013.2.918 and it renders html content correctly when using kendo.template for Line
Chart Notes.  The example is prototyped here: http://jsfiddle.net/S6zny/

However, after upgrading to latest version – 2014.1.318, the html content no longer
works as intended for notes labels in charts. The example is prototyped here:  http://jsfiddle.net/S6zny/1/

Is there something that can be done, to display html content for labels line chart notes with latest version? We are seeing huge performance improvement in our application after trying new kendo build but this one small issue is stopping us to release to production.Appreciate the prompt response or workaround.

Thanks,
Deepak
Iliana Dyankova
Telerik team
 answered on 16 Apr 2014
1 answer
163 views
In our App, we see that sometimes, a call from a click event (via touch on the device) is propagated to the new view that we navigate to.

For example, assume that we have a list with multiple entries, each one taking us to a different view - we see that in some cases, when tapping the item and performing the navigation, the button/element (in the new view) that is under where the finger was in the original (pre-navigation) item is clicked after the navigation.

This seems to be solved with some combination of setTimeOut(function() { app.navigate(target) }, X) - 

on iOS7 with an iPhone 5S X == 0 works, but for an older Nexus phone, we need to set X == 20 to work.

Obviously, this is a hack, and seems like a bug that really should not happen.

Is there a way to eliminate it via a Kendo option or something? Is it related to the 300ms delay between touch and click events?

Petyo
Telerik team
 answered on 16 Apr 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
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
ScrollView
Switch
TextArea
BulletChart
Licensing
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
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
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
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?