Telerik Forums
Kendo UI for jQuery Forum
4 answers
380 views

Hello,

 

I'm using kendo.drawing.drawDOM and kendo.drawing.exportPDF, to print some content. I have few multiline textareas there, and unfortunately they are not displayed correctly in the PDF (see attachment: there's one of textareas at the top, and below there's what I get on the pdf).

Is that maybe a known issue? Could I handle it maybe by configuring drawDOM or exportPDF functions?

 

Thanks a lot,

Regards,

Pawel

 

 

Alex Hajigeorgieva
Telerik team
 answered on 06 Jun 2016
1 answer
256 views

Hello,

I'm using the kendo scheduler and have defined two resources that will be populated with remote data.

The first one is "groups" and the second one is "members".

The "members" list should be depending on the selected value of the "groups". So for instance, if I choose group1, I would like to populate the "members" resource with the people in that group.

I would like to know the event fired with a new value in "groups" is selected. How can I bind the resource to  kendo DropDownList?

 

 

Alex Hajigeorgieva
Telerik team
 answered on 06 Jun 2016
1 answer
172 views

Hello,

Is it possible to have a customize template of subMenu in ContextMenu using AngularJs?

Alex Hajigeorgieva
Telerik team
 answered on 06 Jun 2016
1 answer
374 views

In a master child Kendo Grid in the child grid that's been configured for edit/create/celete how do we know if are editing or creating ? For a single level grid we can handle it this way and set the window title. 

edit: function(e) {

    if (!e.model.isNew()) {
              $(".k-window-title").text("Edit ");
                
      // Disable the editor of the "id" column when editing data items
      var numeric = e.container.find("input[name=id]").data("kendoNumericTextBox");
      numeric.enable(false);
    }
    else{
      $(".k-window-title").text("Create");

    }

How do we do the same in a child grid ? ( http://demos.telerik.com/kendo-ui/grid/hierarchy ) . Here 

$("<div/>").appendTo(e.detailCell).kendoGrid({ 

Boyan Dimitrov
Telerik team
 answered on 06 Jun 2016
1 answer
66 views

HI,

When I am trying to sort list view using kendo sortable drag & drop, list item hangs in between and stays there itself on the page and it is visible through out app in all views even if I leave the page where text hangs happen. After debugging I found that sometimes index of dragged item is coming as undefined or e.item.data("uid") is coming as undefined. Please check into this.

 

Thanks,

Velu

 

Alexander Valchev
Telerik team
 answered on 06 Jun 2016
2 answers
1.4K+ views

I have a grid with incell editing with batch update set to true.

I have a custom command that synchronizes the data off two columns like this:

 

command.Custom("Sync Dates").Click("syncDates");

 

    function syncDates(e) {
        var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
        dataItem.set("Date1", dataItem.Date2);
    }

 

 

What is the best way to set the dirty flag on the Date1 cell?

Boyan Dimitrov
Telerik team
 answered on 06 Jun 2016
1 answer
120 views

I have a Gantt chart which is instantiated using the AngularJS directives.

I noticed that when I run my Gantt page in a mobile device (phone or tablet), I have this exception:

Cannot read property 'bind' of undefined at kendo.ui.GanttTimeline.r.extend._tooltip 

It’s a tooltip exception. I tried to put the tooltip property in the ganttOptions as visible false, and it works, but if I put  the tooltip as true, it throws this exception. I have another Gantt in my application that doesn't use the tooltips and it's working fine on phones or tablets.

I don't think I'm missing any library references:

<script src="/scripts/bower_components/kendo-ui/js/kendo.core.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.color.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/cultures/kendo.culture.fr.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.drawing.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.pdf.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.data.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.popup.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.userevents.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.draganddrop.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.resizable.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.window.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.dom.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.touch.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.columnsorter.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.calendar.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.datepicker.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.timepicker.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.datetimepicker.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.numerictextbox.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.validator.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.binder.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.editable.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.gantt.list.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.gantt.timeline.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.grid.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.gantt.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.angular.min.js"></script>

How  should I proceed to make it work?

Bozhidar
Telerik team
 answered on 06 Jun 2016
1 answer
287 views

How can we sort the treelist by using natural sort? Or customize the sort method?

We need the TreeList should be sorted like that:

Folder 1

     Item 5

     Item 6

     Item 50

Folder 2

     Item 3

     Item 4

     Item 30

Folder 10

     Item 1

 

 

 

 

Stefan
Telerik team
 answered on 06 Jun 2016
3 answers
533 views

Hello,

 

I am using a grid with pager that shows the current page number instead of drop down list.

This button disappears in 1024px screen width and other pager buttons round border shapes are changed.

I need exactly the same layout as in wider 1024px screens.

 

Please see the attached image.

Stefan
Telerik team
 answered on 06 Jun 2016
1 answer
221 views
Hello, I have template with angular markup. And I want to compile it properly.
For example: "<span ng-click='someAction()'>dataItem.property</span>".

How can I compile it properly, so when I append it to element angular directive ngClick will work?
Alexander Valchev
Telerik team
 answered on 06 Jun 2016
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
ScrollView
Switch
TextArea
BulletChart
Licensing
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
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
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?