Telerik Forums
Kendo UI for Angular Forum
1 answer
301 views

https://www.telerik.com/kendo-angular-ui/components/scheduler/views/month/#toc-configuration

When viewing the monthly in the first example on the page above, it is set to June 2021.  The last full row is all July dates.  I tested a few different months and they have that issue where the last calendar row is a complete week for the next month.  How can I disable this?  I understand that it's typical to show next months days when you have current and next month on the same row such as 28/29/30/1/2/3 but this issue doesn't have that overlap, it it just displaying next months dates completely.

Martin Bechev
Telerik team
 answered on 03 Feb 2021
0 answers
157 views
I have 2 charts (of any type).
I would like to define a scroll bar for both.
and make sure when I move one to the right the other does the same. then 2 synchronized scrollbars. Is it possible to do this via some kendo attribute, widget or other?
alex
Top achievements
Rank 1
Iron
Veteran
 asked on 03 Feb 2021
1 answer
199 views

When is the splitter pane event 'sizeChange' fired? Before or after rendering the new html content? Same question on 'layoutChange'!

Dimiter Madjarov
Telerik team
 answered on 03 Feb 2021
3 answers
732 views

Hi!

Is it possible to show the small busy indicator from the Treeview when its programmatically expanded like in the following example when double clicked the item

https://stackblitz.com/edit/angular-6n5745?file=app/app.component.ts

Dimitar
Telerik team
 answered on 03 Feb 2021
1 answer
980 views

I am using multi-column-headers and, as per the standard grid column, I can change the header template which is all fine. Corresponding to this, I would also like to be able to add a footer for the column-group but this isn't documented.

https://www.telerik.com/kendo-angular-ui/components/grid/columns/headers/

 

 

Is there a suitable work-around to achieve something similar? I'm aware I could put everything into the header, or use one of the child column's footer template. That latter doesn't really work as the item I want to add really applies to the entire group.

Ideally I am looking for something as in my attached wireframe - cell in yellow.

 

Martin Bechev
Telerik team
 answered on 02 Feb 2021
0 answers
98 views

Hi,

Is there any way we can prevent paragraph styles getting copied to new lines when the user clicks enter on Kendo editor?

Right now, if I click enter from a Paragraph <p style="margin:left: 30px"> </p>, the margin left is copied over to new line.

Thank you,
Sujish

Sujish
Top achievements
Rank 1
Veteran
 asked on 01 Feb 2021
0 answers
253 views
<kendo-grid [kendoGridGroupBinding]="data"
            [sortable]="{allowUnsort : false, mode : 'single'}"
            [sort]="sort"
            (sortChange)="sortChange($event)">

 

sortChange(sort: SortDescriptor[]): void {
    const sortField = sort[0].field;
    const sortOrder = ["car", "boat", "aircraft"];
    const sortDir = sort[0].dir;
 
    const ordering = {};
    for (let i = 0; i < sortOrder.length; i++) {
        ordering[sortOrder[i]] = i;
    }
 
    let sorted = this.data.sort((a, b) => {
        return (ordering[b[sortField]] - ordering[a[sortField]]);
    });
    if(sortDir === 'desc'){
        sorted = sorted.reverse();
    }
            this.gridData = sorted;
}

 

 

im trying to sort the grid by custom order but when i set the 'sort' variable it ignores my function

yair
Top achievements
Rank 1
 asked on 01 Feb 2021
1 answer
98 views

Hi,

1. When will the webinar content be available on the Kendo UI YouTube channel?

2. How/where can I see the questions/answers that were displayed in the sidebar during the webinar? I was reading through them but accidentally closed the browser and couldn't find them anymore.

Thanks.

Martin Bechev
Telerik team
 answered on 01 Feb 2021
1 answer
847 views

Hi, 

 

I need to expand the list of items by clicking on the node, like clicking on the icon (example.png).

Hetali
Telerik team
 answered on 28 Jan 2021
1 answer
1.3K+ views

hi,

I would like to apply a color as the background of the whole graph.

<kendo-chart>
        <kendo-chart-title text="Units sold"></kendo-chart-title>
        <kendo-chart-category-axis>
            <kendo-chart-category-axis-item [categories]="['Q1', 'Q2', 'Q3', 'Q4']">
            </kendo-chart-category-axis-item>
        </kendo-chart-category-axis>
        <kendo-chart-series>
          <kendo-chart-series-item type="bar" [gap]="2" [spacing]=".25" [data]="[100, 123, 234, 343]">
          </kendo-chart-series-item>
          <kendo-chart-series-item type="bar" [data]="[120, 67, 231, 196]">
          </kendo-chart-series-item>
          <kendo-chart-series-item type="bar" [data]="[45, 124, 189, 143]">
          </kendo-chart-series-item>
          <kendo-chart-series-item type="bar" [data]="[87, 154, 210, 215]">
          </kendo-chart-series-item>
        </kendo-chart-series>
      </kendo-chart>

something like attached file

 

 

 

 

Hetali
Telerik team
 answered on 28 Jan 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?