Telerik Forums
Kendo UI for Angular Forum
1 answer
624 views
How can we change the sorting behavior on the Grid and make it sort by combo text field instead of value field?

I have a combo column, the value field is the id and the text field of the combo is loaded after getting the data of the combo
When sorting the sort is done by id which produce a wrong layout (because text is shown on the grid and not the id )

How can I solve this issue?
Dimiter Topalov
Telerik team
 answered on 02 Jul 2018
1 answer
881 views

Hi, 

 

Why is there no valueTemplate for the combobox component ? This is a must have. It is available in the DropDownList but not in ComboBox...
So withing the combobox, I can customize the itemTemplate but I want the value text to be the same as the item text. 

Actually, for each item, I concatenate several string representing different attributes of the object.

I want to be able to display the same information when the item is selected (ValueTemplate). 

For example, consider an object : 

country = {

  code: US

  longCode: United-Stated

}

I want to be able to display "United-States - US", both in the list and in the value when the item is selected.

Thanks in advance. 

Alexander Popov
Telerik team
 answered on 02 Jul 2018
5 answers
874 views

Why the output of this line new FormControl(new Date(2018, 05, 14)), 2018/05/15? Why it add a day to the date?


Daniel
Telerik team
 answered on 29 Jun 2018
2 answers
869 views

Could you tell me how to style the label to not overlay with the negative value on a horizontal bar chart?

(see chart image attached)

Thank you.

 

Chau
Top achievements
Rank 1
 answered on 28 Jun 2018
1 answer
161 views
What's the best way to specify the target attribute for a menuItem with url set so the link is opened in a new window?
Jacky
Top achievements
Rank 1
 answered on 28 Jun 2018
4 answers
174 views
How we can implement same chart as below link with angular
https://docs.telerik.com/kendo-ui/knowledge-base/chart-how-to-draw-a-custom-target-line-over-a-bar

Also there tooltip is not coming.How We can get tooltip for both bar graph Current value and target value. We are only getting value but not value.target in tooltip

Thanks
software
Top achievements
Rank 1
 answered on 28 Jun 2018
3 answers
82 views

Hi,

How to customize the multiseries vertical bullet chart target value. and add tooltip for target

As below example target value is taking full width 

http://dojo.telerik.com/@tmplgis@gmail.com/OjubuBaB

software
Top achievements
Rank 1
 answered on 28 Jun 2018
5 answers
143 views

In my requirement, I need to display both Room Number and Room Type on the side of the scheduler. Though I did achieve this by vertical grouping now I want is split that Room Column into Two so that on one side it shows Room Number and on the other Room Type. Please see the image for reference

I was able to achieve this with a custom field in the resource array 
My Example

But I need it like in the image attached

Thanks 
Ivan Zhekov
Telerik team
 answered on 28 Jun 2018
3 answers
615 views

Hi Everyone,

I'm using Angular 6 and Kendo UI for Angular. 

When I have chart with more than one series item in it, tooltips are not shown. They are appear for a microsecond(you cant see the full content of a tooltip) then it disappears and then it is redrawn again. So every time I hover over the chart area, the tool tip is redrawn multiple times (it doesnt stop while I hover).

Any help would be much appreciated.

 

The component HTML is:

 

  <div class="row">
    <div class="col-lg-12 text-center pv-lg col align-self-center">
      <!-- <kendo-chart class="catProdSales" [transitions]="false"> -->
      <kendo-chart [transitions]="true">
        <kendo-chart-area background="none" [height]="height"></kendo-chart-area>

        <kendo-chart-tooltip format="Default Content {0}" [shared]="true">
        </kendo-chart-tooltip>

        <kendo-chart-legend position="right" orientation="vertical">
        </kendo-chart-legend>

        <kendo-chart-value-axis>
          <kendo-chart-value-axis-item>
            <kendo-chart-value-axis-item-labels culture="en-GB" format="c">
            </kendo-chart-value-axis-item-labels>
          </kendo-chart-value-axis-item>
          <kendo-chart-value-axis-item name="secondAxis">
            <!-- <kendo-chart-value-axis-item-labels culture="en-GB" format="c">
                      </kendo-chart-value-axis-item-labels>                   -->
          </kendo-chart-value-axis-item>
        </kendo-chart-value-axis>

        <kendo-chart-category-axis>
          <kendo-chart-category-axis-item [labels]="categoryAxisLabelConf" [categories]="data?.LabelData.slice(1)" [axisCrossingValue]="[0, 1110]">
          </kendo-chart-category-axis-item>
        </kendo-chart-category-axis>

        <kendo-chart-series>
          <kendo-chart-series-item type="column" [data]="data?.ColumnData?.slice(1)" axis="secondAxis" name="Packs">
            <kendo-chart-series-item-tooltip>
              <ng-template let-value="value">
                {{ value
                < 1000 ? value : (value / 1000).toFixed(1) + 'k' }} </ng-template>
            </kendo-chart-series-item-tooltip>
          </kendo-chart-series-item>
          <kendo-chart-series-item *ngFor="let item of data?.LineData;" type="line" [data]="item.slice(1)" [name]="item[0]">
            <kendo-chart-series-item-tooltip>
              <ng-template let-value="value">
                {{ value
                < 1000 ? value : (value / 1000).toFixed(1) + 'k' }} </ng-template>
            </kendo-chart-series-item-tooltip>
          </kendo-chart-series-item>
        </kendo-chart-series>
      </kendo-chart>
    </div>
  </div>

Daniel
Telerik team
 answered on 28 Jun 2018
1 answer
189 views
Hi,
Currently I'm using kendo.all.min.js in our application which is load from overrides in bower.json.But whenever I tried to load only the required packages like kendo.datepicker.min.js, kendo.scheduler.min.js etc in the bower.json file the applications shows module error with kendo.directive.

Is it possible to load separate packages for each component without causing module error or is it better to load only kendo.all.min.js file?
Which way is better for performance in application?
Bozhidar
Telerik team
 answered on 27 Jun 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?