Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
50 views

Hello,

P tag is created with style applied to P tag above it on each enter.

I have attached image for better understanding of the issue.

Can you please provide a solution to this issue ?

Thanks,
Khushboo

Khushboo
Top achievements
Rank 1
 answered on 26 Aug 2015
0 answers
58 views
Where can I download  version 2014.1.403.40 of UI for ASP.NET AJAX?
Paul
Top achievements
Rank 1
 asked on 25 Aug 2015
8 answers
182 views

This is a simple issue but not sure what I am doing wrong , this piece of code opens a radwindow but doesnt hit the details.aspx

 <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="RadGrid1"></telerik:AjaxUpdatedControl>
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>           
    </telerik:RadAjaxManager>

       <telerik:RadGrid ID="RadGrid1" runat="server" Skin="Office2010Silver" AllowPaging="True" AllowSorting="True" AllowFilteringByColumn="True" PageSize="25" OnItemCommand="RadGrid1_ItemCommand">
         <PagerStyle Mode="NumericPages" AlwaysVisible="true"></PagerStyle>
         <MasterTableView >

      <Columns>
        <telerik:GridTemplateColumn UniqueName="TemplateColumn">
            <ItemTemplate>                
                <span> <asp:ImageButton ID="NotifyAgain" ImageUrl="~/Images/details.png"  CommandName="details" runat = "server" /> </span>              
                            
            </ItemTemplate>
        </telerik:GridTemplateColumn>
      </Columns>
    </MasterTableView>
         <HeaderStyle Width="10px" />
         <ClientSettings EnableRowHoverStyle="true">
              <Resizing AllowColumnResize="true" ResizeGridOnColumnResize="true" AllowResizeToFit="true" />
            </ClientSettings>
     </telerik:RadGrid>

        
        <telerik:RadWindow ID="RadWindow1" Modal="true"  Skin="MetroTouch" runat="server" Width="800px" Height="800px" Title="Details" CssClass="override" >
  
</telerik:RadWindow>

  protected void Page_Load(object sender, EventArgs e)
              
        {       
            if (!Page.IsPostBack)
            {
                RadGrid1.DataSource = GetDataTable();
                RadGrid1.DataBind();

            }
        }


  protected void RadGrid1_ItemCommand(object source, GridCommandEventArgs e)
        {
            GridDataItem item = (GridDataItem)e.Item;
            string value = item["FileName"].Text;

            switch (e.CommandName)
            {
                case "details": Details(value);
                    break;
            }
        }

        private void Details(string fileName)
        {

            string fullPath = ConfigurationManager.AppSettings["path"] + fileName;     

             RadWindow1.NavigateUrl = "details.aspx?name=" + fileName; 

             string script = "function f(){$find(\"" + RadWindow1.ClientID + "\").show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);";
            ScriptManager.RegisterStartupScript(Page, Page.GetType(), "key", script, true);
          
        }
             ​

binny
Top achievements
Rank 1
 answered on 25 Aug 2015
4 answers
298 views
I've boiled this down to a very simple scenario, so it's probably me misunderstanding the intended usage. I see the problem on the following setup:
Dev environment: VS2008 on Vista Business / running application locally on "Cassini"
RadControls: ASP.NET Ajax v. 2.2.7
Browsers: IE8 and Fx 3.0.5

I have a RadDatePicker inside an UpdatePanel. After a partial postback, the calendar popup no longer works. This is part of a large application, but the problem occurs with just the following ASPX code (no modifications to the code file):

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Cal-Text.aspx.cs" Inherits="Cal_Text" %> 
<%@ Register TagPrefix="Rad" Namespace="Telerik.WebControls" Assembly="RadInput.Net2" %> 
<%@ Register TagPrefix="Rad" Namespace="Telerik.WebControls" Assembly="RadCalendar.Net2" %> 
 
<!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>Untitled Page</title> 
</head> 
<body> 
    <form id="form1" runat="server"
    <div> 
    <asp:ScriptManager ID="uxScriptMan" runat="server" /> 
    <asp:UpdatePanel ID="uxAdditionalChildPanel" UpdateMode="Conditional" runat="server"
        <ContentTemplate> 
            <Rad:RadDatePicker ID="uxDate" runat="server" /> 
            <asp:Button ID="uxSubmit" runat='server' UseSubmitBehavior="true" Text="Submit" /> 
        </ContentTemplate> 
    </asp:UpdatePanel> 
    </div> 
    </form> 
</body> 
</html> 
 

That's really all there is to it. Any pointers would be appreciated.

Thanks,
WarrenM
Pavlina
Telerik team
 answered on 25 Aug 2015
8 answers
379 views

Hi

I've noticed that the onClientIndexChanged event on RadComboboboxes fires even though the selected index hasn't changed.

F.ex, if I open the dropdownlist of one RadComboboxes, close it again without selecting anything, and open the dropdownlist of another RadCombobox, the event fires on the first RadCombobox.

Is it really supposed to do that, or is it a bug?

Ivan Danchev
Telerik team
 answered on 25 Aug 2015
5 answers
349 views

How can I change builtin text of RadScheduler from Subject=> Description, StartTime => Start Date, EndTime=> EndDate and how can I hide checkbox of AllDay and Recurrence.

 I had also tried inside OnFormCreated event

           CheckBox AllDayEvent = (CheckBox)e.Container.FindControl("AllDayEvent");
                  AllDayEvent.Visible=false;
                  RadTimePicker StartTime = (RadTimePicker)e.Container.FindControl("StartTime");
                  RadTimePicker EndTime = (RadTimePicker)e.Container.FindControl("EndTime");
                  StartTime.Visible = false;
                  EndTime.Visible = false;

but after this code save button does not work. 

Can I set the height of Subject box? You can easily understand my questions in attached image.

Please find attached image.​

Thanks

Ivan Danchev
Telerik team
 answered on 25 Aug 2015
10 answers
346 views

I am using Ayscupload to on a site. The upload works mostly.

 

I have an issue I can't place. Sometimes, mostly on mobile, the site will not upload the first file. I thought it might have been the progress bar ​so I removed it and I got the same result.

The first file uploads and the little yellow dot blinks but it never finishes the file. Now I can select another file while this one is blinking and that file works. When I press the "Upload" button to save the files all of them will be there except that firston If I leave the upload page and then return to it the page will now work perfectly for that session. It is only the FIRST file on the FIRST time. It is frustrating my users.... Thoughts??

 Here is the DIV that contains the control! I am using ASP.NET 3.5 and AJAX

 <div>
        <asp:Label ID="lblNoResults" runat="server" Visible="true">No Uploaded Files Yet.</asp:Label>
        <asp:Repeater ID="repResults" runat="server" Visible="false">
                <HeaderTemplate>
                    <div>Uploaded Files</div>
                </HeaderTemplate>
                <ItemTemplate>                    
                    <%#DataBinder.Eval(Container.DataItem, "Filename")%>
                    (<%#DataBinder.Eval(Container.DataItem, "ContentLength").ToString & " bytes"%>)
                    <br />
                </ItemTemplate>
            </asp:Repeater>
        <br />
        <asp:Repeater ID="repInvalidResults" runat="server" Visible="false">
                <HeaderTemplate>
                    <div>Invalid Files</div>
                </HeaderTemplate>
                <ItemTemplate>
                    File: <%#DataBinder.Eval(Container.DataItem, "Filename")%>
                    (<%#DataBinder.Eval(Container.DataItem, "ContentLength").ToString() + " bytes"%>)
                    <br />
                    Mime-type: <%#DataBinder.Eval(Container.DataItem, "ContentType").ToString()%>
                    <br /><br />
                </ItemTemplate>
            </asp:Repeater>
    </div>​

Dimitar
Telerik team
 answered on 25 Aug 2015
3 answers
99 views

I am finally getting this to work the way I want. For some photos it works perfectly. I use a browse button to select the image, click upload and it populated the image editor with that image. I can then use the save icon in the toolbar to save the image and close the RadWindow the ImageEditor is in. 

 

The strange part is for a few images that does not work. I can browse, select and upload the image, but the save portion does nothing. The upload shows the green dot, so the image file is valid. It is even uploaded into the temp directory. So why would the save code not fire for certain images. I can consistently reproduce what images it is for.

It is not the file size as one of the ones with an issue is smaller than one that works fine. 

Any Ideas?

Vessy
Telerik team
 answered on 25 Aug 2015
1 answer
177 views

Hi,

I have used load on demand functionality to bind the items to radTreeList. Now my problem on this list I have a functionality that I have links aginst the items and on click of that it opens a popup window which have ok Button. so on click of this ok button some action is done and post back is done and whole data is binded to radTreeList but in collapsed mode.

Here my requirement is to show the only that child item in expanded mode which we performed the action in previous step after the postback.

 

 

Thanks,

Ram

 

Maria Ilieva
Telerik team
 answered on 25 Aug 2015
12 answers
1.3K+ views
Hi
   Is it possible to plot two different  series in one chart ?
  i mean i have bar chart with 2 yaxis ,is it possible make one axis as line series and another one as bar series ? in programmatically

 Pls reply me asap 
   Regards 

      Aravind
Danail Vasilev
Telerik team
 answered on 25 Aug 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?