I have a repeater to list all products which contains pictures for each product
if I click product A which has 3 pictures, clicked the last pic, it shows properly
then I click product B which has 1 pictures, the page throws out error: index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
I believe the issue is on Proudct B, RadImageGallery still tries to show the third pic, and couldn't find it.

Am using neseted rad grid for data population. by defailut have setted .rgExpand, .rgCollapse
{
display: none;
}
using this able to see no expand or collapse option.
but i need based on child data need to enable expand & collapse option for particular rows in rad grid.(if no child data expand or collapse image shouldnt be there in grid row)
how to achieve this in Rad nested rad grid.
Hi Team,
In manual data editing, pressing Enter key in any of the input controls while editing a record triggers InitInsert command instead of the expected command e.g. PerformInsert, Update etc...
This is reproducible in the online demo as well. Steps to reproduce;
1- Edit a record.
2- Hit enter while Name input for instance is focused.
3- A postback is triggered and the command name about to be executed is InitInsert.
Is there a built-in approach to disable this behavior?

Hi
I am currently working on Scheduler, i want that scheduler give me option to print the appointments of current day shown in scheduler. How is it possible?
Thanks in advance
Best Regards
Akhtar Abbas
<telerik:GridTemplateColumn UniqueName="ForeignTranslation" AllowFiltering="true" FilterControlWidth="70px" HeaderText="dd"> <ItemTemplate> <asp:TextBox ID="txtTranslationText" AutoPostBack="true" runat="server" Height="44px" OnTextChanged="txtTranslationText_TextChanged" TextMode="MultiLine" ></asp:TextBox> </ItemTemplate> </telerik:GridTemplateColumn>OnTextChanged will save the data to DBTextBox tb = (TextBox)dataItem["ForeignTranslation"].FindControl("txtTranslationText"); tb.TabIndex = 1;OnTextChanged, then, the form did post back and the focus lost.Hi,
I have a javascript function (see below) that fires perform insert command for a data form. I am trying to pass the command argument of the button clicked to the ItemCommand event handler but somehow e.CommandArgument.ToString() tunrs out to be an empty string. Can anyone please guide me as to what i am doing wrong?
aspx:
function callSaveAll(sender,args) {
var object2 = $find("<%= OrderItemDataForm.ClientID%>");
if (object2._isItemInserted)
object2.fireCommand("PerformInsert", args._commandArgument);
}
.cs code:
protected void OrderItemDataForm_ItemCommand(object sender, RadDataFormCommandEventArgs e)I've got a RadNumericTextBox's in a grid and a client side "OnValueChanged" event. How can I get the data key for the row of the control when the event fires? How can I find other controls in the same row.
function onValueChanged(sender, args) {
}

Hi,
Is there a way to switch a radgrid's edit mode from InPlace to BatchEdit client side. My goal is to have a checkbox to enable Batch Editing. When A RadGrid on the page fires the ClientSide OnCommand event, i would like to enter InPlace or BatchEdit EditMode based on whether the checkbox is checked or not. My reasoning for this is that I have multiple RadGrid's on the page that will be controlled by the single checkbox.
Thanks,
Mike