Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
46 views
Hi,
i am new in telerik controls. I've problem with one datasource bound to two grids.
  • First grid contains only columns from 2 to 5 and ID
  • Second grid contains columns from 6 to 10 + ID
  • All other columns are hidden (e.g: last user, change date)
When I edit data using first Grid, all other data are set to null (row in second grid looks like blank).
Vasil
Telerik team
 answered on 27 Sep 2010
1 answer
108 views
Hi,

In a radgrid, when i click on a row, a new row should be appended(preferably client side) ,

and for a subset of rows how can i show 1st as merged column for these subset of rows similar as in excel file.

how can i achive the above senarios.

Thanks in advance.
Marin
Telerik team
 answered on 27 Sep 2010
7 answers
120 views
I had some code in a server side event where it would build a RadWindow and try to open it up from a record on a RadGrid.

After unsuccessfully trying, I removed the AjaxSettings block for that particular control from my markup within the RadAjaxManager and the window popped up. Unfortuantely, the grid now posts back and is not ajaxified anymore which is very annoying.

What I did was to put the AjaxSettings back and use the following instead of building the RadWindow:
<code>
string s = "window.open('../scan/viewChart.aspx','_blank','width=1000,height=600,scrollbars=no,resizable=yes\');";
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "alert", s, true);
</code>

This works fine, but was wondering if there is anyother way to keep the grid ajaxified and to launch a window without using window.open.

Thanks,

Bill.
Ed
Top achievements
Rank 1
 answered on 27 Sep 2010
1 answer
159 views
I have two RadListBox controls on my page. These controls are inside an UpdatePanel. There are few other controls on the page, just a couple of radio buttons. I am transferring items in the left list to the right list in the standard way, according to the sample. The left (or source) list contains about 300 items. Each item is defined by an item template. The item template defines a table with two columns (table name, field name). The data in that list is coming from a declaratively bound objectdatasource. I have tried various combinations of property setting/clearing on the list control but cannot get very good performance in any case. It takes about 2.5 seconds for the list control to completely reflect that a new item has been selected. Further, it takes about 3 seconds for the tranfer from the left to the right list control to complete. There does not appear to be any postbacks occuring nor is there any data 'rebinding' occuring. Why would this control's performance be so dodgy for only a couple of hundred items? Am I missing some finer point? Note that I have seen a similar post where a user had performance problems as well, but that was for 15,000 items. I can reasonably see a problem occuring in that scenario. Also note that when I programmatically limit the data returned from the objectdatasource (and thus into the source list control) to say 10 or 20 items, the performance is much better. Finally, note the performance of the ASP.NET list control is very good in this scenario, but you cannot replicate multiple columns on that list control without resorting to custom string formatting and the use of fixed width fonts. Thanks.
Genady Sergeev
Telerik team
 answered on 27 Sep 2010
5 answers
136 views
Hi telerik,

I have Rad Rotator which is working fine in the english version of the page,but in arabic version the slidshow is not happening.
Below is the ascx and ascx.cs file code.
Can u please help me out to sort this issue.

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="NewsTicker.ascx.cs" Inherits="UserControls_GI_NewsTicker" %>
<%@ Register TagPrefix="telerik" Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" %>
<%@ Register TagPrefix="sfWeb" Assembly="Telerik.Libraries" Namespace="Telerik.Libraries.WebControls" %>
<style type="text/css">  
    *+html .rrItemsList
    {
        float: none !important;
    }
    *html .rrItemsList
    {
        float: none !important;
    }
</style>
<asp:UpdatePanel ID="updatePanel" runat="server">
    <ContentTemplate>
        <div class="newsHeading">
            <asp:Literal runat="server" ID="liLatestNews" Text="<%$ Resources: GlobalResource, LatestNews %>"></asp:Literal></div>
        <div  class="newsContents" >
            <telerik:RadRotator ID="radRotator" runat="server" Height="30px" Width="500px" ItemWidth="500px"
                ItemHeight="30px" FrameDuration="3000" RotatorType="SlideShowButtons" SlideShowAnimation-Duration="3000"
                SlideShowAnimation-Type="Fade" OnItemDataBound="radRotator_ItemDataBound">
                <ControlButtons LeftButtonID="img_Left" RightButtonID="img_Right" />
                <ItemTemplate>
                    <asp:HyperLink runat="server" ID="hlNavigator">
                        <asp:Literal ID="NewsTitle" runat="server" />
                    </asp:HyperLink>
                </ItemTemplate>
            </telerik:RadRotator>
        </div>
        <div class="controls">
            <asp:ImageButton ID="img_Left" runat="server" ImageUrl="~/App_Themes/English/Images/back.png"
                OnClick="Play_Click" />
            <asp:ImageButton runat="server" ID="Play" ImageUrl="~/App_Themes/English/Images/pause.png"
                OnClick="Play_Click" />
            <asp:ImageButton ID="img_Right" runat="server" ImageUrl="~/App_Themes/English/Images/forward.png"
                OnClick="Play_Click" />
        </div>
    </ContentTemplate>
</asp:UpdatePanel>





newsticker.cs file

using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Telerik.Web.UI;
using System.ComponentModel;
using Telerik.Cms.Web.UI;
using Telerik.Cms.Engine;
using System.Collections.Generic;
using System.Globalization;
using Telerik.Cms.Data;
using System.Threading;
using System;
using System.Collections;
 
public partial class UserControls_GI_NewsTicker : System.Web.UI.UserControl
{
    #region Public Properties
 
 
    [Category("Data")]
    public string ProviderName
    {
        get
        {
            if (String.IsNullOrEmpty(this.providerName))
                this.providerName = ContentManager.DefaultProviderName;
            return this.providerName;
        }
        set
        {
            this.providerName = value;
        }
    }
 
 
    [Category("Filters")]
    public string CategoryName
    {
        get
        {
            return this.categoryName;
        }
        set
        {
            this.categoryName = value;
        }
    }
    [Category("Filters")]
    public string SortExpression
    {
        get
        {
            return this.sortExpression;
        }
        set
        {
            this.sortExpression = value;
        }
    }
    [Category("Main")]
    [WebEditor("Telerik.Cms.Web.UI.CmsUrlWebEditor, Telerik.Cms")]
    public string MoreInfoUrl
    {
        get { return moreInfoUrl; }
        set { moreInfoUrl = value; }
    }
 
    #endregion
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
 
            IList dataSource = null;
            if (this.manager == null)
                this.manager = new ContentManager(this.ProviderName);
            if (!string.IsNullOrEmpty(this.CategoryName))
            {
                List<IMetaSearchInfo> filter = new List<IMetaSearchInfo>();
                // add a new filter to the list
                filter.Add(new MetaSearchInfo(MetaValueTypes.ShortText, "Category", this.CategoryName));
                dataSource = manager.GetContent(this.SortExpression, filter.ToArray());
            }
            else
            {
                dataSource = manager.GetContent();
            }
 
            this.radRotator.DataSource = dataSource;
            this.radRotator.DataBind();
 
            radRotator.RotatorType = RotatorType.SlideShow;
        }
    }
 
    private string moreInfoUrl;
    private ContentManager manager;
    private string providerName = "News";
    private string categoryName;
    private string sortExpression = "Position Asc";
 
    protected void radRotator_ItemDataBound(object sender, Telerik.Web.UI.RadRotatorEventArgs e)
    {
        IContent content = (IContent)e.Item.DataItem;
 
        if (content != null)
        {
            HyperLink hlNav = e.Item.FindControl("hlNavigator") as HyperLink;
            Literal newsTitle = e.Item.FindControl("NewsTitle") as Literal;
            if (newsTitle != null)
                newsTitle.Text = content.GetMetaData("SubTitle").ToString();
            string navigateTitle = content.Url.Trim();
            if (Thread.CurrentThread.CurrentUICulture.Name == "en")
                hlNav.NavigateUrl = "~/en/home/mediacentre/news/" + navigateTitle.Replace(". ", "_").Replace(" ", "_").Replace("(", "").Replace(")", "") + ".aspx";
            else
                hlNav.NavigateUrl = "~/ar/home/mediacentre/news/" + navigateTitle.Replace(". ", "_").Replace(" ", "_").Replace("(", "").Replace(")", "") + ".aspx";
        }
    }
    protected void Play_Click(object sender, ImageClickEventArgs e)
    {
        if (radRotator.RotatorType == RotatorType.SlideShow)
        {
            radRotator.RotatorType = RotatorType.SlideShowButtons;
            Play.ImageUrl = "~/App_Themes/English/Images/play.png";
 
        }
        else if (radRotator.RotatorType == RotatorType.SlideShowButtons)
        {
            radRotator.RotatorType = RotatorType.SlideShow;
            Play.ImageUrl = "~/App_Themes/English/Images/pause.png";
 
        }
    }
}
K
Top achievements
Rank 1
 answered on 27 Sep 2010
1 answer
269 views
Hi Everyone,

I am trying to get an easy way to obtain the Week Number for a given date. I have found the following GetWeekNumber function but it is not the same number that RadCalendar displays.

 

public static int GetWeekNumber(DateTime dtPassed)

 

{

 

 

CultureInfo ciCurr = CultureInfo.CurrentCulture;

 

 

 

int weekNum = ciCurr.Calendar.GetWeekOfYear(dtPassed, CalendarWeekRule.FirstFourDayWeek, DayOfWeek.Monday);

 

 

 

return weekNum;

 

}

 

 

 

Does anyone know how to retrieve the Week number display in the Rad Calendar?

also,

Does anyone know how to select a week based on a Week number  in the Rad Calendar?

 

Your response to this thread would be excellent.

 

Regards,

 

Alberto

Dimo
Telerik team
 answered on 27 Sep 2010
4 answers
296 views
Howdy,

I am using the editor with a custom button which highlights selected text and allows users to make comments on content. I need to set the content area of the editor to read-only, but I don't want to lose my button functionality. I tried enabled = false but that just dumped the content with no toolbar.

Thanks,
David
Delphi
Top achievements
Rank 1
 answered on 27 Sep 2010
1 answer
121 views
Hi friends!!!!!!!
I am using RagGridView, i want that user should allowed to do single operation at a time, whether he allowed to add the record or he can only edit the record, he will not allowed to do both the operation at once.


How can i achieve this please help?

Thanks in advance.

Manoj Gupta
Princy
Top achievements
Rank 2
 answered on 27 Sep 2010
2 answers
117 views

hi,

i have grid with columntemplate and as a template i use button.

when user clicks that button radwindow shows with proper content

however when user closes that window and starts paging grid that radwindow keeps showing! 

why? what am i  doing wrong?

but when i set in radwindowmanager OnClientClose="Clientclose" where 

function OnClientclose(radWindow) {
  window.location.href = top.location;}

it works fine but i ont want to load the same page again

any help...? pliz

regards

ksysiek

KRZYSZTOF
Top achievements
Rank 1
 answered on 27 Sep 2010
4 answers
121 views
I'm using Telerik,Web.UI with version 2010.2.713.40. I've developed a module for DNN with a RadScheduler control and I want to localize it in spanish.

Usually when I localize a Telerik control I make a copy of the english resource file, in this case RadScheduler.Main.resx, rename it to RadScheduler.Main.es-ES.resx and put it in the App_GlobalResources of the portal (not the App_GlobalResources of the module).

But now this doesn't seemt to work. What i'm doing wrong.

Thanks in advance
Iker Llanos
Top achievements
Rank 1
 answered on 27 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?