Telerik Forums
Kendo UI for jQuery Forum
6 answers
3.7K+ views
I want to add multiple command buttons (let's say, for View, Edit and Print) in a single grid column so that I see them for each row.
I was also able to add icon to custom command and I was able to easily add one command button in one column as explained in the custom command demo but I really want all three "buttons/icons" in the same column.

Any suggestions?
Alexander Valchev
Telerik team
 answered on 19 Jun 2013
1 answer
80 views
hello , i am new to kendoui , the server side wrapper : asp.net , jsp , php , is it only for web? not for mobile ? 
do you have any plan for mobile?
Dimo
Telerik team
 answered on 19 Jun 2013
2 answers
93 views
Hi,
Can you please see this website: http://kiwi.saykor.com/

Please, click on Harry Potter :) you will see the grid.
1 issue: The data is loaded from mongolab.com binded to the controls and it seems is here but not show on the grid as long as not click on any column header. Then the first issue is fixed automatically.

2 issue: see the dropdown Choose University. On the first load it seems is empty but is not. When you click it will see the index 1 is selected but is not show on the label as long as not click on the dropdown.

tested on last version of browsers: FF, Chrome and IE 

Last row resize problem: refresh the page pls. Click on Harry Potter, all is ok. Click on Morticia, add 2 students, all is ok. Click back on Harry Potter and now we have a space between last row and pagination/total row. This behavior is happen on IE10.
On Chrome and FF the first click on HP after refresh the page break the last row.

Maybe some of this problems is for missing configuration I am not sure. Please advise.

Best regards
Saykor
Top achievements
Rank 2
 answered on 19 Jun 2013
2 answers
159 views
Hi!

We are developing an app using kendoMobileDataviz version 2013.1.319 and jQuery 1.9.1. We have a view with a kendoChart and it is showing a bar chart, and the user can select from a drop down to have the data presented as a pie chart as well.

The problem is that when the user touches any of the bars or the pie, the App sort of hangs. Is there any way to disable the click events for the whole chart? The events we find in the documentation are 'plotAreaClick' and 'seriesClick', we have tried using e.preventDefault() on both the events but that doesnt help.

- Any idea on why touching the chart hangs the app?
- How do we disable touch events on the whole chart?


Thanks!
Andreas
Top achievements
Rank 1
 answered on 19 Jun 2013
1 answer
132 views
Hi,


I want to use Kendo upload into kendow window, but I am getting issue while uploading it. Below code for kendo upload in page.


ISSUE : I am getting multiple times response in "onSuccessWnd" function and also in my controller. So that same image will display multiple times. Please me solution for same.

It is working perfectly without window.


/********************** image.cshtml page  *********************/

@(Html.Kendo().Upload()
                  .Name("attachments")
                  .HtmlAttributes(new { id = "FilesToUploadWnd", style = "width:100%" })
                  .Messages(m => m.Select("select files from your computer… "))
                  .ShowFileList(false)
                  .Async(async => async
                            .Save("SaveWnd", "Log")
                        )
                  .Events(e => e
                            .Success("onSuccessWnd")
                          )
 
                )


/********************** javascript function  *********************/

function onSuccessWnd(e) {
 
        var url = "../FolderName/" + e.response.status.toString();
 
        var elem = document.createElement("img");
 
        elem.setAttribute("height", "70");
        elem.setAttribute("width", "70");
         
        elem.setAttribute("src", url);
 
        document.getElementById(appendID).appendChild(elem);
  
}
Please let know if any body have a solution for that.
Daniel
Telerik team
 answered on 19 Jun 2013
1 answer
42 views
Hi!

When the page is zoomed in Chrome and FF (haven't checked other browsers) at approximately 150%, and you try to slide over the tree nodes with a mouse from top to bottom, the whole tree shakes along with its nodes. It's subtle but very inconvenient. Can anything be done to get rid of this behavior? At 100% zoom it's cool. 

This can be reproduced even in a demo: http://demos.kendoui.com/web/treeview/index.html

Thanks in advance!
Dimo
Telerik team
 answered on 19 Jun 2013
2 answers
2.0K+ views
Inside selContentItem() shouldn't e.sender be the kendoListView and thus the same as (in this case) $('#contentListView').data('kendoListView')? When I break and debug, it looks like it (though == returns false), but e.sender.dataSource is empty.

$('#contentListView').kendoListView({
        dataSource: data
        , template: kendo.template($("#template").html())
        , selectable: "single"
        , schema: {
            model: {
                children: "Children"
                , id: "id"
                , hasChildren: "hasChildren"
            }
        }
        ,change: selContentItem
    });
  
function selContentItem(e) {
    //I would expect the following to return true and if it did (and similar logic followed), the next line would work nicely but it doesn't because the first line returns false. Why?
  
    console.log(e.sender == $('#contentListView').data('kendoListView'));
    console.log(e.sender.dataSource.view()[e.sender.select().index()]);
  
}
Michael
Top achievements
Rank 1
 answered on 18 Jun 2013
1 answer
7.5K+ views
Hi, 

I want to restrict the number of files that can be uploaded to the server for a single Upload click to a maximum of 20.

Is there any way to achieve this in the Kendo UI file upload control. ? 
Roberto
Top achievements
Rank 1
 answered on 18 Jun 2013
7 answers
396 views
Hello,

I have a few questions about globalization :
1) Why don't you use the browser language by default ? If the script of the current culture of the browser was added, why not use it by default ? For the moment, it's always 'en-US'
2) I added the script <script src="scripts/js/cultures/kendo.culture.fr.min.js"></script> in my application. If I set the culture to 'fr-FR' (kendo.culture("fr-FR")), it doesn't work, the default 'fr' script is not used (I think it should be).
3) Is it possible (and how) to use your globalization framework to localize our own strings ?

Cordially,
Kakone.
Georgi Krustev
Telerik team
 answered on 18 Jun 2013
1 answer
117 views
I have a declarative grid inside a template and I'd like to allow the columns to be filterable, but with filterable.extra set to 'false'. Is this possible?
Here's a JSBin example

I've tried every variation of data-filterable-extra="true" / data-filterableextra="true" / data-filterableExtra="true" / etc...
Ideally, I'd only have the input box and assume that the search method is 'contains'.

Note that this lives within a template, and that I need to loop through an array to get the values, so my implementation actually looks more like this.
Dan
Top achievements
Rank 1
 answered on 18 Jun 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)
SPA
Filter
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
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
OrgChart
TextBox
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
Popover
DockManager
FloatingActionButton
TaskBoard
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
TimePicker
DateTimePicker
RadialGauge
ArcGauge
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?