I'm getting an error with Telerik

1 Answer 546 Views
General Discussions
Alan
Top achievements
Rank 1
Alan asked on 21 Oct 2021, 07:15 PM

When I run my project I'm getting this error

Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

In my web.config I checked that the version in the web.config is the same as the version I'm using in references

<assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2020.2.617.45" newVersion="2020.2.617.45" />

 

1 Answer, 1 is accepted

Sort by
1
Vessy
Telerik team
answered on 22 Oct 2021, 07:15 AM

Hello Alan,

I have just answered your other ticket on the matter, you can access it here:

https://www.telerik.com/forums/could-not-load-file-or-assembly-telerik-web-ui-or-one-of-its-dependencies-the-located-assembly-s-manifest-definition-does-not-match-the-assembly-refer

Regards,
Vessy
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

anna
Top achievements
Rank 1
Bronze
Iron
commented on 21 Jan 2022, 12:42 PM | edited

Attached File : ex.png

telerik:RadGrid (ASP.NET Web)

I want to get the header name of the column clicked by the user with the mouse.

<ClientSettings EnablePostBackOnRowClick="true">  
<Selecting AllowRowSelect="true" /> 
</ClientSettings>   

 protected void RadGrid1_SelectedIndexChanged(object sender, EventArgs e)
        {
            var dataItem = gv.SelectedItems[0] as GridDataItem;
            if (dataItem != null)
            {
                var name = dataItem["ColUniqueName"].Text;
            }
        }
The above source code is not what I want.
Because the user specified ColUniqueName .
I want to automatically get the coordinates of Row and Column&Column HeaderName when the mouse cursor is placed on the Cell of RadGrid.

Vessy
Telerik team
commented on 24 Jan 2022, 06:04 PM

Hello anna,

We would like to kindly ask you to post your questions only once and make sure that the chosen threads are matching the problem faced by you. You can find the answer to the question above in the thread below:

https://www.telerik.com/forums/radgrid-i-want-to-automatically-get-the-coordinates-of-row-and-column-when-the-mouse-cursor-is-placed-on-the-cell-of-radgrid

Tags
General Discussions
Asked by
Alan
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Share this question
or