Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
106 views
Hi,

I have a Radpanelbar ,

How do i do a .focus on the item after i click on the expand button

As currently , i have a webpart with the Radpanelbar control but upon expand it alway navigate to the top of the webpart .

Kindly advise .
Noob2008 Noob2008
Top achievements
Rank 1
 answered on 08 Jul 2009
5 answers
330 views

Hello,

I have a problem with the paging of the RadGrid  that I have not been able to resolve . I define the grid in the page_load when the page is loaded for the first time as you can see in the next code:


private void DefineGridStructureGruposDisp() 
    { 
        RDG_GruposDisp.PagerStyle.ShowPagerText = true
        RDG_GruposDisp.AllowPaging = true
        RDG_GruposDisp.AllowCustomPaging = false
        //RDG_GruposDisp.VirtualItemCount = 100; 
        RDG_GruposDisp.AutoGenerateColumns = false
        RDG_GruposDisp.GridLines = GridLines.None; 
        RDG_GruposDisp.ClientSettings.Selecting.AllowRowSelect = false
 
        //Set options to enable Group-by 
        //RDG_GruposDisp.GroupingEnabled = true; 
        RDG_GruposDisp.ShowGroupPanel = false
        RDG_GruposDisp.ClientSettings.AllowDragToGroup = false
        RDG_GruposDisp.ClientSettings.AllowColumnsReorder = true
        //RDG_GruposDisp.MasterTableView.HierarchyLoadMode = GridChildLoadMode.ServerOnDemand; 
 
        RDG_GruposDisp.MasterTableView.NoDetailRecordsText = "No hay Grupos "
        RDG_GruposDisp.MasterTableView.NoMasterRecordsText = "No hay Grupos "
        RDG_GruposDisp.MasterTableView.EditMode = GridEditMode.EditForms; 
 
        RDG_GruposDisp.MasterTableView.AllowSorting = true
        RDG_GruposDisp.AllowMultiRowSelection = true
        //RDG_GruposDisp.ShowFooter = true; 
        RDG_GruposDisp.Width = Unit.Percentage(100); 
 
        // Configurar paginación 
        RDG_GruposDisp.MasterTableView.PageSize = 40; 
        RDG_GruposDisp.PagerStyle.Mode = GridPagerMode.NextPrevAndNumeric; 
 
        //Add columns 
 
        GridBoundColumn boundColumn = new GridBoundColumn(); 
        RDG_GruposDisp.MasterTableView.Columns.Add(boundColumn); 
        boundColumn.DataField = "idGrupos"
        boundColumn.HeaderText = "idGrupos"
        boundColumn.UniqueName = "idGrupos"
        //boundColumn.DataFormatString = "{0:##,##}"; 
        //boundColumn.Resizable = false; 
        boundColumn.ReadOnly = true
        boundColumn.ItemStyle.VerticalAlign = VerticalAlign.Middle; 
        boundColumn.ItemStyle.HorizontalAlign = HorizontalAlign.Center; 
        //boundColumn.FooterText = "Id Evento"; 
        boundColumn.Visible = false
 
        boundColumn = new GridBoundColumn(); 
        RDG_GruposDisp.MasterTableView.Columns.Add(boundColumn); 
        boundColumn.DataField = "Grupos"
        boundColumn.HeaderText = "Grupos"
        boundColumn.UniqueName = "Grupos"
        //boundColumn.DataFormatString = "{0:##,##}"; 
        //boundColumn.Resizable = false; 
        boundColumn.ReadOnly = true
        boundColumn.ItemStyle.VerticalAlign = VerticalAlign.Middle; 
        boundColumn.ItemStyle.HorizontalAlign = HorizontalAlign.Center; 
        //boundColumn.FooterText = "Grupo"; 
        boundColumn.Visible = true
    } 
 

I use needdatasource to pass data where i call the funtion through Rebind():

protected void RDG_GruposDisp_NeedDataSource(object source, GridNeedDataSourceEventArgs e) 
    { 
        String Rebind = e.RebindReason.ToString(); 
 
        if (Rebind == "ExplicitRebind" || Rebind == "DetailTableBinding, PostBackEvent"
        {             
                RDG_GruposDisp.DataSource = eventos.GetGruposD_P(DDLProvincias.SelectedValue) ; 
        } 
    } 
 

The problem is that i can´t reset the paging of the grid, I mean if I first do a query where I select a value in the combobox that retrieves 1000 data after that I change that value in the combobox  now selecting 500 data and the paging is still  retrieving me  1000 data, the same number of pages when indeed it should just have 500 a half of pages . However in the grid are the data correctly but the client can be confused by thinking that there are more data that shows the paging. 

I hope that you understand what I wrote, sorry for my poor English.

 

Julio






private void DefineGridStructureGruposDisp() 
    { 
        RDG_GruposDisp.PagerStyle.ShowPagerText = true
        RDG_GruposDisp.AllowPaging = true
        RDG_GruposDisp.AllowCustomPaging = false
        //RDG_GruposDisp.VirtualItemCount = 100; 
        RDG_GruposDisp.AutoGenerateColumns = false
        RDG_GruposDisp.GridLines = GridLines.None; 
        RDG_GruposDisp.ClientSettings.Selecting.AllowRowSelect = false
 
        //Set options to enable Group-by 
        //RDG_GruposDisp.GroupingEnabled = true; 
        RDG_GruposDisp.ShowGroupPanel = false
        RDG_GruposDisp.ClientSettings.AllowDragToGroup = false
        RDG_GruposDisp.ClientSettings.AllowColumnsReorder = true
        //RDG_GruposDisp.MasterTableView.HierarchyLoadMode = GridChildLoadMode.ServerOnDemand; 
 
        RDG_GruposDisp.MasterTableView.NoDetailRecordsText = "No hay idGrupos "
        RDG_GruposDisp.MasterTableView.NoMasterRecordsText = "No hay idGrupos "
        RDG_GruposDisp.MasterTableView.EditMode = GridEditMode.EditForms; 
 
        RDG_GruposDisp.MasterTableView.AllowSorting = true
        //RDG_GruposDisp.MasterTableView.DataKeyNames = new string[] { "idEvento" }; 
        RDG_GruposDisp.AllowMultiRowSelection = true
        //RDG_GruposDisp.ShowFooter = true; 
        RDG_GruposDisp.Width = Unit.Percentage(100); 
 
        // Configurar paginación 
        RDG_GruposDisp.MasterTableView.PageSize = 40; 
        RDG_GruposDisp.PagerStyle.Mode = GridPagerMode.NextPrevAndNumeric; 
 
        //Add columns 
 
        GridBoundColumn boundColumn = new GridBoundColumn(); 
        RDG_GruposDisp.MasterTableView.Columns.Add(boundColumn); 
        boundColumn.DataField = "idGrupos"
        boundColumn.HeaderText = "idGrupos"
        boundColumn.UniqueName = "idGrupos"
        //boundColumn.DataFormatString = "{0:##,##}"; 
        //boundColumn.Resizable = false; 
        boundColumn.ReadOnly = true
        boundColumn.ItemStyle.VerticalAlign = VerticalAlign.Middle; 
        boundColumn.ItemStyle.HorizontalAlign = HorizontalAlign.Center; 
        //boundColumn.FooterText = "Id Evento"; 
        boundColumn.Visible = false
 
        boundColumn = new GridBoundColumn(); 
        RDG_GruposDisp.MasterTableView.Columns.Add(boundColumn); 
        boundColumn.DataField = "Grupos"
        boundColumn.HeaderText = "Grupos"
        boundColumn.UniqueName = "Grupos"
        //boundColumn.DataFormatString = "{0:##,##}"; 
        //boundColumn.Resizable = false; 
        boundColumn.ReadOnly = true
        boundColumn.ItemStyle.VerticalAlign = VerticalAlign.Middle; 
        boundColumn.ItemStyle.HorizontalAlign = HorizontalAlign.Center; 
        //boundColumn.FooterText = "Grupo"; 
        boundColumn.Visible = true
    } 
 




Julio Lopes
Top achievements
Rank 1
 answered on 08 Jul 2009
1 answer
151 views

How I can Bind SessionDataSource SelectCommand, UpdateCommand,DeleteCommand using LINQ so I can perform insert /update/delete automatic  operation with grid using LINQ.

Nikolay Rusev
Telerik team
 answered on 08 Jul 2009
0 answers
128 views

Hi!

I've been trying to construct a page with several RadTabStrips and corresponding PageViews with the invisible status enabled (visible = false). Unfortunately, when I have an postbacks (With or without RadAjaxManager) the RadPageViews lose the false state of the enable and visible properties to their original value: true. The RadTabs maintain the false value for both enable and visible properties. I have enableViewState set to true in both controls.

Is this an problem in my application, an telerik problem or something that I'm not gething it?

Here is the log of my Page Load (!Postback) with 4 RadTabs and 4 PageViews:
Tab: i0; enable: True; visible:True hash: 1041383
Tab: i1; enable: True; visible:True hash: 21869055
Tab: i2; enable: True; visible:True hash: 56596981
Tab: i3; enable: False; visible:False hash: 47685916
RadPageView: wuc1; enable: True; visible:True hash: 61880160
RadPageView: wuc2; enable: True; visible:True hash: 24414944
RadPageView: wuc3; enable: True; visible:True hash: 42951790
RadPageView: wuc4; enable: False; visible:False hash: 29572360

Here is my second log in the page_load event in my first a postback with an added RadTab and PageView:
Tab: i0; enable: True; visible:True hash: 2919477
Tab: i1; enable: True; visible:True hash: 61309027
Tab: i2; enable: True; visible:True hash: 12421168
Tab: i3; enable: False; visible:False hash: 59517951   ------> OK
RadPageView: wuc1; enable: True; visible:True hash: 41917428
RadPageView: wuc2; enable: True; visible:True hash: 7850760
RadPageView: wuc3; enable: True; visible:True hash: 30648237
RadPageView: wuc4; enable: True; visible:True hash: 39633220    ------> Expected FAlse in both properties


ASPX code:
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1"
</telerik:RadTabStrip> 
 
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" OnPageViewCreated="RadMultiPage1_PageViewCreated"
</telerik:RadMultiPage> 


My C# code:
  
    protected void Page_Load(object sender, EventArgs e) 
    { 
        Ajax.Utility.RegisterTypeForAjax(typeof(RTS)); 
 
        if (!Page.IsPostBack) 
        { 
            Session.Add("wucNum", 1); 
            AddTab("wuc"true); 
            AddTab("wuc"true); 
            AddTab("wuc"true); 
            AddTab("wuc"false); 
         } 
   } 
 
 private void AddTab(string tabName, bool isEnabled) 
    { 
        int wucNum = (int)Session["wucNum"]; 
 
        RadTab tab = new RadTab(); 
        tab.Text = tabName + (int)Session["wucNum"] + " " + isEnabled; 
        tab.Enabled = isEnabled; 
        tab.Visible = isEnabled; 
        RadTabStrip1.Tabs.Add(tab); 
        RadTabStrip1.Tabs[RadTabStrip1.Tabs.Count - 1].Selected = true
 
        RadPageView pageView = new RadPageView(); 
        pageView.Enabled = isEnabled; 
        pageView.Visible = isEnabled; 
        pageView.ID = tabName + (int)Session["wucNum"] + " " + isEnabled; 
        RadMultiPage1.PageViews.Add(pageView); 
    } 
 
    protected void RadMultiPage1_PageViewCreated(object sender, Telerik.Web.UI.RadMultiPageEventArgs e) 
    { 
            string userControlName = e.PageView.ID.Substring(0, 3) + ".ascx"
 
            Control userControl = Page.LoadControl(userControlName); 
            userControl.ID = e.PageView.ID + "_userControl"
            e.PageView.Controls.Add(userControl); 
     } 






Rodrigo Selada
Top achievements
Rank 1
 asked on 08 Jul 2009
1 answer
153 views
<table cellspacing="0" cellpadding="0" border="0" width="100%" height="100%" text-align="left">    
<tr> 
        <td> 
            <telerik:RadGrid ID="SearchResultsRadGrid" runat="server"   
                DataSourceID="SiteSearchResultsObjectDataSource" SkinID="RadGridHeaderSkin"   
                GridLines="Vertical"  Style="margin: 0px 10px 0px 10px" OnSelectedIndexChanged="SearchResultsRadGrid_SelectedIndexChanged" 
                OnItemDataBound="SearchResultsRadGrid_ItemDataBound"   
                OnNeedDataSource="SearchResultsRadGrid_NeedDataSource"   
                AutoGenerateColumns="False" onprerender="SearchResultsRadGrid_PreRender"   
                Skin="Default">  
                <MasterTableView DataKeyNames="ID" TableLayout = "Fixed"   
                    DataSourceID="SiteSearchResultsObjectDataSource" Frame="Void">  
                    <NoRecordsTemplate> 
                    No records to display !  
                    </NoRecordsTemplate> 
                    <Columns> 
                        <telerik:GridTemplateColumn HeaderText="Status" UniqueName="TemplateColumn">  
                            <ItemTemplate> 
                                <asp:Label ID="StatusImageLabel" runat="server"></asp:Label> 
                            </ItemTemplate> 
                          <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496b4" Width="60px"  /> 
                        </telerik:GridTemplateColumn> 
                        <telerik:GridBoundColumn DataField="Name" HeaderText="Site Name" SortExpression="Name" 
                            UniqueName="Name">  
                        <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496b4" Width="40%"  /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="City" HeaderText="City" SortExpression="City" 
                            UniqueName="City">  
                          <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496b4" Width="15%"  /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="StateName" HeaderText="State" SortExpression="StateName" 
                            UniqueName="StateName" ReadOnly="True">  
                          <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496b4" Width="15%"   /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="CountryName" HeaderText="Country" SortExpression="CountryName" 
                            UniqueName="CountryName" ReadOnly="True">  
                         <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496b4" Height="5px" Width="15%"   /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridBoundColumn DataField="Zipplus4" HeaderText="Zip" SortExpression="Zipplus4" 
                            UniqueName="Zipplus4">  
                           <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496b4" Width="15%"   /> 
                        </telerik:GridBoundColumn> 
                        <telerik:GridTemplateColumn HeaderText="Action" UniqueName="TemplateColumn1">  
                            <ItemTemplate> 
                                <asp:ImageButton ID="EditImageButton" runat="server" CssClass="GridActionColumn" CommandArgument='<%# Eval("ID") %>' 
                                    ImageUrl="~/App_Themes/PANCAN_Theme/Images/edit.gif" ToolTip="Edit" OnClick="EditImageButton_Click" 
                                    CausesValidation="False" /> 
                                  
                                <asp:LinkButton ID="PreviewLinkButton" runat="server" CssClass="GridActionColumn" CausesValidation="False" CommandName="Select" 
                                    EnableViewState="False" Visible="false">Preview</asp:LinkButton> 
                                <asp:HiddenField ID="StatusHiddenField" runat="server" Value='<%# Eval("Active") %>' /> 
                            </ItemTemplate> 
                       <HeaderStyle Font-Names="Trebuchet MS" Font-Size="14px" ForeColor="#3496b4" Width="60px"  /> 
                        </telerik:GridTemplateColumn> 
                    </Columns> 
                  </MasterTableView> 
                 
            </telerik:RadGrid> 
            <asp:ObjectDataSource ID="SiteSearchResultsObjectDataSource" runat="server" SelectMethod="SearchSite" 
                TypeName="ServiceLayer.SiteService">  
                <SelectParameters> 
                    <asp:ControlParameter ControlID="FindSiteHiddenField" Name="SearchString" PropertyName="Value" 
                        Type="String" /> 
                    <asp:ControlParameter ControlID="SiteStatusHiddenField" Name="Status" PropertyName="Value" 
                        Type="String" /> 
                    <asp:ControlParameter ControlID="ActionHiddenField" Name="Action" PropertyName="Value" 
                        Type="String" /> 
                </SelectParameters> 
            </asp:ObjectDataSource> 
        
        </td> 
    </tr> 
Hi Telerik Admin !

Im using the TELERIK RAD GRID with DEAFULT SKIN(Q2 2009). I have folowing problem :-

Whenever I reorder my columns of the GRID the overall alignment of the page gets distubed. I have used the SKIN for the RED GRID(i.e. I have mentioned all the CLIENT SETTTING property for the GRID in SKIN file.) . I have placed my RAD GRID within in row of the Table with TABLE havong the follwing property :
 Cellspacing = 0px
 Cellpadding = 0px
 Border = 0px
width = 100%
height = 100%

Now whenever  , I reoder the columns of the RAD GRID & click on to the colums headers(try to sort), the RAD GRID gets STREACHED for its mean position, as a result of which the other controls on to the other <TD> of the Table gets distorted and overall structure of the webpage gets disturbed.

My providing you with the CODE that Iam using.
This is the SKIN FILE for the RAD GRID.  
---------------------------------------  
 
 
<telerik:RadGrid runat="server" Skinid="RadGridHeaderSkin">  
    <ClientSettings EnableRowHoverStyle="true" EnablePostBackOnRowClick="true"  AllowColumnsReorder="true" ReorderColumnsOnClient="true">  
     <Resizing AllowRowResize="True" EnableRealTimeResize="false" ClipCellContentOnResize="false" ResizeGridOnColumnResize="true" AllowColumnResize="True"></Resizing> 
        <Scrolling AllowScroll="true" SaveScrollPosition="true" UseStaticHeaders="true" ScrollHeight="20px" /> 
        <Selecting AllowRowSelect="true" /> 
         
    </ClientSettings> 
</telerik:RadGrid> 

Plase help to sort out this probelm.


 

Georgi Krustev
Telerik team
 answered on 08 Jul 2009
0 answers
46 views
I'm running behind on a Sitefinity project and need someone that has RadMenu experience to help me out with a quick assist.  Basically I've never used Sitefinity or the RadMenu control before.  I've got the templates all ready to go, but need to add the menu, for this menu I need it to be horizontal with about 8 menus across each seperated by a light blue line that fades from bottom to top, and has a background image.

You can see the original template here:  

http://www.templatemonster.com/joomla-templates/24415.html

If you can provide me detailed instructions for doing this, I would be most appreciative, and am more than happy to pay a reasonable fee.

Thanks!

Andrew
Top achievements
Rank 1
 asked on 08 Jul 2009
1 answer
93 views
Hi All,
         Is there anyway to change the end date programmatically or through a setting when the user changes the start date ? So far example the user changes the start date to 7/4/2009 I want to be able to set the end date to also 7/4/2009 as against 7/3/2009 which is being done right now. 

Thanks,
Aditya
Veselin Vasilev
Telerik team
 answered on 08 Jul 2009
1 answer
54 views
Hi all,
I have an ajaxified grid that works smoothly. I created a user control to custom edit these items. This user control is made of a RadTabStrip and RadMultipages and some UpdatePanels. If I cause an asyncronous postback or a normal postback it seems to loose state. I mean: suppose i went to RadMultiPage #2. This MultiPage contains a checkbox that autopostbacks to enable/disable a near textbox. If I click that checkbox a postback succeed but I'm kicked to RadMultiPage #1 (the first) and if I go back to RadMultiPage#2 the checkbox is not checked. This is the behaviour if checkbox and textbox are not inside an updatepanel. If they were inside an updatepanel I wouldn't see anymore the Textbox and the Checkbox as they seem to be deleted.

How should I do it?

Thanks,
Marco


Georgi Krustev
Telerik team
 answered on 08 Jul 2009
3 answers
204 views
I have two radgrid inside another radgrid and the aspx file code is below. I can show the grid properly but problem is when I am exporting the master grid into PDF it is not formatting properly. I know that the CSS doesn't work at PDFExporting but how can I show the Grid Lines properly. It I tried with different setting of the GridLines= "None" but seems it doesn't work.
Also, i used <br /> for a new line and it aspx page it is working fine but in the PDF export it doesn't work properly.
Plaese help me.

 

 

<telerik:RadGrid ID="RadGridWrapper" runat="server" GridLines= "None" ShowHeader="false" BorderStyle="None" style="background-color: Transparent; " Width="550px" >

 

 

<ExportSettings ExportOnlyData="false" OpenInNewWindow="true">

 

 

 

<Pdf PageHeight="297mm" PageWidth="180mm" PageTitle="Email Statistics" />

 

 

 

</ExportSettings>

 

 

 

<MasterTableView AutoGenerateColumns="true" >

 

 

 

<ItemTemplate>

 

 

 

<br />

 

 

 

<asp:Label ID="LabelMessageName" runat="server" Font-Bold="true" Font-Size= "Small" ></asp:Label><br />

 

 

 

<b>Email Stats</b><br />

 

 

 

<telerik:RadGrid ID="RadGridEmailStats" runat="server" GridLines= "None" AllowPaging="True" AllowSorting="True"

 

 

AutoGenerateColumns="False" CssClass="Grid" >

 

<ExportSettings ExportOnlyData="false" OpenInNewWindow="true" />

 

<MasterTableView>

 

 

<Columns>

 

 

<telerik:GridBoundColumn HeaderText="Tracking Item" DataField="TrackingItem" SortExpression="TItem"

 

 

HeaderStyle-HorizontalAlign="Center" >

 

 

<ItemStyle HorizontalAlign= "Left" />

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn HeaderText="Count" DataField="Count" SortExpression="Count"

 

 

HeaderStyle-HorizontalAlign= "Center" >

 

<ItemStyle HorizontalAlign= "Right" />

 

</telerik:GridBoundColumn>

 

 

</Columns>

 

 

</MasterTableView>

 

 

</telerik:RadGrid>

 

 

<br />

 

 

<asp:Label ID="LabelDailyBreakdown" runat="server">Daily Breakdown</asp:Label>

 

 

<asp:Label ID="Label1" runat="server" Text=" "></asp:Label>

 

 

<br />

 

 

<telerik:RadGrid ID="RadGridBreakdown" runat="server" GridLines= "None" AllowPaging="True" AllowSorting="True"

 

 

AutoGenerateColumns="False" OnItemDataBound="RadGridBreakdown_ItemDataBound"

 

 

CssClass="Grid">

 

 

<ExportSettings ExportOnlyData="false" OpenInNewWindow="true" />

 

 

<MasterTableView>

 

 

<RowIndicatorColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</RowIndicatorColumn>

 

 

<ExpandCollapseColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</ExpandCollapseColumn>

 

 

<Columns>

 

 

<telerik:GridBoundColumn HeaderText="DateCreated" DataField="DATE_CREATED" UniqueName="DATE_CREATED" SortExpression="DATE_CREATED" Visible="True" />

 

 

<telerik:GridBoundColumn HeaderText="Opened" UniqueName="MailOpened" Reorderable="False" HeaderStyle-HorizontalAlign="Center" SortExpression="MOpened" >

 

 

<ItemStyle HorizontalAlign= "Right" />

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn HeaderText="Hits" UniqueName="LinkHits" Reorderable="False" HeaderStyle-HorizontalAlign="Center"

 

 

SortExpression="LHits" >

 

 

<ItemStyle HorizontalAlign= "Right" />

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn HeaderText="Opened" DataField="OPENED" Visible="False" />

 

 

<telerik:GridBoundColumn HeaderText="Unique Open" DataField="UNIQUE_OPENED" Visible="False" />

 

 

<telerik:GridBoundColumn HeaderText="Hits" DataField="HITS" Visible="False" />

 

 

<telerik:GridBoundColumn HeaderText="Unique Hits" DataField="UNIQUE_HITS" Visible="False" />

 

 

</Columns>

 

 

</MasterTableView>

 

 

</telerik:RadGrid>

 

 

</ItemTemplate>

 

 

</MasterTableView>

 

 

</telerik:RadGrid>

 

 

 


Daniel
Telerik team
 answered on 08 Jul 2009
1 answer
71 views
Hi all,

Maybe it is a familiar question, but i can't seem to find it in Google and this forums (it's also very slow at the moment..)

I have a multi column/row like input form (10 rows, 8 controls per row; textboxes, radnum's and 2 radcombo's) 

every row has 2 radcombo's but the all show the same list. Is there a way to share so the performance is being boasted?

regards Erik.
Atanas Korchev
Telerik team
 answered on 08 Jul 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?