Telerik Forums
Kendo UI for jQuery Forum
0 answers
125 views
i`m a Apple fans, when i know Kendo UI , i decide to use it ,  it look like Mac theme, so cool , and now i used Jquery UI and JqGrid in our current project
i have a problem about our Grid .
How(When) can i get the function that are "filterToolbar" and "setFrozenColumns" in our Grid? it is very inportant. JqGrid both have .
if not ,can i use Kendo UI with Jquery UI and JqGrid together?

thanks,
best regards
Gavin
Top achievements
Rank 1
 asked on 02 Jun 2012
12 answers
914 views
I have a Grid bound to a remote JSON data source. Works great.

But when I try to bind the chart below to the same datasource, The entire application stops working (I only see  the blue background of the page).

1. Is there a way to turn off autobinding (like a grid) so that I can step through and see what is going on?
2. How would I do a late binding (given that I have the handle  = $(#chart).kendoChart().

Did I do something wrong in creating this chart?

function buildChart() {
    $("#chartPane").kendoChart({
        title: {
            text: "Type by Distributor"
        },
        dataSource: {
            data: queryData
        },
        seriesDefaults: {
            type: "column"
        },
        series: [{
            field: "size",
            name: "size"
        }],
        categoryAxis: {
            field: "distributor",
            labels: {
                rotation: -90
            }
        }
    });
}
Engifaar
Top achievements
Rank 1
 answered on 02 Jun 2012
1 answer
208 views
I have created Kendo Grid datasource and want to set updated data object to it
for that i written following code as

//get reference of created grid
var grid = $("#admin-grid-todo").data("kendoGrid");

//to set data to referenced grid
grid.dataSource.data(
                   dataFromAjax
                );


I get dataFromAjax as String object from Ajax call so that it will gives error as ID is not defined
dataFromAjax is in format of [{ID:'1',NAME:'job1'},{ID:'2',NAME:'job2'}]

If i write hard coded dataFromAjax as
var dataFromAjax = [{ID:'1',NAME:'job1'},{ID:'2',NAME:'job2'}];
It will works fine.

I want to know is there any way to get data as object from Ajax return call

Thanks,
Nilesh Mantri
Nilesh
Top achievements
Rank 1
 answered on 02 Jun 2012
2 answers
180 views
Is there a way to have a shared datasource, but then define the grouping when the datasource is being used?  For example I have the following datasource that is shared by two different pages

var vendorAlphaDS = kendo.data.DataSource.create({
                                     transport: {
read: {
url: "http://localhost/~termleech/conference/vendors/all",
dataType: "json"
}
     }
});

I have this used by two different pages, but each page is grouped differently.  So rather than have two difference datasources each with the different grouping, I was wondering if I could just add the grouping to the datasource dynamically.
Engifaar
Top achievements
Rank 1
 answered on 02 Jun 2012
3 answers
370 views
I don't think placeHolder work. The default message never appears when value is blank.
Sample Code
Harsh
Top achievements
Rank 1
 answered on 01 Jun 2012
0 answers
126 views
i had posted a question if a placeholder could be added to the grid edit.
However i found out that i could do this using grid edit event and html5 placeholder attribute.Thanks
Harsh
Top achievements
Rank 1
 asked on 01 Jun 2012
2 answers
279 views

Here's my grid configuration:

            gridItems.kendoGrid({
                selectable: "row",
                scrollable: true,
                pageable: false,
                sortable: true,
                filterable: false,
                rowTemplate: kendo.template($("#gridItemsRowTemplate").html()),
                dataSource: {
                    data: data
                },
                columns: columns,
                editable: "inline",
                toolbar: ["create", "save", "cancel"],
                navigatable: true
        });

I've had to add the following code in order to get my grid into edit mode:

            $("#gridItems td").click(function() {
                if (!$(this).closest('tr').hasClass('k-grid-edit-row')) {
                    costingSheetItems.data("kendoGrid").editRow($(this).closest('tr'));

                    // remove spinner controls from numeric textboxes
                    var numericWrapper = $("#gridItems td").find(".k-numeric-wrap")

                    numericWrapper.find(".k-select").hide();
                    numericWrapper.addClass("expand-padding");
                }
            });


BUT, once it is in edit mode after I click on a row, if I type a new value into a cell and press Tab, the grid leaves edit mode and I can't get it back into edit mode.

Jerry

Jerry T.
Top achievements
Rank 1
 answered on 01 Jun 2012
1 answer
110 views
hi guys,

I need to remove line chart grid.

Please help me if it is possible.

Please refer the image.

Thanks,
Rajesh.C



Tom
Top achievements
Rank 1
 answered on 01 Jun 2012
1 answer
74 views
This can be reproduced using the basic window example.
2012.1.515.  Generates an error when trying to resize a window in IE 8.
2012.1.322.  Worked fine.
Alex Gyoshev
Telerik team
 answered on 01 Jun 2012
1 answer
386 views
Hello everybody!

I apologize for the (probably) silly question, but there it is. I'm trying to use the Kendo-UI D&D feature with no luck and this is driving me crazy. I've made this fiddle: http://jsfiddle.net/ilCoso/nq73f/ ... what I'm doing wrong?

Thanks for the support!

Andre
Richard
Top achievements
Rank 1
 answered on 01 Jun 2012
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?