Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
159 views
I have Visual Studio 2010 Beta 2 and Windows 7 Ultimate (Italian version).

When turn on design mode often happens this error:

RadGrid - gridAccessiSystem.IO.FileNotFoundException: Could not load file or assembly 'Telerik.Web.UI, Version=2009.3.1208.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. Impossibile trovare il file specificato. File name: 'Telerik.Web.UI, Version=2009.3.1208.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' at Telerik.Web.Design.RadGridDesigner.GetDesignTimeHtml(DesignerRegionCollection regions) at System.Web.UI.Design.ControlDesigner.GetViewRendering(ControlDesigner designer) WRN: Assembly binding logging is turned OFF. To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1. Note: There is some performance penalty associated with assembly bind failure logging. To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

Someone else happens? Is there a solution?

Thanks, Andrea
Andrea Gorin
Top achievements
Rank 2
 answered on 11 Jan 2010
1 answer
109 views
Hello,
 
i am new user and trying to get familiar with telerik radscheduler.

Can you please show me how to write a code for weekly & monthly  recurrence for the appointment in a calendar programatically as  i do not want to use the inbuilt data provider  control . I search all your articles and videos but could not find any example related to task i want to do just found one example for hourly appointment on the following url 


 i try to do something similar in asp.net ajax version but could not can you please help .. correct me if am doing something wrong.

Here is my code ...

   Appointment appointment = new Appointment();
        appointment.Start = Convert.ToDateTime("1/8/2010 10:00:00 AM");
        appointment.End = Convert.ToDateTime("1/20/2010 10:30:00 AM");
        appointment.Subject = "Example";

        RecurrenceRange range = new RecurrenceRange(DateTime.Today.AddDays(1).AddHours(9.5), TimeSpan.FromHours(2.5), DateTime.Today.AddMonths(2), Int32.MaxValue);
        WeeklyRecurrenceRule rule = new WeeklyRecurrenceRule(1, RecurrenceDay.Tuesday , range);
        
        

          appointment.RecurrenceRule = rule.ToString();


        RadScheduler1.InsertAppointment(appointment);
        RadScheduler1.DataBind();

Peter
Telerik team
 answered on 11 Jan 2010
3 answers
174 views

I have a radtooltip that contains a radeditor. The radeditor is rendered when the radtooltip is visible and will allow content input, however none of the editor functionality works i.e. spell check search, ect. My situation is essentially this: aspx page, radtooltip, radeditor in radtooltip, fire tooltip, editor is rendered and functionality does not work. Any Ideas?

Svetlina Anati
Telerik team
 answered on 11 Jan 2010
2 answers
92 views
Hi all,

How do I put the nested grid in edit mode when the master grid is expanded?

Thanks,
Khanh
Khanh
Top achievements
Rank 1
 answered on 11 Jan 2010
2 answers
82 views
Hi,

I am using RadScheduler in my project. I have to highlight current day and current week of month view and week view respectively.
How can I achieve this functionality...
Please help me...

Peter
Telerik team
 answered on 11 Jan 2010
9 answers
397 views
I am trying to hide the print button if the row meets a certain ID. I have this code below in my loop and I cannot seem to get this to work. It keeps giving me an error stating the Object is not set to an instance of an object. 
What is the correct way of getting the control and hiding it within the Rad listview?

 Hope someone can help thanks.

If

 

GetCartItems.Rows(i).Item("ID") = "DZ" Then

 

 

 

Dim PH As PlaceHolder = CType(RadListCart.FindControl("PlaceHolder1"), PlaceHolder)

 

 

 

Dim Imageb As ImageButton = CType(PH.FindControl("PrintButton"), ImageButton)

 

Imageb.Visible =

 

True

 

 

 

End If

 

 

Dwayne Starkey
Top achievements
Rank 1
 answered on 11 Jan 2010
1 answer
91 views
Before I go writing a function for this is there anything out there that shows how to "not" use the built in prev/next buttons that overlay on top of the tabs, but rather use your own onclick events on other links to do get_nextTab etc.?

I can't use margin etc. because I want to put them on the same area as the tab but not directly on the tabs, yes I know that there is a js hack floating around the forums but that doesn't work for firefox etc. so doesn't really work if i want it to be cross browser.

Yana
Telerik team
 answered on 11 Jan 2010
3 answers
213 views
I am a new user of Telerik components and are impressed by their use and the support that is offered.
I have a problem: I have a Radgrid composed GridTemplateColumn inside which there are "asp: TextBox". The user types in these TextBox and a "asp: Button" outside the RadGrid to save what has been edited by the user. Then the server side I have somehow the data entered by the user.

Can you help?
It would be useful to post the code to be used as an example.

Alessandro
Martin
Telerik team
 answered on 11 Jan 2010
1 answer
125 views
Hi,

i have the following in a RadGrid:
<telerik:GridTemplateColumn HeaderText="Duration" UniqueName="Duration"
                <ItemTemplate> 
                    <asp:Label runat="server" ID="lblConferredDate" Text='<%# Eval("ConferredDate") %>'></asp:Label> 
                </ItemTemplate> 
                <EditItemTemplate> 
                    <telerik:RadDatePicker  ID="rdpConferredDate" runat="server" DateInput-EmptyMessage="No Date" DbSelectedDate='<%# Bind("ConferredDate") %>'
                    </telerik:RadDatePicker > 
                </EditItemTemplate> 
            </telerik:GridTemplateColumn>  

The issue is that when i try to bind to the editItemTemplate i get exception about the mindate. What i would like is that if a date is less than the mindate of the control then set the value to null or empty.

Can anyone tell/show me how to handle bind exceptions? 
Princy
Top achievements
Rank 2
 answered on 11 Jan 2010
3 answers
96 views
I am seeing an issue when trying to manually auto-complete a combobox on a page that has an anchor in the URL

My url is like EditOrder.aspx?o=10000#editedItem

In my page I have a method:
        protected int GetQueryStringID(string qryParam) {  
            int retVal = 0;  
 
            if(Request.QueryString[qryParam] == null || Int32.TryParse(Request.QueryString[qryParam], out retVal) == false)  
                retVal = 0;  
 
            return retVal;  
        }  
 

From a java script call in a Rad Combobox I am
 
//  Force the server-side populate once the combobox is fully opened.  
function OnItemNumberOpened(sender, eventArgs) {  
    var cb = sender;  
    cb.requestItems(cb.get_text(), false);  
}  
 

When this call happens Request.QueryString["o"] = "10000#" causing the page to fail.  Other Ajax calls on this page are working just fine.  I have worked around it by stripping off everything after the "#", but I was just wondering if this was a know issue with the ComboBox control and if it would be fixed in an upcoming release?

Using IE7 BTW.

Thanks,
Kevin M. Betts
Web Developer
Kimball Midwest
Simon
Telerik team
 answered on 11 Jan 2010
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?