Telerik Forums
Kendo UI for jQuery Forum
2 answers
136 views

Hello,

We are using Kendo UI Mobile v2013.3.1119 in our application and we would like to put a label or something in a field in the right column to activate a modal window to enter a signature box. The problem is the label shows up right after the field label and it does not look good (see the attached image). Is there any way to make it line up with other input fields on the right column? 

 Thanks!

Shoji Kaburagi
Top achievements
Rank 1
 answered on 28 Oct 2015
2 answers
108 views

Is it possible to provide a partial view to the MVC Grid popup edit form?

We want to have a higher level of control on the popup edit form and customise it in a manageable way. Please advise if we can create a view/partial view and provide it as a template to the MVC Razor grid.

 

If this is possible, please point us in the direction of a code sample.

 

Many thanks

Man
Top achievements
Rank 1
 answered on 28 Oct 2015
2 answers
96 views

Hi,

I am trying to get a multiselect to work on a form, but I am struggling to read the selected items when the post occurs. Is there anything special I need to do to make this work?

 

Matt

Matt
Top achievements
Rank 1
 answered on 28 Oct 2015
13 answers
162 views

I've trying to use the scaffolding for Kendo UI but as soon
as I select something else than "AJAX" like Web.api" the scaffolding
always aborts with a "There was an error running the selected code
generator. An unknonw error occurred during generation".  This also seem
to happen for MVC scaffolder. Same problem in both VS2013 and VS2015.

Using default options, ie AJAX, seem to work though.

Any ideas on how to solve this?

Regards,
Patrik Johansson

improwise
Top achievements
Rank 1
Iron
Iron
 answered on 28 Oct 2015
1 answer
86 views

When I have a kendo editor inside a tabstrip it throws 

 Uncaught TypeError: Cannot use 'in' operator to search for 'getSelection' in undefine

Here is a sample​

http://dojo.telerik.com/AGavE

Could â€‹someone help me resolve this issue?

Boyan Dimitrov
Telerik team
 answered on 28 Oct 2015
4 answers
345 views

I have grid and custom command 

In function of custom command I change $scope variable:

  $scope.editLanguage = function (e) {
                var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
                $scope.name = dataItem.Name;
                $scope.key = dataItem.Keyword;
                $scope.ID = dataItem.ID;
                $scope.Image = dataItem.Image;
                //$scope.windowEditLanguage.center();
                //$scope.windowEditLanguage.open();
            }

 

But It's not work , but if I add some code to handle somethings it's work. but I just want change variale to display imedietly.

$scope.mainGridOptions = {
              dataSource: {
                  type: "json",
                  transport: {
                      read: "@Url.Action("getLanguage", "DataJson")",
                  },
                  pageSize: 8,
                  serverPaging: true,
                  serverSorting: true
              },
              columns: [
                  {
                      template: "<div>" +
                                      "<img src='../../Upload/#:data.Image#' style='max-width:100px; max-height:100px;'/>"+
                                      "</div>"
                                 ,
                      field: "Image",
                      title: "Hình ảnh",
                      width: 200
                  }, {
                      field: "ID",
                      title: "ID",
                      width: "120px"
                  }, {
                      field: "Name",
                      title: "Tên",
                      width: "120px"
                  }, {
                      field: "Keyword",
                      title: "Từ khóa",
                      width: "120px"
                  },
                 { command: { text: "Chỉnh sá»­a", click: $scope.editLanguage }, title: " ", width: "80px" },
 
               { command: { text: "Xóa", click: $scope.deleteLanguage }, title: " ", width: "80px" },
              ],
              editable: "inline",
              height: 800,
              scrollable: true,
              selectable: true
          };
Boyan Dimitrov
Telerik team
 answered on 28 Oct 2015
1 answer
142 views

Hi,

I want to use kendo diagram control to create SSIS (ETL) kind of functionality at runtime. I found something similar to this here. Is there any source code available for this? 

http://demos.telerik.com/kendo-ui/html5-diagram-sample-app

 

Thank you.

Pm

 

 

Daniel
Telerik team
 answered on 28 Oct 2015
5 answers
198 views

I've got data being passed to a datasource in the following format:

{"Data":{"Met":0,"Warning":0,"Total":3,"Chapters":[{"Name":"Chapter 1","SortOrder":3,"ID":7855,"Tasks":[{"Name":"Task 1","SortOrder":1,"ID":8334}]},{"Name":"Chapter 2","SortOrder":2,"ID":7856,"Tasks":[{"Name":"Task 2","SortOrder":1,"ID":8334}]},{"Name":"Chapter 3","SortOrder":1,"ID":7857,"Tasks":[{"Name":"Task 3","SortOrder":1,"ID":8334}, {"Name":"Task 4","SortOrder":2,"ID":8334}]}],"NotMet":3}}

And I was hoping to use the datasource to sort it, based on the returned sort order, but it's not working. I'm assuming it's because of the nested nodes, is there any way to accomplish this from inside the datasource?

var datasource = new kendo.data.DataSource({
        transport: {
            read: {
                url: "/Controllers/Controller.cfc?method=getData",
                type: "get",
                dataType: "json",
                data: {
                    ID: id
                }
            }          
        },
        schema : {
            type: "json",
            data: "Data",
            model: {
                fields: {
                    Total: { field: "Total", type: "number" },
                    Met: { field: "Met", type: "number" },
                    Warning: { field: "Warning", type: "number" },
                    NotMet: { field: "NotMet", type: "number" }
                }  
            }
        },
        sort: {
            field: "SortOrder",
            dir: "desc"
        }
    });

Ashleigh L
Top achievements
Rank 1
 answered on 28 Oct 2015
1 answer
143 views

Hi there,

i try to create a new Custom View with this Format:

    Jan | Feb | March ...
1
2
3

But i would feel a lot better if someone can tell me, before i try to implement it, if this is even possible to create in reasonable time :) Also i am thankful for any tip how to start with this.

Thanks

Vladimir Iliev
Telerik team
 answered on 28 Oct 2015
7 answers
559 views
I'm trialling Kendo UI v2014.2.1008, with Cordova (using the Visual Studio 2013 extension) on Win 8.1

I'm getting some data via jsonp, which is just served locally at the moment. All works fine except if I turn off the server - "Failed to load resource: net::ERR_CONNECTION_REFUSED" appears in the console after 3 seconds, but I cannot catch the timeout using the datasource error event. 

var _dsRawDataBundle = new kendo.data.DataSource({
    offlineStorage: 'kui_raw',
    transport: {
        read: { 
            url: 'http://localhost:5000/datasets/1/rawData',
            dataType: 'jsonp'
        }
    },
    change: function (e) {
        var data = this.data();
        console.log('Got livestock raw data bundle: ' + JSON.stringify(data));
    },
     
    error: function (e) {      // Not being called on timeout
        console.log('Reading raw data failed: ' + e.status);  
    }
});

Regards,
Steve
Don
Top achievements
Rank 1
 answered on 28 Oct 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?