Telerik Forums
Kendo UI for jQuery Forum
2 answers
131 views
How can I set
type="text/x-kendo-template" id="layout-main"
 to 100% height? In documentation I found only how to use custom tag.
I need this, because I want to display 100% grid in view, his parent is layout and this layout is in another layout.

Comment:
I already post this topic twice, but I get error: Our antispam service detected your content as possible spam ...
I am not sure if post was posted, because I expect that I get error and get redirected after a few seconds, or something else, not the textarea to edit post.
Matjaz
Top achievements
Rank 1
 answered on 18 Dec 2014
1 answer
136 views
Date format
in grid and input fields:

-         
Works
for input - data-role: datepicker, data-role: datetimepicker and in date picker
in the grid filter menu, but doesn’t show date format according to current
culture in the grid and input - data-type: date

 

 
Georgi Krustev
Telerik team
 answered on 18 Dec 2014
3 answers
127 views
Hi 

We are using the hidden-columns, and it works well. Expect when we initialize by default a columns, it will be showed.
How can that be, are we missing something, or do you have a work around for us 


(Se pictures)


Kind Regards



Peter Beyer
CRM-Byggefakta
Dimiter Madjarov
Telerik team
 answered on 18 Dec 2014
1 answer
123 views
Hello,

I am rendering line chart with "dot" dashtype it's functioning well but we need to increase gap between dots for our specific need.
So could you provide us the way to customize it even without api directly changing the source code.


Best Regards
Hristo Germanov
Telerik team
 answered on 18 Dec 2014
1 answer
206 views
Dear Kendo,
Please tell my why when i type in a ship name the auto complete works fine but when i hit enter I don't actually get the results i filtered by? Also when i clear the filter I don't get all the items either! I took my code and adapted it to use a kendo example resource for the purpose of understanding the problem.

See the example here: http://dojo.telerik.com/AHoN

Javascript code:
01.$("#grid").kendoGrid({
02.    dataSource: new kendo.data.DataSource({
03.        data: undefined,
04.        serverPaging: false,
05.        pageSize: null,
06.        pageable: false,
07.        filter: null,
08.        serverSorting: false,
09.        serverFiltering: false,
10.        transport: {
11.            read: {dataType: "json", url: "http://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders"}
12.        },
13.        sort: true,
14.        schema: {
15.            total: "count",
16.            data:function (response){
17.            console.log(response.d);
18.            return response.d;
19. 
20.          },
21.            model: {
22.                ShipName: {
23.                    type: "string"
24.                }, datatype: {
25.                    type: "string"
26.                }, description: {
27.                    type: "string"
28.                }, module: {
29.                    type: "string"
30.                }, name: {
31.                    type: "string"
32.                }, value: {
33.                    type: "string"
34.                }
35.            }
36.        }
37.    }),
38.    columns: [{
39.        attributes: {
40.            style: "text-align: left;"
41.        },
42.        field: "ShipName",
43.        filterable: {
44.            cell: {
45.                operator: "contains",
46.                suggestionOperator: "contains"
47.            }  
48.        },
49.        format: undefined,
50.        title: "Key",
51.        type: "string",
52.        width: 150
53.    }],
54.    filterable: {
55.        mode: "row"
56.  },
57.    resizable: true,
58.    reorderable: true,
59.    sortable: {
60.        allowUnsort: false,
61.        mode: "single"
62.    },
63.    scrollable: {
64.        virtual: false
65.    },
66.    pageable: false,
67.    selectable: false,
68.    rowTemplate: null
69. 
70.});

Any help would be sooo much appreciated. I already wasted a day banging my head against the wall.

Thanks
Alexander Popov
Telerik team
 answered on 18 Dec 2014
2 answers
501 views
Hello,

 I want use Batch editing and Popup editing in th same grid

See the exemple in the attached file

best regards

moussa
Top achievements
Rank 1
 answered on 17 Dec 2014
1 answer
479 views
Hi, a scrollbar appears at the right side of a kendo UI treeviews.
Plunkr demonstration (hover jour mouse over the tree items): http://plnkr.co/edit/oYYKUjfYRz1JmXwhgRRW?p=preview
The attached image shows what I see (in regular chrome, and canary as well).

Also, if I grab the scrollbar with the mouse, it behaves really strange, here is a video: http://screencast.com/t/EyuABRLR3tu

Dimo
Telerik team
 answered on 17 Dec 2014
1 answer
164 views
Hi,

I'm developing a custom widget, based on the Blog entry "Creating A Kendo UI MVVM Widget". The template contains a Kendo Dropdownlist. The Dropdown Widget is not properly rendered, only the input field is displayed. What am I doing wrong? Is anything missing there?

The container is defined as:
<div id="customWizardTest" data-role="wizard" data-title="TestConfigWizard" data-width="600" data-visible="false" data-template="template"/>

And my temlplate is defined that way:
<script type="text/x-kendo-template" id="template">
      <div>
           <input id="wizTranscoderList" data-role="dropdownlist"/>
      </div>
</script>

In the "refresh" method of the custom widget the (re)-rendering of the template is done:
refresh: function() {
        var that = this,
            view = that.dataSource.view();
        if(view.length > 0)
        {
            that.template = kendo.template(that.options.template);
            var  html = kendo.render(that.template, view);
            that.trigger(DATABINDING);
            that.element.html(html);
            that.trigger(DATABOUND);
        }
}
The view has content, so the rendering will be executed.

Thanks in advance,
Patrick
Petyo
Telerik team
 answered on 17 Dec 2014
3 answers
101 views
We upgraded to the latest internal build, 2014.3.1209, and now all our line and bar charts are "scrunched" in IE9.  They are set to auto height and width and they resize if the screen (and their container) resizes.  However, even the initial height is too small in IE9.  They look fine in chrome and IE 10+
Noah
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 17 Dec 2014
4 answers
1.8K+ views
I've looked over documentation but was not able to find an example on how to implement custom aggregate function for a data source. Is that possible? Can someone post simple example?

Thanks,
Dominik
Alexander Valchev
Telerik team
 answered on 17 Dec 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
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?