Good morning,
recently I downloaded latest version of Telerik dll files (2022.1.302.40) into my local machine. Change my web config files to pickup latest version:
<dependentAssembly>
<assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" />
<bindingRedirect oldVersion="2022.1.119.40" newVersion="2022.1.302.40" />
</dependentAssembly>
However when I begin to build solution received a lot of errors:
1.Namespace 'Telerik' could not be found(are you missing a using directive or an assembly reference?)
2.the type or namespace name 'Telerik' could not be found in the global namespace
3. When i open any aspx page see error: Could not load or assembly 'Telerik.Web.UI, version =2022.1.119.40 or one of its dependencies.
For some reason i think it is pointing to the previous version but cannot find where.
Please help me out with this.
Thanks.
Vitaly.
By default, RadSpell offers the following three dictionaries: English (en-US), German (de-DE) and French (fr-FR). All other dictionaries are provided by our customers and can be downloaded from the links below:
Please, note that some of the dictionaries can be incomplete and they are not supported by Telerik. If you create a new properly working dictionary and share it with our community, we will gladly award you for your work.
Starting from Q3 2010, we provide support for NHunspell and OpenOffice dictionaries for RadSpell. You can find how to enable this feature in the following code library project: Using OpenOffice spell provider in RadSpell.
Best regards,
The Telerik team

When a user drags and drops a file from a third-party file management application we use into our own ticketing system the file is empty (0 KB in size). This is an issue with their application for which I'm building a workaround.
The RadAsyncUpload control allows this file to be added to the upload files collection, and uploaded to the site. An error is received when attempting to access this file, as one would expect.
Using the OnClientFileDropped event, I can read the file size property. If it's 0, add it to an array that is then read in the OnClientFileUploading event. If the current filename exists in this array, I cancel the upload.
My preference would be to handle this all within the OnClientFileUploading event. As of yet, I've been unable to read the file size within this event, and I'm presuming it is not available there.
Again, assuming I cannot get the file size property in this event, is there an event that occurs after the args.set_cancel(true) method is triggered, where I can remove these canceled uploads from the displayed list?

2022.1.119.45
<telerik:GridTemplateColumn UniqueName="CheckBoxTemplateColumn">
<ItemTemplate>
<asp:CheckBox ID="CheckBox1" runat="server" OnCheckedChanged="ToggleRowSelection"
AutoPostBack="True" />
</ItemTemplate>
<HeaderTemplate>
<asp:CheckBox ID="headerChkbox" runat="server" OnCheckedChanged="ToggleSelectedState"
AutoPostBack="True" />
</HeaderTemplate>
</telerik:GridTemplateColumn>
<input id="ctl00_ContentPlaceHolder2_grdAccounts_ctl00_ctl04_CheckBox1" type="checkbox" name="ctl00$ContentPlaceHolder2$grdAccounts$ctl00$ctl04$CheckBox1" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder2$grdAccounts$ctl00$ctl04$CheckBox1\',\'\')', 0)">
I've tried the template and the gridcheckboxcolumn.
Nothing displays no matter what approach I take. I am using a NeedDataSource method.
I've searched the forums and tried pretty much everything I've found.
Please help.
Thanks,
Jason

Could not find file 'F:\01MAR2022\App_Data\RadUploadTemp\1646320159823WOW Event Welcome Sign_Headshots.pdf.tmp'
What could be the cause of such error, time out?
Hi, I have a RadWindow which appears when the button is clicked.
The code in aspx is:
<telerik:RadWindow ID="rwSubmitForReview" Title="Submit For Review" runat="server" Localization-PinOff="Pin off" Width="305px" Height="250px" InitialBehaviors="Pin" >Code in aspx.cs is
string script = "function f(){$find(\"" + rwSubmitForReview.ClientID + "\").show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);";
ScriptManager.RegisterStartupScript(this, this.GetType(), "key", script, true);When i start to scroll down in the main page, the window disappears and i notice the top attribute follows the scroll? Please refer to the red highlighted line. How can I make it stop scrolling?
The telerik version is 2022.1.119.40.
I'm new in java script code i can't understand in the following code what is 'demo' is it the page or browser or what
demo.lightBox = $find("<%=RadLightBox1.ClientID %>");

hi sir,
I use the below code in server side to get the control id in child page while radcombox control in master page.
Dim radcmbx As RadComboBox = CType(Page.Master.FindControl("Database_List"), RadComboBox)
So how i get master page control id from separate JavaScript file using javascript or jquery,
The configuration section 'telerik.web.ui' cannot be read because it is missing a section declaration" in Web.config

hi sir,
I need to get the set the value for master page control like this
Dim radcmbx As RadComboBox = CType(Page.Master.FindControl("Database_List"), RadComboBox)
But how we get the value in javascript.
Please give me a solution ASAP