Telerik Forums
Kendo UI for jQuery Forum
1 answer
126 views
I have a grid with selectable set to "multiple, row".  On an iPad, I can tap on one row and it is selected.  I can also tap on two rows simultaneously and they are both selected.  If I try to tap on more than two rows or swipe across multiple rows, the entire grid is selected.  Is there a way to select a range (like shift + click from PC browser) or more than two individual rows (like CTRL + click from PC browser) from an iOS device?

Thanks.
Nikolay Rusev
Telerik team
 answered on 09 Jan 2012
2 answers
374 views
I've seen the examples where you can modify the data IN the Grid.  I can't do this since I'm displaying only a few columns in the grid of all the columns available for the data I want to add, edit or delete. So I need to use the standard way of doing this which involves a link in the grid which redirects to a separate view that contains all the fields.

How do I add links to the Grid so I can redirect to a different page?

I would also be interested in knowing if it's possible to have the form in a modal Popup over the Grid, but one thing at a time.

This is a sample of my code:

<div id="expensegrid">
</div>
<script type="text/javascript">
    $(function () {
        $("#expensegrid").kendoGrid({
            dataSource: {
                serverPaging: false,
                serverSorting: true,
                pageSize: 10,
                transport: {
                    read: {
                        url: '@Url.Action("ExpenseListJson","Expense")',
                        dataType: 'json'
                    }
                },
                error: function (e) {
                    alert(e);
                }
            },
            height: 250,
            sortable: true,
            pageable: true,
            columns: ["CategoryName", "VendorName", "Amount"]
        });
 
    });
</script>

I don't think I can add them in the columns property.  Any suggestions on how to do this is appreciated.

Thanks,

King Wilder
King Wilder
Top achievements
Rank 2
 answered on 09 Jan 2012
5 answers
258 views
I am trying to add some styling to the grid using row template.

The only one problem is that I cannot figure out how to describe "hierarchy functionalyty column" (little triangle) on the row template.

Any suggestions?

Thanks
Joel
Top achievements
Rank 1
 answered on 09 Jan 2012
1 answer
405 views
hi,
  i just finished reading all the examples and forum, have not attempted creating a line
chart yet, but i have a question.  i'd like to create a line chart with 3 series, and lots of data points.
one data point for every 10 seconds, for an entire day...i think that is about 8,640 data points.

1) should this much data be expected to work?

2) i have read about rotating the axis labels 90 degrees, but i think that will still be crowded.
is there a way to make this  look readable?

3) do you have plans to auto-scale the x-axis?  (slider to zoom in would be great)

thanx very much...pat
T. Tsonev
Telerik team
 answered on 09 Jan 2012
1 answer
104 views
Hi,

I have implemented server-side filtering in my Kendo UI grid. This works fine for multiple filters without any issues. I face a problem when the user clears the filters, server side code is not able to recognize the same. When I used FireBug, I till found the filters present in the url.

Can you please guide me how to identify clear filter command?

Regards,
VR
Rosen
Telerik team
 answered on 09 Jan 2012
1 answer
218 views
Hi, if there are more columns on the grid than can fit inj the available width of the control, there is a horizontal scroll bar available to scroll over to see the hidden columns. But on iPad, there is no scrollbar, and any attempt to scroll is captured by the iPad form, and the entire page scrolls. Is there any way to support this type of scrolling on the iPad?
Kamen Bundev
Telerik team
 answered on 09 Jan 2012
3 answers
615 views
Hi all,

I have some questions regarding the commercial license of Kendo.

1) The term of one year subscription is used, what does this actually mean? Can I continue to develop after the subscription has lapsed, on either existing or new products? Can I continue sell my product after the subscription has passed?

2) If I purchase a Kendo subscription, will it cover access to mobile components, given that it is being released during the subscription period?

3) If I purchase a Kendo subscription, is there any restriction on the license I can release my projects under?

Many thanks,
Mark

Emilia
Telerik team
 answered on 09 Jan 2012
7 answers
241 views
Hi,

I want Drag and Drop functionality to Panel Bar's sub links (sub LIs) like you have in Tree View (http://demos.kendoui.com/web/treeview/dragdrop.html).

Is it possible or is there any way to do this?

Can i Combine Tree view within Panel Bar?

Thanks in advance.

--
pratiks
Georgi Tunev
Telerik team
 answered on 09 Jan 2012
7 answers
511 views
Hey all,

Not sure if this is a bug or if I am just doing something wrong. I copy pasted the source code for the high performance chart (http://demos.kendoui.com/dataviz/high-performance/index.html) and when I click on the start update button, the chart height start growing and doesn't seem to stop. On your website, it seems to be contained within the demo window, but when I use the sample code on my server, the chart starts growing and eventually surpasses the height of the page (a scroll bar appears) and it just seems to keep growing with each data update.

I have tried this on both chrome and firefox. I am using a reference to kendo.all.min.js, kendo.common.min.css, kendo.default.min.css, and jquery 1.7.1

Cheers,
Phil 
Hristo Germanov
Telerik team
 answered on 09 Jan 2012
0 answers
86 views
Hi all,

I'm getting a method 'toString' error when i render some line and bar/column charts.
Below is an example of one of the charts.
function widget1() {
        $("#widget1").kendoChart({
            theme: $(document).data("kendoSkin") || "default",
            title: {
                text: "Classificaties"
            },
            legend: {
                position: "left"
            },
            chartArea: {
                background: ""
            },
            seriesDefaults: {
                type: "column", stack: false
            },
            series: [{name: "1 Incident",
            data: [1,1,4,9,2],
                        color: "#DB3030"},
                        {name: "2 Probleem",
            data: [,,,,],
                        color: "#8A2424"},
                        {name: "3 Wijzigingsverzoek",
            data: [,,,1,3],
                        color: "#663399"},
                        {name: "3a Algemene wijziging",
            data: [,,,,],
                        color: "#993399"},
                        {name: "3b Standaard wijziging",
            data: [,,,,],
                        color: "#9966CC"},
                        {name: "3c Projectwijziging",
            data: [,,,,],
                        color: "#CC66CC"},
                        {name: "4 Vraag",
            data: [,,,,],
                        color: "#34B8C7"},
                        {name: "5 Beheer",
            data: [,,,,],
                        color: "#346CC7"},
                        ],
            valueAxis: {
                labels: {
                    format: "{0}"
                }
            },
            categoryAxis: {
                categories: [48,49,50,51,52]
            },
            tooltip: {
                visible: true,
                template: "${value}"
            },
            seriesClick: widget1Click,
            transitions: false
        });
    }
Sander
Top achievements
Rank 1
 asked on 09 Jan 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
Date/Time Pickers
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
Gauges
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
ScrollView
PivotGridV2
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Collapsible
Localization
MultiViewCalendar
Touch
Breadcrumb
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
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?