Telerik Forums
UI for ASP.NET Core Forum
3 answers
509 views
Hello,

I created an edit-pop up template for a grid and when I try to edit the entry, the pop up works great. But the template is not loading when I click to add a new entry.

e.g.

Html.Kendo().Grid<Areas.TestArea.Models.RoleBasicFunctions>()
                                                .Name("RoleBasicFunctions")
                                               .Columns(columns =>
                                               {
                                                           columns.Bound(p => p.RoleBasicFunctionsID).Title("ID").Visible(false);
                                                           columns.Bound(p => p.EntityBasicInformation.EntityType.EntityTypeName).Title("Entity Name").HeaderHtmlAttributes(new { style = "white-space: normal" });
                                                           columns.Bound(p => p.EntityBasicInformation.Name).Title("Name").HeaderHtmlAttributes(new { style = "white-space: normal" });
                                                           columns.Command(command => { command.Edit().Text(" "); }).Width(80);
                                                       })
                                                .Pageable()
                                                .Sortable()
                                                .Scrollable()
                                                .Editable(editable => editable.Mode(GridEditMode.PopUp).DisplayDeleteConfirmation(false).TemplateName("EditRoleBasicFunctions").Window(ww => ww.Title("Edit").Width(1800)))
                                                .ToolBar(toolbar => toolbar.Create())
                                                .Filterable()
                                                .DataSource(dataSource => dataSource.Ajax()
                                                .Model(model =>
                                                {
                                                            model.Id(p => p.RoleBasicFunctionsID);
                                                        })
                                                .Read(read => read.Action("RoleBasicFunctionsGrid_Read", "Test").Data("additionalData")))

Viktor Tachev
Telerik team
 answered on 19 Jul 2019
2 answers
770 views

 

The column header is light gray as default, user ask me to make it darker. I tried some template, but failed. Could you educate me?

Thank you!

YN
Top achievements
Rank 1
 answered on 18 Jul 2019
0 answers
114 views

Question also listed on stack

https://stackoverflow.com/questions/57069066/net-core-create-tagbuilder-for-kendo-telerik-scrollview

I am trying to get Tagbuilder for Telerik ScrollView Component to work. Currently add Items is not working; it is not transmitting the image divs, and showing a blank page. How would I fix this? Enclosed is tagbuilder below. Am I missing variables or attributes ?
Ideal Telerik code is transmitting div data-role page. My code is transmitting li class scroll-view-page, which are not the right items.

 

JoeThomas
Top achievements
Rank 1
Veteran
 asked on 18 Jul 2019
2 answers
261 views
Setting a default value can be configured via the DefaultValue option in the DataSource Model configuration. My Code would look similar to this:
.DataSource(dataSource => dataSource
   .WebApi()
   .Create(create => create.Action("Create", "Home"))
   .Update(update => update.Action("Update", "Home"))
   .Read(read => read.Action("Read", "Home"))
   .Model(m => {
        m.Id(id => id.Id);
        m.Field(f => f.Name).DefaultValue("test");
    })
)
After I click on the "Add new record" button, the new row can display,but Name cann't display "test". why?
Boyan Dimitrov
Telerik team
 answered on 18 Jul 2019
2 answers
107 views
Using Change event for the grid to detect selection changes... but does it get fired when all rows are unselected..?  Such as when a filter is applied..?
Nikolay
Telerik team
 answered on 18 Jul 2019
2 answers
142 views
I am looking for the ScrollView Taghelper in Telerik Net Core.
For Button, it is ButtonTagHelper. I can all the corresponding members and parameters.
For Date, it is DatePickerTagHelper class.
What is it for ScrollView, I did not locate ScrollViewTagHelper class.
https://docs.telerik.com/aspnet-core/tag-helpers/media/scrollview/overview
Nikolay
Telerik team
 answered on 18 Jul 2019
4 answers
464 views

Hi ,

how to highlight today's date ?I mostly use the month view. Is it in CSS. or a property ?

Thanks, Peter

note  : I saw a tip for rad control , but i don't think this applies  https://www.telerik.com/forums/how-to-i-get-the-current-date-to-be-highlighted 

Peter
Top achievements
Rank 1
 answered on 17 Jul 2019
10 answers
277 views
Can I hide the summary and grand summary rows and columns?   I love the pivot capabilities, but in my case the summaries show averages of the averages which is not only unnecessary, it is incorrect.   Can you create a simple example where these are hidden/removed on databound event?  Thanks.
Alex Hajigeorgieva
Telerik team
 answered on 17 Jul 2019
9 answers
370 views

i have a KendoGrid with Batch editing ( in cell ) and one of the columns is KendoDropDownTree, when an item in the dropdowntree is selected that has childs then while saving the grid change all the childs of the selected item in the dropdowntree are posted to the action and that is wrong.

please i need help

thanks

 

regards

NoobMaster
Top achievements
Rank 2
Iron
 answered on 16 Jul 2019
8 answers
1.0K+ views

Getting started documentation for UI for ASP.NET Core shows how to use UI for ASP.NET MVC in ASP.NET Core projects. Does that mean there is no separate download for UI for ASP.NET Core? Does the same UI for ASP.NET MVC shared between ASP.NET MVC and ASP.NET Core projects?

Any differences between UI for ASP.NET Core and UI for ASP.NET MVC in terms of features and functionality?

Rumen
Telerik team
 answered on 15 Jul 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?