Telerik Forums
UI for ASP.NET Core Forum
2 answers
207 views

How to set DataTextField of ListBox dynamically

I have a listbox control as

@(Html.Kendo().ListBox()
        .Name("ListboxCompany")
        .Selectable(ListBoxSelectable.Single)
            .DataTextField("name")
            .DataValueField("Id")                       
            )
            .BindTo(Model)       
        )

 

and

created a radiobuttongroup.  So how I can change DataTextField with the value checked from radiobuttongroup

 

Antony
Top achievements
Rank 1
 answered on 26 Mar 2018
1 answer
172 views

Is there any plans to port the File Explorer control in the asp ajax suite to Asp.Net Core?

Thanks,

Richard

Dimitar
Telerik team
 answered on 26 Mar 2018
3 answers
525 views

Hi,

how to setup margin element for PDF export using tag helpers? 

<pdf 
                    all-pages="true" 
                    avoid-links="true"
                    landscape="true"
                    repeat-headers="true"
                    paper-size="A4"
                    scale="1"
                    template-id="pdf-export-template" 
                    file-name="Example.pdf" 
                    proxy-url="PdfExport"
                    margin="????"/>

Kind regards,
Asmir

Viktor Tachev
Telerik team
 answered on 23 Mar 2018
2 answers
635 views

I have a grid showing data and the Edit brings up a wrapper editor for that type in the shared folder.  Which is done automatically if the template name matches the class name.

The problem is that the update button does not fire the controller action

 

public async Task<ActionResult> Distributors_Update([DataSourceRequest]DataSourceRequest request,
[Bind(Prefix = "models")] IEnumerable<Distributor> distributors)

 

The Read action is working and again the custom type template is being used but no update action firing.

 

Any help would be appreciated.

Stefan
Telerik team
 answered on 23 Mar 2018
2 answers
2.1K+ views

Hello,

i try to set row color on  conditions  in the dataBound event. But only in my first row the Color will set.


                    var grid = $('#@Model.Id()_grid').data("kendoGrid");
                    var gridData = grid.dataSource.view();

                    for (var i = 0; i < gridData.length; i++) {
                        var currentUid = gridData[i].uid;
                        var currentRow = grid.table.find("tr[data-uid='" + currentUid + "']");

                        if (gridData[i].Condision != 0) {
                            $(currentRow).addClass("Color"); //in css
                        }

                    }

 

I can not find the issure.

Thanks

Pamela

                

Pamela
Top achievements
Rank 1
 answered on 21 Mar 2018
2 answers
166 views

How can I change the foreground color of the button that represents the grouped column when the user drags that column header into the Grouping bar on top of the grid?  The "ADD NEW RECORD" and other buttons above it show a foreground color of white, but the buttons is unreadable with a light gray background.

Any suggestions would be appreciated.

Thanks

Stefan
Telerik team
 answered on 21 Mar 2018
3 answers
699 views

Hi, I followed this doc page: https://docs.telerik.com/aspnet-mvc/helpers/window/using-forms-in-window

And it doesn't seem to work correctly. It executes the form's target action, but then just displays the returned <script> tag in the window rather than actually executing it.  Additionally, after manually closing the window, when I re-open it, the window content doesn't refresh automatically. What am I missing?

Veselin Tsvetanov
Telerik team
 answered on 21 Mar 2018
2 answers
330 views

The Components PDF EXPORT does not seem to exist in Telerik UI for ASP.NET Core. I'm right?

How can I convert a html page to pdf?

How can I create a kind of report view?

Thank you

With best regards

 

Marco Dalla Libera

Roberto
Top achievements
Rank 1
 answered on 20 Mar 2018
1 answer
153 views

I have a  View with that I am injecting a service using @inject . The service provides Lookup list data that is not provided from the controller.

i.e. @inject ProfileOptionsData options

How would I set the datasource property to bind  the dropdownlist to a method from this service?

 

Thank you

Ianko
Telerik team
 answered on 15 Mar 2018
1 answer
377 views

I have a problem configuring the MultiSelect using the taghelpers, while the htmlhelpers give me no problem at all.
I get no data in the multiselect when using the taghelper, while the htmlhelper does.
Any ideas ?

Example:
HtmlHelper:     

@(Html.Kendo().MultiSelect()
            .Name("roleSelect")
            .DataTextField("roleName")
            .DataValueField("id")
            .DataSource(source =>
            {
              source.Read(read =>
              {
                read.Action("GetAvailableRoles", "Users");
              });
            })
)

 

Taghelper: 

<kendo-multiselect name="roleSelect2" datavaluefield="id" datatextfield="roleName">
  <datasource type="DataSourceTagHelperType.Ajax">
    <transport>
      <read url="@Url.Action("GetAvailableRoles", "Users")" />
    </transport>
  </datasource>
</kendo-multiselect>

 

 

 

Neli
Telerik team
 answered on 13 Mar 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?