Telerik Forums
Kendo UI for jQuery Forum
2 answers
514 views

Hi I am trying to create breadcrumbs for a treeview.

a came across a JSfiddle http://jsfiddle.net/korchev/nktUe/8/ Which does work but e.node is not allways available especially if the datasource is changed.

 

I was wondering if anyone has had any luck with breadcrumbs on a tree view.

Paul
Top achievements
Rank 1
 answered on 30 Aug 2016
1 answer
121 views
This is regarding bug with Kendo MultiSelect control.
We have updated kendo UI version from 2014.3.1411 to 2016.1.226
Below code was working fine with version 2014.3.1411 for kendo multiselect (It was able to perform below operations)
1. set pre-loaded value in kendo multiselect
2. data filtering while typing in kendo multiselect.

  ms = $(this).kendoMultiSelect({
                itemTemplate: inlineTemplate,
                tagTemplate: tagTemplate,
                delay: 200,
                placeholder: placeHolder,
                minLength: 3,
                maxSelectedItems: maxSelects,
                autoBind: true,
                change: change,
                select: select,
                dataSource: preSelected,
                dataValueField: returnField,
                value: preSelectedObjectSids,
               dataTextField: "DisplayName"               
            }).data("kendoMultiSelect");
    ms.setDataSource(ds);

Now, The above operations has stopped working due to upgrade in its version to 2016.1.226

Tried to set multiselect value i.e. ms.value(preSelectedObjectSids) but it doesn't work.

when i remove  ms.setDataSource(ds) from above code, kendomultiselect holds the pre-loaded value but then it changes the entire datasource to single pre-loaded value. Obviously i cannot search or set any other value further in the multiselect

Is this known issue in latest kendo UI version 2016.1.226?

Could you suggest what i can try to fix this problem?
Georgi Krustev
Telerik team
 answered on 30 Aug 2016
5 answers
340 views

When I'm using Angular Grid I'm getting an error in console  each time the grid loads as "Cannot read property 'removeClass' of null"  .This was getting in the console when I use persist state for grid.

I'm using set options method to set local storage data to grid.

 
  var options = localStorage"departmetsOptions"];
   var response = JSON.parse(options);
   $scope.departmets.setOptions(response);
Here the "setOptions" method is internally calling read method and it is throwing the above exception. Is there any other method to persist the state of grid so that we can avoid this console error.

Please assist to fix the issue.

Konstantin Dikov
Telerik team
 answered on 30 Aug 2016
16 answers
2.1K+ views

I am trying to do this

http://demos.telerik.com/aspnet-mvc/dropdownlist/serverfiltering

 It looks like I dont have to have any special action in the controler

This is my ddl

 

@(Html.Kendo().DropDownList()
                  .Name("commonCreditorID")
                .DataTextField("CREDITOR_NAME")
                .DataValueField("COMMON_CREDITOR_ID")
          .HtmlAttributes(new { style = "width:250px" })
          .Filter("contains")
          .DataSource(source =>
          {
              source.Read(read =>
              {
                  read.Action("CommonCreditors_Read", "Home");
              })
              .ServerFiltering(true);
 
          })
        )

this is my action

public ActionResult CommonCreditors_Read()
{
    GetLoggedUser("/");
    EntitiesModel entities = new EntitiesModel();
 
    var creditors = entities.TBL_COMMON_CREDITORS_LISTs
                    .Where(cc => !cc.OUT_OF_USE)
                    .OrderBy(o => o.CREDITOR_NAME)
                    .Select(cc => new { cc.CREDITOR_NAME, cc.COMMON_CREDITOR_ID });
    return Json(creditors, JsonRequestBehavior.AllowGet);
}

it isnt filtering when I type..any ideas?

Dimiter Madjarov
Telerik team
 answered on 30 Aug 2016
1 answer
345 views
I need to set width/height in em. How can I do it?
Ianko
Telerik team
 answered on 30 Aug 2016
9 answers
427 views
Hi, I'm using 2014.Q3 release without service packs.  My current issue with the grid persist state feature is that it blows up when trying to retrieve any date filter values.  Any issues?  

See error and break point below:
Unhandled exception at line 702, column 1 in Function code

0x800a01b6 - JavaScript runtime error: Object doesn't support property or method 'toLowerCase'

function anonymous(d, __f, __o) {
return (d.Enabled == true && (d.DateCreatedDate || '').toLowerCase() == '2015-01-22t05:00:00.000z')
}
Jay
Top achievements
Rank 1
 answered on 29 Aug 2016
1 answer
202 views

Hi

I have a Kendo Grid that has a Column which has had the filter customised to be a drop down select instead of a text box.  This works perfectly until you save the grid layout, after that the standard filter is being shown.

Can anyone explain to me how I deal with this?  It also seems to affect my custom groupHeaderTemplates too.

Many Thanks

Mike

Dimiter Topalov
Telerik team
 answered on 29 Aug 2016
1 answer
178 views

kendo messages file contains if check for widget loaded. So I cannot load it once globaly (or maybe I'm wrong),

Could you advice how to load this file to affect all widgets, that are loaded dynamically in spa application? Is the only option to load it every time? which can be problematic

 

Kind Regards?

Petyo
Telerik team
 answered on 29 Aug 2016
1 answer
184 views

 Have a grid that I'm currently filling out via Angular like so:

              <tbody>
                        <tr ng-repeat="customer in customers | orderBy: 'domain'" ng-if="customer.email"  >
                            <td>{{customer.namebspr}}</td>
                            <td>{{customer.nummer}}</td>
                            <td>{{customer.domain}}</td>
                            <td>{{customer.domain2}}</td>
                            <td>{{customer.domain3}}</td>
                            <td>{{customer.domain4}}</td>
                            <td>{{customer.domain5}}</td>
                        </tr>
                    </tbody>

 

Can I do the same thing with a spreadsheet, or do I need to pull the json data directly?

 

 

 

Alexander Popov
Telerik team
 answered on 29 Aug 2016
5 answers
341 views

Click here to view dojo.

The date labels at the bottom are wrong. They should all be five days apart, but the labels "11-06-16" and "11-10-16" are only four days apart. This messes up the remaining date sequence.

I also noticed this. The second task's (JP task) bar representation does not go from beginning to end dates, but the first task (Ted task) displays properly.

Please advise.

Thank you for your help with this matter.

 

T. Tsonev
Telerik team
 answered on 29 Aug 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
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?