Telerik Forums
Kendo UI for jQuery Forum
1 answer
134 views
I've found rendering issue with bubble chart in latest internal builds - labels are drown behind bubbles. I was able to reproduce it in both 2014.3.1223 and 2014.3.1308 builds. I just want to make sure it won't go to next production build. Attached screenshot and zip with example.
T. Tsonev
Telerik team
 answered on 15 Jan 2015
1 answer
99 views

 I made an upgraded with the official release (v. 2014.3.1119) .
 
I had a new issue with hideColumn() method of grid, which I've solved applying the latest internal build v.2014.3.1308.
 I've found the solution in this thread: http://www.telerik.com/forums/grid-hidecolumn-method-while-the-grid-is-not-shown.

A new issue is raised since I have included the latest internal build v.2014.3.1308.
A defect is preventing the sparkline tooltips from showing. Sometimes I get the error message "Uncaught TypeError: Cannot set property 'categoryPoints' of undefined".


T. Tsonev
Telerik team
 answered on 15 Jan 2015
3 answers
79 views
Hi

In following example: http://dojo.telerik.com/ukOja

how can I disable the "starts with" drop down box in the City filter only? There, I only want to have the dropdownlist with cities.

Many thanks
Dimiter Madjarov
Telerik team
 answered on 15 Jan 2015
1 answer
328 views
Hi;
I have a trouble about formatting currencies.
Our clienst want to see currency like this : 120.000,96
However I cannot do this with anyway.

I use the settings below  in my culture file:
 numberFormat: {
            pattern: ["-n"],
            decimals: 2,           
            ".": ".",
             ",": ",",
            groupSize: [3],
            percent: {
                pattern: ["-n %","n %"],
                decimals: 2,                
                ".": ".",
                ",": ",",
                groupSize: [3],
                symbol: "%"
            },
            currency: {
                pattern: ["($n)","$n"],
                decimals: 2,
                ".": ".",
                ",": ",",
                groupSize: [3],
                symbol: "TL"
            }
        },
Alexander Valchev
Telerik team
 answered on 15 Jan 2015
5 answers
312 views
I've mentioned this issue in the grid forum as well. I'm not sure if it's a datasource problem or a grid problem. The only thing that I can see via logging is that the data source's item changed event is not fired when the failure occurs.

I've created an example that reproduces the issue some of the time. This issue does not occur all the time but seems to be related to using the mouse button and update button. Hitting enter to save seems to always work. At first I thought it was my code (validation, etc) but I've narrowed it down to a simple example that still is an example of the issue.

I've previously had hacks in place to have custom buttons that call $(document.activeElement).blur() before calling a grid update method but even that was problematic.

Dojo example: http://dojo.telerik.com/oWoBu
Screencast showing the issue: http://screencast.com/t/lsmHjMqc

In the screencast the first two attempts succeed but the third attempt shows how the data isn't saved.
Kiril Nikolov
Telerik team
 answered on 15 Jan 2015
14 answers
254 views
Selecting the dropdown and then scrolling detaches the list from the input area.

See attached image.
Pieter
Top achievements
Rank 1
 answered on 15 Jan 2015
2 answers
143 views
What is the right way to capture the pop-up keyword's "go" button for form submission?

I'm using a form with each input in a separate item of the ListView as shown in the examples.  Currently, when the go button is pressed it appears to just clear the form (but may be doing a submit to #).  What does the pop-up keyboard's go button trigger in the form and what's the best way to hook it?

Note that I need to perform processing in JavaScript before doing an AJAX call, so presumably I should hook it with jQuery or one of the Kendo-style custom events (data-xxx), but I'm not sure what the best way is.  (I know that jQuery handling of input events doesn't always work with the mobile widgets.)
John
Top achievements
Rank 1
 answered on 15 Jan 2015
3 answers
1.5K+ views
Hello,
I've got an autocomplete widget bound to a remote datasource, and with data-min-length set to 5.
All is working quite fine, but if the widget content is deleted (using delete or backspace keys), the filtering event is fired with an empty value, ignoring the data-min-length. Is this the expected behavior?
Thanks in advance,
Georgi Krustev
Telerik team
 answered on 14 Jan 2015
2 answers
192 views
I have a combobox set to 50% width within a form element, it has a button to the right, and two textbox inputs to the left. It's all styled correctly except when the hover event occurs on the combobox, and then the darker portion (which should only be on the arrow drop down) fills 50% of the combobox - as if it were the default width. How do I fix this?

...k
Kevin Dahl
Top achievements
Rank 1
 answered on 14 Jan 2015
8 answers
625 views
Hi,
I'm trying to bind a grid custom command via MVVM and having no luck. i bind the function on the model inside the data-columns attribute ("command":["edit", "destroy", {"text" : "Reset password", "click": "ResetPassword" }) but the function just doesnt fire when i click the command button. Below is the markup for my girds div and the view model.
I'm going crazy here and cant seem to figure out what I'm doing wrong. I also tried this "click" : "viewModel.ResetPassword" but it also wasnt firing.

Help me someone please!

    <div id = "TeamMembersGird" data-role="grid" data-sortable="true" data-pagable="true"
data-editable='{"mode" : "popup", "confirmation" : "Are you sure you want to delete this team member?"}'
         data-bind="source: teamMembersSource"
         data-columns='[
{"field":"FirstName", "title":"First name"},
{"field":"LastName", "title":"Last name"},
{"field":"IsCompanyAdmin", "width":"100px", "title":"Admin"},
{"title":"Action","width":"300px", "command":["edit", "destroy",
{"text" : "Reset password", "click": "ResetPassword" }]
}]'>
 </div>
 
 
  $(function(){
        var viewModel = kendo.observable({
            teamMembersSource: new kendo.data.DataSource({
                transport: {
                    read: {
                        url: '@(Url.Action("Get", "TeamMembers", new { Area = "API" }))',
              
                        data: {
                            companyID: '@(((Signuper.WebApp.Infrastructure.SignuperProfessional)User).CompanyID)'
                        }
                    },
                    destroy: {
                        url: '@(Url.Action("Delete", "TeamMembers", new { Area = "API" }))',
                        type: "DELETE",
                        datatype:"json",       
                    },
                },
                schema: {
                    model: {
                        id: "UserID",
                        fields:
                            {
                                UserID: { type: "number"},
                                FirstName: {type: "string"},
                                LastName: {type: "string"},
                                Gender: {type:"string"},
                                CompanyID: {type: "number"},
                                IsCompanyAdmin: {type: "boolean"}   
                            }
                    },
                    data: "TeamMembers",
                    total: "TotalCount"
                },
                batch:false,
                serverPaging: true,
                pageSize:10
            }),
            RefreshData: function () {
                this.teamMembersSource.read();
            },
 
            ResetPassword : function(e) {
                e.preventDefault();
                var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
                ChangePasswordWindow.refresh({
                url: '@Url.Action("ChangeMemberPassword", "Management", new { area = "Company" })',
                data: { UserID: dataItem.UserID }
            });
            ChangePasswordWindow.center().open();
           }
 
      
        });

Rosen
Telerik team
 answered on 14 Jan 2015
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
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?