or



foreach (GridItem item in radgrdResultDetail.MasterTableView.Items) { if (item is GridEditableItem) { GridEditableItem editableItem = item as GridDataItem; editableItem.Edit = true; } }if (Item["Status"].Text == "Reject") { foreach (GridColumn col in radgrdResultDetail.MasterTableView.AutoGeneratedColumns) { Item[col.UniqueName].ForeColor = Color.Red; } } }<p> <object width="100%" height="35"> <embed type="application/x-shockwave-flash" flashvars="audioUrl=http://www.eteacher.pro/Portals/0/SCO/FX0186/FX0186.mp3" src="https://www.google.com/reader/ui/3523697345-audio-player.swf" width="100%" height="27" quality="best"></embed> <noembed>Podcast player feature available on website only.</noembed> </object> <br> Click the PLAY button to listen to this podcast.</p><p><embed height="27" type="application/x-shockwave-flash" width="100%" src="http://www.google.com/reader/ui/3523697345-audio-player.swf" quality="best" flashvars="audioUrl=http://www.eteacher.pro/Portals/0/SCO/STR051/STR051.mp3" /><noembed /><br />Click the PLAY button to listen to this podcast.</p>
Hi,
I am using Telerk Web.UI.dll - version 2009.3.1103.35
I am using RadSpell to check spellings in multiple textboxes.
I would like to highlight the misspelled words in textboxes.
Is there a way to do that?
Following is the sample code.
Thanks,
Manisha
<telerik:RadSpell ID="RadSpellEval" runat="server" ControlsToCheck="txtJust1, txtJust2, txtJust3, txtJust4" ButtonType="ImageButton" ButtonText="" ToolTip="Spell Check" /> <table> <tr><td><asp:TextBox id=”txtJust1” runat=”server”></asp:TextBox></td></tr> <tr><td><asp:TextBox id=”txtJust2” runat=”server”></asp:TextBox></td></tr> <tr><td><asp:TextBox id=”txtJust3” runat=”server”></asp:TextBox></td></tr> <tr><td><asp:TextBox id=”txtJust4” runat=”server”></asp:TextBox></td></tr> </table> 