Telerik Forums
Kendo UI for jQuery Forum
3 answers
972 views
I am trying to handle the keyup function on a kendocombobox however it seems as though I can only use the change event. Is there a way to catch the keyup events as well?

HTML:
<input type="search" id="myInputID"/>

Javascript:​
$("#myInputID").kendoComboBox({
            placeholder: "Loan Pool",
            dataSource: loanpools,
            filter: "contains"
        });
 
$("#myInputID").on({
       keyup: function () {
           //not firing
       },
       change: function () {
           //firing
       }
   });
 

    
Georgi Krustev
Telerik team
 answered on 21 Feb 2014
1 answer
96 views
In the latest build (2013.3.1414) and previous builds, the value(value:number):void method in RangeSlider is incorrect.  It should be:

value( value: Array<number>): void;

Hristo Germanov
Telerik team
 answered on 21 Feb 2014
5 answers
2.2K+ views
When a file is uploaded I need to change the saveUrl to add parameters for a post. This code has no effect on the saveUrl. 

function onUpload(e) {
                    var upload = e.files;                   
                    
                    if (upload[0].extension != ".xml") {
                        alert("Only Xml files can be uploaded");
                        e.preventDefault();
                    }
                    else {
                        e.data = { fileName: upload[0].name };
                        kendoConsole.log("Upload :: " + getFileInfo(e));
                    }


                    //get the options and add to the Url
                    var option1 = $("#actions").val();
                    var postUrl = "PostViewData.svc/FileUpload/" + option1;
                    this.options.async.saveUrl = postUrl;
                }
How can the saveUrl be modified?

$("#files").kendoUpload({
                        async: {
                        saveUrl: "PostViewData.svc/FileUpload",                            
                            autoUpload: false
                        },
                        multiple: false,
           showFileList: true,
                        select: onSelect,
                        upload: onUpload,
                        success: onSuccess,
                        error: onError,
                        complete: onComplete,
                        cancel: onCancel,
                        remove: onRemove,
                        localization : { uploadSelectedFiles: "Upload"}
                    });

This is similar to adding a query string... saveUrl is already committed by the time the event onUploadFires?
Michael
Top achievements
Rank 2
 answered on 20 Feb 2014
0 answers
136 views
Hello, Telerik Team 

I am working on Kendo DatePicker control in MVC 4.0, and we have to culture in the application. 1) en-US and 2) ar-SA.

    It is working fine for en-US but when I set culture as ar-SA, DatePicker change date as per culture in UI it is fine for me while in MVC controller side Model's Date-time property giving same date as UI.  for e.g  01/Feb/2014 is display as 01/04/35(dd/MM/yy) in ar-SA. 
Now , I  won't to save only en-US date like 01/Feb/2014 in database side.
   One more issue(for ar-SA) in client side  "dd/MMMM/yyyy" is not able to post the  form , i have also check        $("form").kendoValidator().data().kendoValidator.validate()== true . 
please provide your suggestion as soon as possible, it is argent for us. 

Thanks
Padman
 
 
Padman
Top achievements
Rank 1
 asked on 20 Feb 2014
3 answers
1.0K+ views
Hi,

I have a kendo grid with configuration as editable='inline' or editable='incell'.
In the case of incell editing,
- when I click in a cell, cell immediately move to edit mode.
- Now I click on another cell then the previous selected cell which is in edit mode move back to read-only state.\
In the case of inline editing,
- when I click on edit button, cell immediately move to edit mode and two buttons update and cancel created by grid.
- Now when I clicked on update or cancel, respective callback handler called and grid cell moved to read-only state.

I just want to know is there any way (may be some event) through which I can detect that grid changes its mode from edit to read-only(required for incell editing).


Thanks,
Vinay
Dimiter Madjarov
Telerik team
 answered on 20 Feb 2014
4 answers
429 views
My custom validation message shows up on the wrong column (see attached image)

Any idea why? or how to fix it?

Thanks.

Alexander Popov
Telerik team
 answered on 20 Feb 2014
10 answers
228 views
I just upgraded my application from  v2013.3.1119 to v2013.3.1324.

I am using flat so I upgraded two files: "kendo.mobile.min.js" and "kendo.mobile.flat.min.css"

Now when I use the AppBuilder emulator in iPhone or iPhone 5 mode the footer is cut off by 20 pixels (displayed too low)
However when I deploy to the device the footer is 20 pixels too high (displayed too high and the header does not contain the 20 pixel padding in the header)

Is there some other file that needs updating?
Kiril Nikolov
Telerik team
 answered on 20 Feb 2014
1 answer
119 views
Dear Support Team,

I have a asp.net web project with Visual Studio 2008. Right now I want to use Kendo Grid without using MVC from that project. Is possible to get sample project?


Thanks & Regards,
Sebastian
Telerik team
 answered on 20 Feb 2014
2 answers
66 views
Hello,

I encountered an issue with Selectable behavior within Scheduler control, the same issue can be seen here:
http://demos.telerik.com/kendo-ui/web/scheduler/selection.html

When the scheduler is in Week mode, clicking a cell from current day will not produce selection.

When the scheduler is in Month mode, clicking the cell for current day will not produce selection in Chrome, while in IE 9 the behavior is even stranger if you click any cell in the second column (today is Moday) it will produce a selection into same row but first column.

Could you provide a hint how this can be fixed. This is quite inconvenient for our customers.

Thank you,
Vasile
Ovidiu
Top achievements
Rank 1
 answered on 20 Feb 2014
1 answer
169 views
Hello
Is there any way to configure (js or css) grid columns to not have too small size when resizing window for smaller layout? Currently I have 1 column without set width to fill gap. Other columns has defined size. When I'm resizing window this column is resized to 0 so for small screens it is not visible. The perfect option would be to have min-width for each column to be never less than some value. But I don't know if this sis possible.

Kind Regards
Marcin
Dimo
Telerik team
 answered on 20 Feb 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
Drag and Drop
Application
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
DropDownTree
ListBox
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
LLM Kit
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?