Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
50 views
Hi,

I am having a page called employee.aspx. from this page i am opening another page called employeedetails.aspx in the RADWINDOW.

i am performing continues operations in the employeedetails.aspx in the RADWINDOW.  

After that i am minimizing the RADWINDOW, and try to perform operations in the employee.aspx page, now the employee.aspx get refreshed and is not performing the initiated operations.

Can you please provide solution for this?

Thanks in advance. 

Marin Bratanov
Telerik team
 answered on 23 Jan 2012
6 answers
177 views
Have any property in radgrid to freeze the popup  with editing??? 

help me plz
Prava kafle
Top achievements
Rank 1
 answered on 23 Jan 2012
16 answers
461 views
hello i need to change the background color of my rad tooltip can anyone helps me please
i tried to put the name of the color insite the property but it didn t work

here is my code
ItemTemplate >
                <asp:HyperLink ID="HyperLink1" runat="server" Width="10px" Height="50px"
                   >
                   <asp:Image ID="Image2" runat="server" Width="90px" Height="120px" ImageUrl='<%# Eval("imgFile") %>'  ToolTip="Show album"    RelativeTo="Element" Position="MiddleRight" EnableShadow="true"/> </asp:HyperLink>
                <telerik:RadToolTip ID="RadToolTip3" runat="server" TargetControlID="image2"
                    Animation="Slide" BackColor="Red"  Position="MiddleRight">
                </telerik:RadToolTip>
            </ItemTemplate>
Bozhidar
Telerik team
 answered on 23 Jan 2012
2 answers
105 views
The following piece of code is used to increase bullet number size along with content.
function OnClientCommandExecuting(editor, args) {
 
    var commandName = args.get_commandName();
 
    if (commandName == "RealFontSize" || commandName == "FontSize") {
        var selElem = editor.getSelectedElement(); //get the selected element
 
        var parentElem = selElem.parentNode;
 
        if (selElem.tagName == "LI" || selElem.tagName == "UL") {
            selElem.style.fontSize = _fontSizesPx[parseInt(args.get_value() - 1)];
            args.set_cancel(true);
        }
    }
}

Like follows, the font size of bullet number increased along with content. Please the attachment Output1

  
  1. One
  2. Two
  3. Third
  4. Four

I tried to apply the font size for overall content, but the font sized is applied only for the content and not for bullet/number.Refer the attachment Output2

Suggest how to fix this issue?

Rumen
Telerik team
 answered on 23 Jan 2012
3 answers
283 views
Hi,

I have used checkbox control inside gridtemplatecolumn of radgrid. I have used needdatasource for data binding. When i click on remove button on my page after selecting(checked) some grid row then checked status is lost after post back and no delete is performed.
Because needdatasource is called before Remove button's eventhandler.

Please suggest solution for this.

Regards,
Abhishek Dixit
Andrey
Telerik team
 answered on 23 Jan 2012
4 answers
58 views
I have been stuck with this problem for last couple of days , i have a rad grid it has a master table and a detail table ,there is a custom edit /insert form in the detail table , all the data entries in the detail table will occur through this form the form has some controls and a rad upload control , i have to implement required field validation on the rad upload control which is in the form tempelate , i have read the articles on your site explaining the use of custom validators to achieve the task , but here is the rub , when on server validation event i traverse through the grid it is returning all rows of the detail table but it is not returning the grid edit form item , as i have mentioned the rad upload is in the form item

here is the code that i have used on server validation event

    protected void Validatecustom(object source, ServerValidateEventArgs e)
        {
            e.IsValid = true;
           // List<GridDataItem> obj = rgridPersonalAssistant.MasterTableView.DetailTables[0].Items;


            
            foreach (GridDataItem masterrow in rgridPersonalAssistant.MasterTableView.Items)
            {
                List<GridTableView> cb = masterrow.ChildItem.NestedTableViews.Cast<GridTableView>().ToList();
                //rgridPersonalAssistant.e
                
                 
                //views[0].items
               
                foreach (var c in masterrow.ChildItem.NestedTableViews[0].Items)
                {

                    if (c is GridDataItem)
                    {
                        GridDataItem cc = c as GridDataItem;
                    }
                    if (c is GridEditFormItem)
                    {
                       // GridEditFormItem obj = c as GridEditFormItem;
                        GridEditableItem obj = c as GridEditableItem;
                       
                        foreach(TableCell cll in obj.Cells)
                        {
                            string s = cll.Text;
                        }
                        RadUpload objupload = (RadUpload)obj.FindControl("rfScannedDocument");
                        if (objupload != null)
                        {
                            int b = objupload.UploadedFiles.Count;
                            if (b == 0)
                            {
                                e.IsValid = false;
                            }

                        }



                    }


                }
            }

            




                   
Arsalan
Top achievements
Rank 1
 answered on 23 Jan 2012
1 answer
86 views
Hi,
I'm trying to implement the RadProgressArea with the Azure client Blob.UploadFromStream() method. I have two subs i'm using:
1) Button Click event - btnUpload_Click(sender.....), which calls the sub UploadFile(FileName, .....)
e.g.:
Protected Sub btnUpload_Click(sender As Object, e As EventArgs) Handles btnUpload.Click
Dim fileName as String = "file name"
Dim mySourceFilePath String = "file path"
............
UploadFile(mySourceFilePath, fileName)
......
End Sub

 Private Sub UploadFile(ByVal targetFolder As String, ByVal fileName As String)
' Get blob reference...
Dim myBlob As CloudBlob = GLB_blobContainer.GetBlobReference(...
' File stream...
Dim myFileStream As New FileStream(mySourceFilePath, FileMode.Open, FileAccess.Read)
Try
    blob.UploadFromStream(myFileStream)
Catch
..
End Try
End Sub
End


Can you please give me a tip on how to implement the RadProgressArea in this situation, as I am having trouble getting it to work for me?
Thank you very much!
Peter Filipov
Telerik team
 answered on 23 Jan 2012
5 answers
100 views
Hello all,

I have this page:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UpdateProblem.aspx.cs" Inherits="CellLab.WebForms.UpdateProblem" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadWindowManager ID="RadWindowManagerUI" runat="server">
	</telerik:RadWindowManager>
	<asp:Button runat="server" ID="hiddenTargetControlForModalPopup" style="display:none"/>
		<telerik:RadScriptManager ID="ScriptManager1" runat="server" 
			EnableTheming="True">            
		</telerik:RadScriptManager>    
                <p>
		            <asp:Label ID="LabelMsg" runat="server" Text="Label" Visible="false"></asp:Label>
		        </p>    
            <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" />
            <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
                <fieldset> 
			        <legend>Sample(s) information</legend> 
			        <p> 
				        <label class="demoHeaders"><b>Kit Number:</b></label>             
				        <asp:Label ID="LabelKitNumber" CssClass="demoHeaders" runat="server"></asp:Label>
			        </p>
			        <p> 
				        <label for="<%# DropDownListStudy.ClientID %>">Study: </label>             
				        <asp:DropDownList ID="DropDownListStudy" runat="server" AutoPostBack="True" onselectedindexchanged="DropDownListStudy_SelectedIndexChanged"></asp:DropDownList>  
				        <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="Study is required." Text="Study is required." ControlToValidate="DropDownListStudy" CssClass="validate_error" InitialValue="-1"></asp:RequiredFieldValidator>
			        </p>
			        <p> 
				        <label>Disease: </label>             
				        <asp:Label ID="LabelDisease" CssClass="demoHeaders" runat="server"></asp:Label>
			        </p>
			        <p> 
				        <label for="<%# TextBoxSite.ClientID %>">Site: </label>             
				        <asp:TextBox ID="TextBoxSite" CssClass="sf" runat="server"></asp:TextBox>
			        </p>
			        <p> 
				        <label for="<%# TextBoxFamNo.ClientID %>">Family number: </label>             
				        <asp:TextBox ID="TextBoxFamNo" CssClass="sf" runat="server"></asp:TextBox>
			        </p>
			        <p> 
				        <label for="<%# TextBoxIndNo.ClientID %>">Individual number: </label>             
				        <asp:TextBox ID="TextBoxIndNo" CssClass="sf" runat="server"></asp:TextBox>
			        </p>
			        <p> 
				        <label for="<%# TextBoxIndNo.ClientID %>">Notes: </label>             
				        <asp:TextBox ID="TextBoxNotes" CssClass="lf" runat="server" TextMode="MultiLine"></asp:TextBox>
			        </p>
			        <p> 
                        <label>Samples:</label><asp:LinkButton ID="LinkButtonAddEditSample" runat="server" CssClass="button" onclick="LinkButtonAddEditSample_Click" CausesValidation="false"><span class="ui-icon ui-icon-circle-plus"></span>Add Sample...</asp:LinkButton>                
			 		</p>                      
                    <telerik:RadTreeList ID="RadTreeListSamples" runat="server" AllowSorting="True" 
                        AutoGenerateColumns="False" CssClass="fullwidth" DataKeyNames="SampleNumber" 
                        EditMode="InPlace" onitemdatabound="RadTreeListSamples_ItemDataBound1" 
                        onneeddatasource="RadTreeListSamples_NeedDataSource1" 
                        onupdatecommand="RadTreeListSamples_UpdateCommand1" PageSize="15" 
                        ParentDataKeyNames="ParentSample" Skin="WebBlue" 
                        onitemcommand="RadTreeListSamples_ItemCommand">
                        <AlternatingItemStyle CssClass="odd" />
                        <Columns>
			                <telerik:TreeListBoundColumn DataField="DateReceived" UniqueName="DateReceived" HeaderText="Date Received" DataFormatString="{0:M/dd/yyyy}" HeaderStyle-Width="120"/>
			                <telerik:TreeListBoundColumn DataField="DateCollected" UniqueName="DateCollected" HeaderText="Date Collected" DataFormatString="{0:M/dd/yyyy}" HeaderStyle-Width="100"/>
			                <telerik:TreeListBoundColumn DataField="SampleNumber" UniqueName="SampleNumber" HeaderText="Sample Number" ReadOnly="true" />
			                <telerik:TreeListBoundColumn DataField="StatusId" UniqueName="StatusId" HeaderText="Status" HeaderStyle-Width="75" ReadOnly="true" />
			                <telerik:TreeListBoundColumn DataField="InitialAmount" UniqueName="InitialAmount" HeaderText="Initial Amount" HeaderStyle-Width="100"/>
			                <telerik:TreeListBoundColumn DataField="UnitId" UniqueName="UnitId" HeaderText="Units" HeaderStyle-Width="50" ReadOnly="true" />
			                <telerik:TreeListBoundColumn DataField="TubeTypeId" UniqueName="TubeTypeId" HeaderText="Tube Type" HeaderStyle-Width="100" ReadOnly="true"/>
			                <telerik:TreeListBoundColumn DataField="Notes" UniqueName="Notes" HeaderText="Notes" />
			                <telerik:TreeListBoundColumn DataField="ParentSample" UniqueName="ParentSample" HeaderText="Parent Sample" ReadOnly="true"/> 
			                <telerik:TreeListEditCommandColumn UniqueName="EditCommandColumn" ButtonType="LinkButton" ShowAddButton="false"/>                        
			                <telerik:TreeListTemplateColumn UniqueName="Deletecol" ReadOnly="true">
				                <ItemTemplate>
					                <asp:LinkButton ID="link1" Text="Delete" OnClientClick="if (!confirm('Are you sure?')) return false;"
						                CommandName="Delete" runat="server" />                        
						                <asp:HiddenField ID="ParentSample" Value='<%# Eval("ParentSample")%>' runat="server" />
				                </ItemTemplate>
			                </telerik:TreeListTemplateColumn> 
		                </Columns>
                        <NoRecordsTemplate>
                            <div class="message information">
						        <h2>No samples added yet.</h2>
						        <p>&nbsp;</p>
					        </div>
                        </NoRecordsTemplate>
                    </telerik:RadTreeList>
                </fieldset>
            </telerik:RadAjaxPanel>			   
            <ajaxToolkit:ModalPopupExtender ID="ModalPopupExtenderAddEditSample" runat="server"                
				TargetControlID="hiddenTargetControlForModalPopup"                
				PopupControlID="PanelSamples"
				BackgroundCssClass="modalBackground"                 
				DropShadow="true"                                
				>
				</ajaxToolkit:ModalPopupExtender>       
    </form>
</body>
</html>

With this Code behind:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
namespace CellLab.WebForms
{
    class DataTest
    {
        private DateTime dateReceived;
 
        public DateTime DateReceived
        {
            get { return dateReceived; }
            set { dateReceived = value; }
        }
        private DateTime dateCollected;
 
        public DateTime DateCollected
        {
            get { return dateCollected; }
            set { dateCollected = value; }
        }
        private string sampleNumber;
 
        public string SampleNumber
        {
            get { return sampleNumber; }
            set { sampleNumber = value; }
        }
        private string status;
 
        public string StatusId
        {
            get { return status; }
            set { status = value; }
        }
        private float initialAmount;
 
        public float InitialAmount
        {
            get { return initialAmount; }
            set { initialAmount = value; }
        }
        private string units;
 
        public string UnitId
        {
            get { return units; }
            set { units = value; }
        }
        private string tubeType;
 
        public string TubeTypeId
        {
            get { return tubeType; }
            set { tubeType = value; }
        }
        private string notes;
 
        public string Notes
        {
            get { return notes; }
            set { notes = value; }
        }
        private string parentSample;
 
        public string ParentSample
        {
            get { return parentSample; }
            set { parentSample = value; }
        }
    }
 
    public partial class UpdateProblem : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
 
        }
 
        private void BindData()
        {
            DataTest sample1 = new DataTest();
            sample1.DateReceived = DateTime.Now;
            sample1.DateCollected = DateTime.Now;
            sample1.SampleNumber = "1";
            sample1.StatusId = "NA";
            sample1.InitialAmount = 9.0f;
            sample1.UnitId = "ml";
            sample1.TubeTypeId = "ACD";
            sample1.Notes = "Notes sample 1";
            sample1.ParentSample = null;
 
            DataTest sample2 = new DataTest();
            sample2.DateReceived = DateTime.Now.AddDays(1);
            sample2.DateCollected = DateTime.Now.AddDays(1);
            sample2.SampleNumber = "2";
            sample2.StatusId = "AVAIL";
            sample2.InitialAmount = 0.0f;
            sample2.UnitId = "ml";
            sample1.TubeTypeId = "Cryovial";
            sample2.Notes = "Notes sample 2";
            sample2.ParentSample = "1";
 
            List<DataTest> rows = new List<DataTest>();
            rows.Add(sample1);
            rows.Add(sample2);
            RadTreeListSamples.DataSource = rows;
        }
 
        protected void DropDownListStudy_SelectedIndexChanged(object sender, EventArgs e)
        {
 
        }
 
        protected void LinkButtonAddEditSample_Click(object sender, EventArgs e)
        {
 
        }
 
        protected void RadTreeListSamples_ItemDataBound1(object sender, Telerik.Web.UI.TreeListItemDataBoundEventArgs e)
        {
 
        }
 
        protected void RadTreeListSamples_UpdateCommand1(object sender, Telerik.Web.UI.TreeListCommandEventArgs e)
        {
            RadWindowManagerUI.RadAlert("This is getting updated!", 330, 100, "DNA CellLab"null);
        }
 
        protected void RadTreeListSamples_NeedDataSource1(object sender, Telerik.Web.UI.TreeListNeedDataSourceEventArgs e)
        {
            BindData();
        }
 
        protected void RadTreeListSamples_ItemCommand(object sender, Telerik.Web.UI.TreeListCommandEventArgs e)
        {
 
        }
    }
}

Problem is, when I click on the edit button, and then I click on update, nothing happens. The update event is not fired at all or in other words, I don't get the RadAlert. 

Please help...

Tsvetina
Telerik team
 answered on 23 Jan 2012
1 answer
68 views
hi,

i have a requirement as follows
 in the multilevel (3 level hierarchy  ) grid i want to edit any grid row at any time but save all the changes at the final mean

if i edit row 1 , but i didn't want to update immediately to the db but i am able to see the changes in the grid itself ,next i edit 2 row and change some value but not save at that time to db at the final

i click on save changes   all the rows which are edited will be modified in the db

in the same way need the way to add new rows also .

Thanks & Regards,
M.Koteswara Rao
Jayesh Goyani
Top achievements
Rank 2
 answered on 23 Jan 2012
1 answer
128 views
hi,

i am using the telerik rad grid my code is as follows please see the code . i am using the dataset with the relations for hierarchy  that code is like this  i am using vb.net and telerik q3 version when i click on the edit the row is in edit mode but when i click on the update it did not go to ItemUpdated event why? all of your examples are based on objectect datasource or sql data data source please give at least  one example  with dataset or data table that is really good for programmers .

i wrote like this

 Protected Sub dgproduct_ItemUpdated(ByVal source As Object, ByVal e As Telerik.Web.UI.GridUpdatedEventArgs) Handles dgProduct.ItemUpdated
        Dim item As String = getItemName(e.Item.OwnerTableView.Name)
        Dim field As String = getFieldName(e.Item.OwnerTableView.Name)
        If Not e.Exception Is Nothing Then
            e.KeepInEditMode = True
            e.ExceptionHandled = True
            DisplayMessage(item + " " + e.Item(field).Text + " cannot be updated. Reason: " + e.Exception.Message)
        Else
            DisplayMessage(item + " " + e.Item(field).Text + " updated")
        End If
    End Sub

 
ds = ProductBO.GetProductChainDetailsList(ddlCategory.SelectedValue, "", txtStyle.Text, ddlStyleActive.SelectedValue, CInt(ViewState("cp").ToString), CInt(SystemSettingsBO.GetSettings("PageSize")))
           ds.Relations.Add("ProductRelation", ds.Tables(0).Columns("PKProductID"), ds.Tables(1).Columns("FKProductID"))
           If Not ds.Tables(2) Is Nothing Then
               If ds.Tables(2).Rows.Count > 0 Then
                   ds.Relations.Add("ProductRelation2", ds.Tables(1).Columns("PKProductID"), ds.Tables(2).Columns("FKProductID"))
               End If
           End If
           'dgProduct.DisplayLayout.AllowUpdateDefault = AllowUpdate.Yes
           dgProduct.DataSource = ds
           dgProduct.DataBind()

 <telerik:RadGrid ID="dgProduct" runat="server" AutoGenerateColumns="false"
                                  AutoGenerateHierarchy="true" GroupingEnabled="true" AllowMultiRowSelection="true"
                                 AllowAutomaticDeletes="True" AllowAutomaticInserts="True"  AllowAutomaticUpdates="True">
                                     <MasterTableView EditMode="InPlace" >
                                         <Columns>
                                          <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn1">
                                     <HeaderStyle Width="20px" />
                                     <ItemStyle CssClass="MyImageButton" />
                                 </telerik:GridEditCommandColumn>
                                             <telerik:GridBoundColumn DataField="PKProductID" HeaderText="PKProductID" Visible="false" />
                                             <telerik:GridBoundColumn DataField="SourceID" HeaderText="Style #" />
                                             <telerik:GridBoundColumn DataField="Language1Title" HeaderText="Title" />
                                             <telerik:GridBoundColumn DataField="Language1SubTitle" HeaderText="Sub Title" />
                                            
                                             <telerik:GridDropDownColumn HeaderText="Clearance" UniqueName="StyleClearance" DataSourceID="SourceCheck"
                                                 ListTextField="Text" ListValueField="Text" SortExpression="Text" DataField="ClearanceItem" />
                                             <telerik:GridDropDownColumn HeaderText="Active" UniqueName="StyleActive" DataSourceID="SourceCheck"
                                                 ListTextField="Text" ListValueField="Text" SortExpression="Text" DataField="Active" />
                                             <telerik:GridBoundColumn DataField="Price" HeaderText="Price" />
                                             <telerik:GridBoundColumn DataField="SalePrice" HeaderText="Sale Price" />
                                               <telerik:GridButtonColumn ConfirmText="Delete this product?" ButtonType="ImageButton"
                                     CommandName="Delete" Text="Delete" UniqueName="DeleteColumn1">
                                     <HeaderStyle Width="20px" />
                                     <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" />
                                 </telerik:GridButtonColumn>
                                         </Columns>
                                         <DetailTables>
                                             <telerik:GridTableView DataMember="Colors" HierarchyLoadMode="ServerOnDemand"  >
                                            
                                                 <Columns>
                                                     <telerik:GridBoundColumn DataField="FKProductid" HeaderText="FKProductid" Visible="false" />
                                                     <telerik:GridBoundColumn DataField="Language1Title" HeaderText="Title" ReadOnly="true" />
                                                      <telerik:GridBoundColumn DataField="PKGroupScaleItemID" HeaderText="Color Id" ReadOnly="true"  />
                                                     <telerik:GridTemplateColumn UniqueName="TemplateColumn">
                     <ItemTemplate>
                        sfsdadf
                     </ItemTemplate>
                     <EditItemTemplate>
                        <asp:DropDownList DataSourceID="SourceColors" DataTextField="ScaleLanguage1Name" DataValueField="ScaleType"  ID="ddlList" runat="server" AutoPostBack="true" selectedValue='<%# Eval("ScaleLanguage1Name") %>'></asp:DropDownList>
                        
                     </EditItemTemplate>
                 </telerik:GridTemplateColumn>
                                                        <telerik:GridDropDownColumn UniqueName="ColorSourceID" DataSourceID="SourceColors"
                                                         HeaderText="Colors" DataField="SourceID" SortExpression="ScaleLanguage1Name"
                                                         ListTextField="ScaleLanguage1Name" ListValueField="ScaleType" />
                                                     <telerik:GridDropDownColumn HeaderText="Active" UniqueName="ColorActive" DataSourceID="SourceCheck"
                                                         ListTextField="Text" ListValueField="Text" SortExpression="Text" DataField="Active" />
                                                 </Columns>
                                                 <DetailTables>
                                                     <telerik:GridTableView DataMember="Sizes" HierarchyLoadMode="ServerOnDemand"  Width="300px" >
                                                         <Columns>
                                                             <telerik:GridBoundColumn DataField="FKProductid" HeaderText="FKProductid" Visible="false" />
                                                             <telerik:GridBoundColumn DataField="Language1Title" HeaderText="Title" ReadOnly="true"  />
                                                             <telerik:GridBoundColumn DataField="SourceID" HeaderText="Size ID" ReadOnly="true" />
                                                             <telerik:GridDropDownColumn UniqueName="SizeSourceID" DataSourceID="SourceSizes"
                                                                 HeaderText="Sizes" DataField="SourceID" SortExpression="ScaleLanguage1Name" ListTextField="ScaleLanguage1Name"
                                                                 ListValueField="PKGroupScaleItemID" />
                                                             <telerik:GridBoundColumn DataField="BackOrderDays" HeaderText="Back Order Days" />
                                                             <telerik:GridBoundColumn DataField="SKU" HeaderText="SKU" />
                                                             <telerik:GridBoundColumn DataField="QuantityAvailable" HeaderText="Quantity" />
                                                             <telerik:GridDropDownColumn HeaderText="Active" UniqueName="SizeActive" DataSourceID="SourceCheck"
                                                                 ListTextField="Text" ListValueField="Text" SortExpression="Text" DataField="Active" />
                                                         </Columns>
                                                     </telerik:GridTableView>
                                                 </DetailTables>
                                             </telerik:GridTableView>
                                         </DetailTables>
                                         <EditFormSettings>
                                             <EditColumn Reorderable="false" Resizable="false" />
                                         </EditFormSettings>
                                     </MasterTableView>
                                     <ClientSettings>
                                         <ClientEvents OnRowClick="RowClick" OnRowDblClick="RowDblClick" />
                                         
                                     </ClientSettings>
                                 </telerik:RadGrid>


i need solution for this to update the row as early as possible

Thanks & Regards,
M.Koteswara Rao
Shinu
Top achievements
Rank 2
 answered on 23 Jan 2012
Narrow your results
Selected tags
Tags
+124 more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?