Telerik Forums
Kendo UI for jQuery Forum
3 answers
597 views
Is there a way to style a kendo grid paging dropdown like a normal dropdown?
Nikolay
Telerik team
 answered on 19 Jan 2021
4 answers
2.3K+ views
I build and bind a DropDownList as listed below.

The "GetItemCategories" returns data I would like to sort before displayed in the DropDownList.

How do I do the sorting?

 
@(Html.Kendo().DropDownListFor(m => m.Category)
    .Name("Category")
    .DataTextField("Name")
    .DataValueField("Value")
    .HtmlAttributes(new { style = "width: 280px;" })
    .DataSource(source =>
    {
        source.Read(read =>
        {
            read.Action("GetItemCategories", "Helper");
        });
    })
    .Value(Model.ActionTimeFrameId.ToString())
)

 

 

 

Aleksandar
Telerik team
 answered on 18 Jan 2021
1 answer
352 views

Good afternoon,

We have an issue where the tooltip widget would hide when it shouldn't.

Please see:

https://dojo.telerik.com/oCuMidOL/5

If you hover over your mouse and then scroll the window, then the tooltip will hide (even though we have set autoHide: false).

How can we make this stay always visible? It should hide only if the "x" button is clicked.

 

many thanks

Alex

Aleksandar
Telerik team
 answered on 18 Jan 2021
3 answers
371 views

Hi,

the "previous" navigation button does not work in week or workWeek view. It works for day, month and agenda.

the "next" navigation button is fine, whereby i can still view the next week's schedule, just that after i navigate to the next week, i can't go back to the previous week. I have followed this https://docs.telerik.com/kendo-ui/api/javascript/ui/scheduler/events/navigate 

There is no error message in my case. Kindly assist me.

 

this is my code :

001.$("#scheduler").kendoScheduler({
002.        editable:{
003.            destroy: can_delete,
004.            update : can_update,
005.            create : can_create,
006.            template : $("#schedulerTemplate").html(),
007.        },
008.        date : new Date(dtFrom),
009.        startDate: new Date(dtFrom),
010.        startTime: new Date(new Date(dtFrom).getFullYear(), new Date(dtFrom).getMonth(),new Date(dtFrom).getDate(),7, 0, 0, 0),
011.        selectable:true,
012.        height: "max-height",       
013.        views: [
014.            {type : "day",
015.                selected:day_selected, allDaySlot:all_day_slot},
016.            {type : "workWeek",
017.                selected: week_selected,
018.                allDaySlot:all_day_slot,
019.                workDays: days_to_print, title: "Week"},
020.            {type : "month",
021.                selected : month_selected,
022.                adaptiveSlotHeight:true,
023.                eventSpacing: 5,
024.                eventsHeight: 55, },
025.            {type : "agenda",
026.                selected : agenda_selected},
027.                      
028.        ],
029.        toolbar: ["pdf","search"],
030.        pdf:{
031.            landscape: true,
032.        },       
033.        dataSource : {
034.  
035.            transport: {
036.                read : {
037.                    url: "/load_events_ajax_new/",
038.                    data: {
039.                        dtFrom: dtFrom,
040.                        dtUntil: dtUntil,
041.                        tz : G_timezone_offset,
042.                        timezone: $('#searchTimezone option:selected').val(),
043.                    },
044.                    dataType: "json",
045.                },
046.                update: {
047.                    url: "/update_events_ajax_new/",
048.                    dataType: "json",
049.                    complete : function(){
050.                        reload_data();
051.                    },
052.                },
053.                destroy: {
054.                    url: "/delete_events_ajax_new/",
055.                    dataType: "json",
056.                    complete : function(){
057.                        reload_data();
058.                    },
059.                },
060.                create : {
061.                    url : "/create_event_db/",
062.                    dataType : 'json',
063.                    complete : function(){
064.                        reload_data();
065.                    },
066.                },
067.                batch: true,
068.            },
069.             
070.            schema: {
071.                data: "events",
072.                model: {
073.                    id: "id",
074.                    fields: {
075.                        id: { from: "id",type:"number"},
076.                        title: { from: "title", validation: { required: true } },
077.                        start: { type: "date", from: "start" },
078.                        end: { type: "date", from: "end" },
079.                        description: { from: "description"},
080.                        location: {from: "location"},
081.                        creator: {from: "creator"},
082.                        isAllDay : {type : "boolean", from : "isAllDay"},
083.                        recurrenceId: { from: "recurrenceID" },
084.                        recurrenceRule: { from: "recurrenceRule" },
085.                        recurrenceException: { from: "recurrenceException" },
086.                        startTimezone: { from: "StartTimezone" },
087.                        ownerId: {from: "ownerId"},
088.                         
089.                    }
090.                }
091.            },
092.            filter: {
093.                logic: "or",
094.                filters: [
095.                ]
096.            }
097.        },
098.        navigate : function(e){
099.            reload_data();               
100.        },
101.        resources: [
102.            {
103.                field: "category_id",
104.                dataSource: category_datasource,
105.                multiple: false,
106.                title: "Category"
107.            }
108.        ],
109.    });
Petar
Telerik team
 answered on 15 Jan 2021
3 answers
1.6K+ views
Greetings,

How can I trigger a grid to export to pdf or excel manually. What functions are there to $('#Grid').Export() ? 

Have a good day
Georgi Denchev
Telerik team
 answered on 15 Jan 2021
2 answers
186 views

Want to change the position of series labels like attached image.

also label should not be on bar its should display the start of the both Plus and minus value bar.

And there are multiple charts show on tabs click and i want to target  series labels position for only minus value bar

Dojo Ex : https://dojo.telerik.com/akuquKUJ/2

Nikolay
Telerik team
 answered on 15 Jan 2021
3 answers
458 views
I want to access the specific column data in the specific row in the kendo grid.How I can access it.
Please help me.Thanks in advance.
Dimo
Telerik team
 answered on 15 Jan 2021
10 answers
508 views
Hi

Is it possible to show a tooltip for all series' values when hovering mouse anywhere in a category column as shown in attached illustration?
Specifically we are using date axis.
Thanks

V.
Ben
Top achievements
Rank 1
 answered on 14 Jan 2021
4 answers
141 views
How-to question in the title.
Thanks.
 Raido
Ben
Top achievements
Rank 1
 answered on 14 Jan 2021
7 answers
2.6K+ views

Hi,

Is there any way to turn off the builtin autocomplete feature for column filters? Previously, the workaround I used to disable that feature was using a empty datasource, but with the latest updates of KendoUI, that workaround no longer works.

Joe
Top achievements
Rank 1
 answered on 14 Jan 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?