Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
87 views
I want to customize the pager using my own controls. How can I access the controls that I use in the controls  in the RadDataPagerTemplatePageField PagerTemplate so I can show and hide the controls as I need.
Pavlina
Telerik team
 answered on 28 Jul 2011
1 answer
195 views
Dear Telerik Team,

How to disable the RAD Update prompt in Visual Studio? The one as in the attachment.
Sebastian
Telerik team
 answered on 28 Jul 2011
1 answer
137 views

How i take the image from saved path ,
I'm not saved in binary field ,
I'm saved in file path .
How to show


Thanks,
Mohamed.
Niko
Telerik team
 answered on 28 Jul 2011
2 answers
120 views
Hi everybody,

I have added a dock in the aspx page and I use Telerik skins. I add the skin stylesheet like this, in the OnInit method of the page

HtmlLink lrDock = new HtmlLink();
lrDock.Href = "~/style/-1/skins/MySkin/Dock.MySkin.css";
lrDock.Attributes.Add("type", "text/css");
lrDock.Attributes.Add("rel", "stylesheet");
Page.Header.Controls.Add(lrDock);



I have change a property of the css Dock.MySkin.css page  :

.RadDock_MySkin.rdTop .rdRight
{
width: 0px;
}

But when I load the page, that class is not used. If I put the keyword !important, the class is used. but I wanted to know if there was an other way to override a style which is define in the Dock.MySkin.css.

Moreover, when I check the <head> tag in the source of the page, we can see that the stylesheet is loaded before the telerik axd. 

<link href="../../../style/-1/skins/MySkin/Dock.MySkin.css" type="text/css" rel="stylesheet" />
 
<link href="/dev/WebResource.axd?d=aqedTiDwmUI4QsO_0Jw61omT-LA1rFwmbV4c1GVQqcU-wKQGCetoudaQtJPuF7ZedWlBts1MIvLkr3B3WKzZshepG7nqpwP86LZM20NTk7RGF4f4b9gBIvvmp8CBaa3_B9m7IQ2&t=634320685135340310" type="text/css" rel="stylesheet" class="Telerik_stylesheet" />


So I wanted to know if :

- It was possible to load the stylesheet after the webresource.axd
- I want the css to be the priority on the webresource.axd, without using the keyword "!important"

Thanks for replying
TANSERI
Top achievements
Rank 1
 answered on 28 Jul 2011
2 answers
88 views
Hi,

I'm trying to implement the following and need your advice/assistance in this task.
I have a grid binded to the list of objects, so each column is some property of the object.
I need something like the + sign as the first column, that will change the column DataField on the client-side.

For example, lets say I have the list of files.
So short version of row will look like this
+ | 1.4mb | somefile.txt

Pressing the + will change it to - and show something like this in this row:

- | 1.4mb | somefile.txt
                Last Modified Date: xxx
                Create date: xxx

All this stuff should be client-side and cause no postback.

Looking forward to hear from you.

Thanks,
Mykhaylo
Mykhaylo
Top achievements
Rank 1
 answered on 28 Jul 2011
10 answers
173 views
Hi,

I am trying to use tooltip with its content loaded dynamically (on demand), but the tooltip always gets cropped. After much investigation I found that this is due to a delay in page load event. I have managed to reproduce the issue simply by using Thread.Sleep placed in page Load event handler. Somewhere between 80 to 90 milliseconds is where the problem starts to appear. Below 80ms everything is good. When the tooptip gets cropped, what we see on screen is only the top part of the tooltip like about 10 pixels high, the rest looks like it is clipped. Please can anyone spot wherer I have gone wrong? or is this a bug? If it is when can I expect to have it fixed please? Is there a work around?  Thank you.

This is my aspx code:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="TEST_Default" %>
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
 
<!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:RadScriptManager ID="RadScriptManager1" Runat="server"></telerik:RadScriptManager>
        <telerik:RadToolTipManager runat="server" ID="RadToolTipManager1" Position="BottomRight"
            RelativeTo="Mouse" Animation="Resize" HideEvent="LeaveTargetAndToolTip" Skin="WebBlue">
            <TargetControls>
                <telerik:ToolTipTargetControl TargetControlID="viewAgentLink" />
            </TargetControls>
        </telerik:RadToolTipManager>
        <telerik:RadAjaxLoadingPanel runat="server" ID="LoadingPanel1" CssClass="RadAjax" Transparency="60">
		<div class="raDiv"></div>
		<div class="raColor raTransp"></div>
	</telerik:RadAjaxLoadingPanel>
 
 
	    <asp:Label ID="viewAgentLink" runat="server" CssClass="agentLink">view agent details</asp:Label>
 
    </form>
</body>
</html>


Here is my code behind file:
Imports Telerik.Web.UI
 
Partial Class TEST_Default
    Inherits System.Web.UI.Page
 
    Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load
        System.Threading.Thread.Sleep(100)
    End Sub
 
    Protected Sub RadToolTipManager1_AjaxUpdate(ByVal sender As ObjectByVal e As Telerik.Web.UI.ToolTipUpdateEventArgs) Handles RadToolTipManager1.AjaxUpdate
        If e.TargetControlID = "viewAgentLink" Then
            Dim contentCtrl As Control = Page.LoadControl("AgentDetailsControl.ascx")
            e.UpdatePanel.ContentTemplateContainer.Controls.Add(contentCtrl)
            CType(sender, RadToolTipManager).Title = "Agent Details"
        End If
    End Sub
 
End Class



PS: I have not included the usercontrol file/code, but you can use any user control with Lorem Ipsum text in it.

Kurniadi
Top achievements
Rank 1
 answered on 28 Jul 2011
1 answer
67 views
hi,

I am tring your sample and I think something not workink their.
go please to http://demos.telerik.com/aspnet-ajax/grid/examples/programming/accessingcellsandrows/defaultcs.aspx

the problem:

1) push the edit button for one row.
2) change the "Quantities in stock" to other number (not the default one) in the combo.
3)go with the mouse to other text box(Ship name), you will see that the combo you just changed in step 2, changed again to the default number.


thanks

Udi
Marin
Telerik team
 answered on 28 Jul 2011
6 answers
99 views
Hello,

I''m using RadUpload in a UserControl. It works fine until I add a RadCombobox in the UserControl (see attached images). The control isn't rendered right.
Someone any idea?

Regards,
  Jos Meerkerk
RvdGrint
Top achievements
Rank 1
 answered on 28 Jul 2011
6 answers
234 views
I have genrate key for my sitefinity license and i have giiven wrong domain name there.


How could i update that.
Grisha 'Greg' Karanikolov
Telerik team
 answered on 28 Jul 2011
1 answer
115 views

I am using an Ajax-enabled RadCalendar.  The calendar is using SpecialDays to identify event dates on the calendar, and I am dynamically assigning the special days based on values I pull from my database when the control loads. All of this works as expected, and I see the desired css-decoration of the event dates.  However, I also give my user the option of changing his location via a drop-down.  When the user chooses a new location, the SelectedIndexChanged event is fired, and the database is re-queried for a new list of event dates. 

I am trying to use this new list of event dates to re-build the SpecialDays list.  And, in fact, I am able to clear the current SpecialDays list, and populate it with the new dates.  However, I can’t get the new SpecialDays to display without refreshing the entire page.   How do I code this control so that the new SpecialDays list will display without doing a refresh?

I am new to posting in your forums, so I am not sure what additional information you may need.  Let me know if you need any additional information.

Thanks in advance!

Pavlina
Telerik team
 answered on 28 Jul 2011
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?