Hi,
We have a problem with captcha in Production environment. In development and testing is working fine.
In production we have a webapp in port 1800 for administration and a extended site in port 80 for anon users, when you access via 80 the captcha does not display the image and is returning error 401. http://www.molymet.cl/es/Paginas/Contact-Us.aspx
I'm attaching both webconfig.
Hi Folks, I could not able to find a relevant answer in the forum and hence I am posting this question.
I have a requirement where I need to highlight some part of the text within a cell. Please find the attachment. Any help on this matter is highly appreciated.
Thanks in advance.

Hi
I am trying to pass selected index via client side function with below code
<telerik:RadButton ID="btnDeliverySetting" ClientIDMode="Static" OnClientClicking="function(button,args){getRadTabStrip('<%=NotificationsWizardTS.SelectedIndex%>','<%=NotificationTypesTS.SelectedIndex%>');}" runat="server" Text="Continue" ButtonType="StandardButton" CssClass="btn_Normal">
</telerik:RadButton>
and at client side my function is as under
function getRadTabStrip(NotificationsWizardTSIndex, NotificationTypesTSIndex) {
alert("Wizard" + NotificationsWizardTSIndex);
alert("Type" + NotificationTypesTSIndex);
}
This is alerting just string "Wizard<%=NotificationsWizardTS.SelectedIndex%>" and "Type<%=NotificationsTypeTS.SelectedIndex%>"
How can i pass indexof both selected tabs?
The Issue: I'm loading a page, and the grid is loading in edit form. Editing In Place. Everything load correctly. The binding occurs, I can debug and see the rows in the grid. However, in the UI the rows are Blank. No data appears in the edit text boxes or even labels. If I remove the EditMode on load, everything appears correctly.
I'm binding the grid to a list in the NeedDataSourceEvent
I'm using the IteamCreated and PreRender to make all rows editable on load as directed here : http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/how-to/data-editing/put-all-items-in-edit-mode
What am I missing? Do I need to rebind the editform on the ItemDataBound event or something?

Hello Team,
I have a client requirement to add a scanning check on upload control like when we attach any document on gmail then gmail upload control start scanning before upload.
Thanks
Afroz Khan
Hi,
I have a RadGrid with a few columns:
<telerik:GridBoundColumn HeaderText="LOC" DataField="HomeLoc" UniqueName="HomeLoc" ReadOnly="True" SortExpression="HomeLoc" HeaderButtonType="TextButton" ItemStyle-HorizontalAlign="Center" HeaderStyle-HorizontalAlign="Center" >
</telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="YTD HRS" DataField="TotHrs" UniqueName="TotHrs" ReadOnly="True" SortExpression="TotHrs" HeaderButtonType="TextButton" ItemStyle-HorizontalAlign="Center" HeaderStyle-HorizontalAlign="Center" >
</telerik:GridBoundColumn>
When I export RadGrid to excel I need based on criteria highlight entire row in excel:
if TotHrs > 500
highlight entire row.
How it can be done.I try event ExportCellFormatting but it is not working.
protected void PSEmplGrid_ExportCellFormatting(object sender, ExportCellFormattingEventArgs e)
{
GridDataItem item = e.Cell.Parent as GridDataItem;
if (e.FormattedColumn.UniqueName == "TotHrs")
{
e.Cell.Style["background-color"] = "Red";
}
}
Thank you.