About the author

Vijay Kodali
E-mail me Send mail

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2024

The command SpellCheck is not implemented yet–Telerik editor

Error:

SNAGHTML1447a5e9[4]

 

Problem:

By default “Spell check” button uses “AjaxSpellCheck” not “SpellCheck “

 
  <telerik:EditorTool Name="SpellCheck" Enabled="true" />
 

Solution:

Use AjaxSpellchek

   <telerik:EditorTool Name="AjaxSpellCheck" Enabled="true" />


Categories: Asp.Net 4.5 | Telerik
Posted by Vijay on Tuesday, December 25, 2012 7:47 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Asp.net 4.5 Textbox–TextMode Property

ASP.Net 4.5 introduced more options to the Text Mode property: Color, Date, DateTime, DateTimeLocal, Email, Month, Number,Range, Search, Phone, Url, Week

 

image

 

But remember all these new options will work only with browsers supporting these HTML5 features (Ex: IE 10). For all other browsers these textbox's will behave as normal textbox.

Ps: Here is a nice website, where you can test your browser HTML5 features: http://html5test.com/


Categories: Asp.Net 4.5
Posted by Vijay on Thursday, November 29, 2012 5:55 PM
Permalink | Comments (1) | Post RSSRSS comment feed

Rad Editor loses its value on page postback

Problem:

RadEditor Content not saved on page postback.

 

Solution:

Add UseSubmitBehavior="false" to the button that’s causing page postback.

<asp:Button ID="Button1" runat="server" 
OnClick="Button1_Click" Text="Button1"  UseSubmitBehavior="false"  />

Posted by vijay on Monday, November 26, 2012 5:30 PM
Permalink | Comments (0) | Post RSSRSS comment feed