Sometimes i would like to update control without displaying spinning icon
Is there a way?
Thank you
Hi,
is it possible to make one click (on left pane, tree view) to open containing structure of files on right grid pane but not expanding the tree on left
and make double click to expand the tree on left pane without listing anything yet on right grid? (something like in window's explorer)
thanks

How remove the gridlines in RadFileExplorer?
Using Skin="Office2007"


I have one scenario where the Telerik RAD gridview has 2 rows.
Gridview having data as like I have mentioned below.
COLUMN1 COLUMN2 COLUMN3 COLUMN4 COLUMN5 COLUMN6
a b TEXTBOX1 TEXTBOX2 TEXTBOX3 TEXTBOX4
a b TEXTBOX5 TEXTBOX6 TEXTBOX7 TEXTBOX8
COLUMN 3 to COLUMN 6 having texbox where the values are entered by the user
The user enters a value for TEXBOX1, TEXBOX2, TEXBOX3, TEXBOX4, TEXBOX5, TEXBOX6, TEXBOX7, TEXBOX8
COLUMN 1 and COLUMN 2 of ROW 1 and ROW 2 will have the same value as mentioned.
I need to know how to add a new row in the grid if the button is clicked
And the entered value should not get affected. It should be present.
The new row should be added with COLUMN1 and COLUMN 2 having same name as that of the ROW 1 and ROW 2
After clicking on the button the new row should be like below
COLUMN1 COLUMN2 COLUMN3 COLUMN4 COLUMN5 COLUMN6
a b TEXTBOX1 TEXTBOX2 TEXTBOX3 TEXTBOX4
a b TEXTBOX5 TEXTBOX6 TEXTBOX7 TEXTBOX8
a b TEXTBOX9 TEXTBOX10 TEXTBOX11 TEXTBOX12
When the new row is added the user entered value for TEXBOX1,
TEXBOX2, TEXBOX3, TEXBOX4, TEXBOX5, TEXBOX6, TEXBOX7, TEXBOX8 should not
get changed or should not get changed.
TEXTBOX9, TEXTBOX10, TEXTBOX11, TEXTBOX12 should be empty for entering value.
Even if the user clicks again the button the old rows should not get affected.
I want to know how to code for this in VB.NET since I am using telerik rad gridview

I have one scenario where the gridview has 2 rows like what i have attached.
Gridview having data as like I have mentioned in the file.
COLUMN 3 to COLUMN 6 having texbox where the values are entered by the user
COLUMN 1 and COLUMN 2 of ROW 1 and ROW 2 will have the same value as mentioned.
I need to know how to add a new row in the grid if the button is clicked
And the entered value should not get affected. It should be present.
The new row should be added with COLUMN1 and COLUMN 2 having same name as that of the ROW 1 and ROW 2
Even if the user clicks again the button the old rows should not get affected.

I have RadioButtonList with 2 items
<rad:GridTemplateColumn HeaderText="Modalidad" UniqueName="Modalidad">
<ItemTemplate>
<asp:Label runat="server" ID="lblModalidad" Text='<%# Eval("Modalidad") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:RadioButtonList runat="server" ID="rblModalidad" RepeatDirection="Horizontal"
AutoPostBack="true" OnSelectedIndexChanged="rblModalidad_SelectedIndexChanged1">
<asp:ListItem Text="Valor" Value="0"></asp:ListItem>
<asp:ListItem Text="Obligatorio" Value="1"></asp:ListItem>
</asp:RadioButtonList>
<asp:RequiredFieldValidator runat="server" ID="rfvRblModalidad" ControlToValidate="rblModalidad"
ErrorMessage="Debe seleccionar una Modalidad." Display="none"></asp:RequiredFieldValidator>
</EditItemTemplate>
</rad:GridTemplateColumn>
The radiobuttonlist with a RequiredFieldValidator in a EditItemTemplate, the Radgrid and the ValidationSummary is in side of a fieldset.
This RadioButtonList has a bit of logic in server side, and the visualization and server code works perfect.
If I use Ajax, the selected item set the "dot" but it disappears the dot, so if I do click a second time, then dot appears correctly
If I don't use Ajax, the dot appears correctly
<rad:RadAjaxManager ID="RajaxManager" runat="server" EnableAJAX="true"> <AjaxSettings> <rad:AjaxSetting AjaxControlID="fsGrilla"> <UpdatedControls> <rad:AjaxUpdatedControl ControlID="fsGrilla" LoadingPanelID="RadAjaxLoadingPanel" /> </UpdatedControls> </rad:AjaxSetting> </AjaxSettings> </rad:RadAjaxManager> <rad:AjaxLoadingPanel ID="RadAjaxLoadingPanel" runat="server" Transparency="25" ZIndex="10"> <asp:Image ID="Image1" runat="server" ImageUrl="~/images/load.gif" AlternateText="Loading..."> </asp:Image> </rad:AjaxLoadingPanel>
Any ideas?
saludos
