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
Can I use RadClientDataSource for binding hierarchical grid? do you have any working example?
I tried creating the one with NestedViewTemplate like below ( just skeleton),
<telerik:RadGrid ClientDataSourceID="RadClientDataSource1">
<MasterTableView>
<Columns></Columns>
<NestedViewTemplate>
<telerik:RadGrid ClientDataSourceID="RadClientDataSource2"/>
</NestedViewTemplate>
</MasterTableView>
</telerik:RadGrid>
I got multiple issue listed below, so I just want to check whether is it possible to use this option for hierarchical binding? if not do you have any other alternative option using client side binding?
1. When I change the pagesize from 10 to 20, expand icon was not appearing for the records starting from 11 to 20.
2. When I expand the first record in first page, then move to next page, expanded record doesn't collapse and it shows in next page as well.
3. When an expand command is fired then both the MasterView and Nestedview get refreshed, not retaining the state, say if I expand second page record, grid goes to first page