Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
163 views
Hi,
      I am using RadTimepicker. i have assigned the end time but the end time is not shown in the timevew of radtimepicker. please provide me a solution to show the End time in Timeview of radtimepicker.




Thanks
Shinu
Top achievements
Rank 2
 answered on 16 May 2014
7 answers
287 views

Hi,

      

 I have a radeditor  in my page. It works and looks fine in firefox and opera but it will display  in IE as an another control. I attached the screen shots of 3 browser.

Thanks

Velkumar

   

Ianko
Telerik team
 answered on 16 May 2014
3 answers
239 views
This pertains to version 2012.2.912.40 of the controls. Sorry I cannot update them.

I converted the edit and delete links in my grids to image buttons and now I get the following error when I click one of the buttons. 

  Multiple controls with the same ID 'EditButton' were found. FindControl requires that controls have unique IDs.

I have multiple grids in page views but they are all pretty much set up like this one just with different columns.
<telerik:RadGrid ID="grdPhones" runat="server" AutoGenerateColumns="False" CellSpacing="0" GridLines="None" CssClass="infoGrid" SkinID="TSSGridEditable">
   <MasterTableView>
      <Columns>
         <telerik:GridBoundColumn FilterControlAltText="Filter Number column" HeaderText="Number" UniqueName="phoneNumber" DataField="phoneNumber">
         </telerik:GridBoundColumn>
         <telerik:GridBoundColumn FilterControlAltText="Filter Type column" HeaderText="Type" UniqueName="phoneType" DataField="phoneType">
         </telerik:GridBoundColumn>
         <telerik:GridEditCommandColumn UniqueName="EditCommandColumn" EditText="Edit" EditImageUrl="~/Images/tb_edit.gif" ButtonType="ImageButton" ItemStyle-HorizontalAlign="Center" ItemStyle-Width="25px" HeaderStyle-Width="25px">
         </telerik:GridEditCommandColumn>
         <telerik:GridEditCommandColumn UniqueName="DeleteCommandColumn" EditText="Delete" EditImageUrl="~/Images/delete16.gif" ButtonType="ImageButton" ItemStyle-HorizontalAlign="Center" ItemStyle-Width="25px" HeaderStyle-Width="25px">
         </telerik:GridEditCommandColumn>
      </Columns>
   </MasterTableView>
</telerik:RadGrid>

and the skin code but it's pretty simple

<telerik:RadGrid runat="server" SkinID="TSSGridEditable">
   <MasterTableView EditMode="PopUp" CommandItemDisplay="Top">
   </MasterTableView>
</telerik:RadGrid>

How do I get around this or is there a different way to implement images?

Shinu
Top achievements
Rank 2
 answered on 16 May 2014
5 answers
157 views
When an option in the panelbar is too long to fit on one line, it correctly wraps to a second line.

However, the CSS for the 'default' skin doesn't take that into account. It only highlights the 1st line. And since the text color is white, the text on the second line is not visible then (white on white).

This issue is not present in all color schemes. WebBlue for instance is just fine.

How can we fix this issue in the 'default' scheme?
Shinu
Top achievements
Rank 2
 answered on 16 May 2014
1 answer
104 views
I have a simple rad grid as follows:
class AssignBanGridCtrl : WebControl
   {
       #region Fields
       private RadAjaxLoadingPanel _RadLoadingPanel = new RadAjaxLoadingPanel();
       private UpdatePanel _UpdatePanel = new UpdatePanel();
       private RadGrid _RadGrid1 = new RadGrid();   
       private PriceDealProductBanTable _PriceDealProductBanTable = new PriceDealProductBanTable();
       private PriceDealProposal _Proposal = null;  
       private bool _HasOrderRequest = false;         
       #endregion
  
        #region Constructors
  
       public AssignBanGridCtrl(PriceDealProposal proposal, bool hasOrderRequest)
           : base()
       {
       }
  
       #endregion
  
      #region Overrides
  
       protected override void OnInit(EventArgs e)
       {
           base.OnInit(e);
  
           this._RadLoadingPanel.ID = "_RadLoadingPanel";
           this._RadLoadingPanel.Transparency = 30;
           this._RadLoadingPanel.Skin = "WebBlue";
           this._RadLoadingPanel.BackgroundPosition = AjaxLoadingPanelBackgroundPosition.Center;
  
           #region Grid1
           this._RadGrid1.ID = "_RadGrid1";
           this._RadGrid1.Skin = "WebBlue";
           this._RadGrid1.Width = Unit.Percentage(100);
           this._RadGrid1.GridLines = GridLines.None;
           this._RadGrid1.PageSize = 20;
           this._RadGrid1.AllowPaging = false;
           this._RadGrid1.PagerStyle.Mode = GridPagerMode.NextPrevAndNumeric;
           this._RadGrid1.AllowSorting = true;
           this._RadGrid1.AutoGenerateColumns = false;
           this._RadGrid1.EnableLinqExpressions = false;
           this._RadGrid1.ShowGroupPanel = false;
           this._RadGrid1.ShowStatusBar = true;
           this._RadGrid1.GroupingEnabled = true;
           this._RadGrid1.ClientSettings.DataBinding.EnableCaching = true;
           this._RadGrid1.MasterTableView.Width = Unit.Percentage(100);
           this._RadGrid1.MasterTableView.Caption = "BAN List";
           this._RadGrid1.MasterTableView.EnableHeaderContextMenu = true;
           this._RadGrid1.MasterTableView.NoMasterRecordsText = "No Locations found";
  
           this._RadGrid1.NeedDataSource += RadGrid1_NeedDataSource;
             
  
           this._RadGrid1.MasterTableView.DataKeyNames = new string[] { this.xyz.ColumnName };
             
           #region Columns
           GridBoundColumn boundColumn = new GridBoundColumn();          
           this._RadGrid1.MasterTableView.Columns.Add(boundColumn);
           boundColumn.DataField = this.xyz.ColumnName;;
           boundColumn.HeaderText = "Product";
  
           boundColumn = new GridBoundColumn();
           this._RadGrid1.MasterTableView.Columns.Add(boundColumn);
           boundColumn.DataField = this.xyz.ColumnName;
           boundColumn.HeaderText = "Location";
             
           #endregion
  
           #endregion
  
           this._UpdatePanel.UpdateMode = UpdatePanelUpdateMode.Conditional;
           this._UpdatePanel.ContentTemplateContainer.Controls.Add(this._RadLoadingPanel);
           this._UpdatePanel.ContentTemplateContainer.Controls.Add(this._RadGrid1);
           this.Controls.Add(this._UpdatePanel);
         
       }
      
    #endregion
       void RadGrid1_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
       {  
           this.xyz= new DealId().ExecuteTypedDataTable(this._Proposal.PriceDealId);  
       }
  
       protected override void OnPreRender(EventArgs e)
       {
           base.OnPreRender(e);  
       }
   }

But this grid is not visible!
I can see that the grid is populated but still not visible. On debugging i see the grid being rendered as follows:

<div class="RadGrid RadGrid_WebBlue" id="OrderBaseCtrl_GXHyperLinkTab_ctl00_FsMain_ProposalDealBANCtrl_FsMain__RadGrid1" style="width: 100%;">
On comparision with other grids, i noticed that this <div> does not have a <table>.
PLease help me.
Princy
Top achievements
Rank 2
 answered on 16 May 2014
5 answers
132 views
I have a RadCalendar we are using and when I add the 'OnDateSelected' Client event I have a function that adds styles and a hide() via jQuery to other elements on the page.  
It seems that on the date selection the 'OnDateSelected' client event is not behaving as I thought it would be.  I thought that I would be able to add a .hide() via jQuery to an element because the date selected was finished. But it seem that after the post back of the date selection my .hide() does not trigger.

What I am doing is I have a <div> that triggers my Calendar to show() via jQuery.  What I want is when the date is selected I want the Calendar to .hide() via jQuery.  Any help is much appreciated. Thanks.


This is my code in my .ascx control:

<ClientEvents OnDateSelected="HideCalendarEnableTimes" />

<div>Click to show Calendar</div>
<telerik:RadCalendar CssClass="myCalendar">..all the good stuff here</telerik:RadCalendar>

<option disabled class="timeListBox">List of times here</option>


//jQuery below

function HideCalendarEnableTimes(sender, eventArgs) {
// alert('enable times');
$('.timeListBox').prop('disabled', false).removeClass('disabled');
$('table.RadCalendar_Special').hide();
$('#MuseumSelectedDayBox').addClass('chosen');
}





Shinu
Top achievements
Rank 2
 answered on 16 May 2014
3 answers
515 views
Hi,

I start to work with Telerik RadGrid and i would like to know:

My datasource is an sql stored procedure and contain many fields that i don't want to show. So, is it possible to configure the RadGrid column by column?

In the same way, i need 6 textbox fields at the end of this grid, that user can enter an integer value.

It possible to include textbox in the RadGrid and when the user click save button, to get values programmaticaly in code-behind?

Thanks!
Princy
Top achievements
Rank 2
 answered on 16 May 2014
3 answers
865 views
In my Radgrid CommandItemTemplate, I have a bunch of buttons. Some buttons are hidden to start with and based on the row clicked, they are visible or remain hidden.

I tried the following while adding buttons, which successfully hides the button.
public class MyTemplate : ITemplate
{
    protected RadButton lnkAdd;
    public void InstantiateIn(System.Web.UI.Control container)
    {
        lnkAdd = new RadButton();
        lnkAdd.ID = "BtnAdd";
        lnkAdd.CommandName = RadGrid.InitInsertCommandName;
        lnkAdd.Text = "Add New Record";
        container.Controls.Add(lnkAdd);
     
        lnkAdd = new RadButton();
        lnkAdd.ID = "BtnEdit";
        lnkAdd.Text = "Edit";
        container.Controls.Add(lnkAdd);

        container.Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "hideButtons",
             "\n<script type=\"text/javascript\">"
            //+ "\n$(function(){"           
           + "\n$(document).ready(function ruchi(){"
           + "\n    $(\"#" + lnkAdd.ClientID + "\").hide(); "
           + "\n    return false;"
           + "\n  });"
           + "\n</script>"
       );
    }
}

OnRowSelected I have this:
function OnRowSelected(sender, args) { 
    var clientDataKeyName = args.get_tableView().get_clientDataKeyNames()[0]; 
    var clientDataKeyValue = args.get_tableView().get_selectedItems()[0].getDataKeyValue(clientDataKeyName);
    var grid = args.get_tableView();
    linkButton1 = $telerik.findControl(grid.get_element(), "BtnProposal");
    if (clientDataKeyValue == "Proposal")
    {     
        linkButton1.set_enabled(false);
    }
    else
        linkButton1.set_enabled(true); 
}
But it fails to show the button. Please let me know how can I achieve this.
Also is there a way the the commandItemTemplate is hidden by default and added only on click of a row?
 
Shinu
Top achievements
Rank 2
 answered on 16 May 2014
2 answers
223 views
Currently I'm working on listbox with checkbox selection for transfer purpose. I'm able to transfer the checked item in source to destination listbox with the following script.
function clientTransfering(sender, args) {
        args.set_cancel(true);
        var checkedNodes = args.get_sourceListBox().get_checkedItems();
        for (var i in checkedNodes) {
            var item = checkedNodes[i];
            args.get_sourceListBox().transferToDestination(item);
        }
    }
But I not able to transfer checked item from destination listbox back to the source listbox.
Is there any way of transferring destination listbox item with checkbox back to the source listbox?
Kenny
Top achievements
Rank 1
 answered on 16 May 2014
6 answers
702 views
Hello,

I have 2 forms with a RadGrid within RadDock.
Issue is, Height of the RadGrid is not coming proper.

I tried setting Height of RadGrid to 100%.
I tried setting the table's property : style="table-layout:fixed"
Either height is too less to see even headers. Or of rows is too big.
I want height of the grid to be adjusted automatically based on number of records.

Please help me on this.

Thanks.
Jimmy.

Here is my code for dock and grid:


<div>&lt;telerik:RadDockLayout ID="dockLayoutContainerEntityType" runat="server"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;telerik:RadDockZone ID="dockZoneActionZone" runat="server" Orientation="Vertical" BorderStyle="None"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;telerik:RadDock ID="dockActions" Skin="Office2007" runat="server" Title="Container-EntityType Mapping" Width="100%" style="margin-bottom:7px"</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;EnableAnimation="false" EnableRoundedCorners="true" &nbsp;Resizable="false" EnableDrag="false" DockMode="Docked"&nbsp;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DefaultCommands="None" &gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;ContentTemplate&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;table cellspacing="0" cellpadding="0" border="0" width="100%" height="100%" style="table-layout:fixed"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&lt;tr valign="top" align="center" style="height:100%"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;td valign="top" align="center" style="height:100%"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;telerik:RadGrid ID="gridTest" runat="server" Skin="Office2007" &nbsp;Width="60%"&nbsp;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;IsConfigDrivenGrid="false" AutoGenerateColumns="false" AllowPaging="true" PagerStyle-AlwaysVisible="true"&nbsp;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;AllowMultiRowSelection="true" AllowFilteringByColumn="false" ShowGroupPanel="false"&nbsp;&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Selecting AllowRowSelect="true" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Scrolling AllowScroll="true" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/ClientSettings&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;MasterTableView Height="90%"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Columns&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;telerik:GridTemplateColumn Visible="false"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;ItemTemplate&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;asp:HiddenField ID="hdnMappingId" runat="server" Value='&lt;%#DataBinder.Eval(Container.DataItem, "Id")%&gt;' /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;asp:HiddenField ID="hdnEntityTypeId" runat="server" Value='&lt;%#DataBinder.Eval(Container.DataItem, "EntityTypeId")%&gt;' /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/ItemTemplate&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/telerik:GridTemplateColumn&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;telerik:GridClientSelectColumn HeaderStyle-HorizontalAlign="Center" HeaderStyle-Width="10%" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;telerik:GridBoundColumn HeaderText="Entity Type" DataField="Name" UniqueName="Name"&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;HeaderStyle Width="90%" HorizontalAlign="Left" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;ItemStyle Width="90%" HorizontalAlign="Left" /&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/telerik:GridBoundColumn&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/Columns&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/MasterTableView&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/telerik:RadGrid&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/td&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/tr&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;tr&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;td height="10px"&gt;&lt;/td&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/tr&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/table&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/ContentTemplate&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/telerik:RadDock&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/telerik:RadDockZone&gt;</div><div>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/telerik:RadDockLayout&gt;</div> 
Brad
Top achievements
Rank 1
 answered on 15 May 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?