Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
113 views
Hi,

thing is that sometimes RadWindow layout is really bad. I'm using the latest version of telerik controls, so update is not an option. When the bug appears, after few restarts it will work again fine. It seems to appear randomly. Here is the screenshot of the layout. Any help would be good.

Thanks
Bozhidar
Telerik team
 answered on 05 Dec 2012
3 answers
72 views
Hi,
Steps to reproduce:

1.Upload an image to image editor. for ex:(1000 X1000) pixels
2. Perform crop. (500X500) pixels
3.Click undo.

IN IE9,IE8 :
The original image is restored to the height and width of the cropped image size.i.e.(1000X1000) pixels image is restored with (500X500) pixels.

IN Firefox:
The uploaded  image is  restored .. which is as expected.
 
Vessy
Telerik team
 answered on 05 Dec 2012
1 answer
160 views
Hi,

I put this code in to master page,so that page would be refresh partially. but i am getting
this error  :
 Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.

Code :

<form id="form1" runat="server">
   <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
   </telerik:RadScriptManager>
   <div>
      <telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1">
           <asp:Table ID="Table1" runat="server" CellSpacing="0" CellPadding="0" border="0"
            
           </asp:Table>
     </telerik:RadAjaxPanel>
   </div>
   </form>

I have a aspx page that contain search button and results binding in to treeview.  here I dont want page refreshing when click on submit..
If i remove RadAjaxPanel then it works fine but page is refreshing.

How can I do partial page updates using telerik ?

Thanks in advance
Kostadin
Telerik team
 answered on 05 Dec 2012
1 answer
95 views
I'm trying to bind a RadGrid to an external xml file. The xml looks something like this:

<?xml version="1.0" encoding="utf-8"?>
<catalog>
  <item>
    <id>0ecd4410-3b06-454e-bf0f-97d6323f61c9</id>
    <name>Name #1</name>
  </item>
  <item>
    <id>0ecd4410-3b06-454e-bf0f-97d6323f61c9</id>
    <name>Name #2</name>
  </item>
</catalog>

All of the examples I found were using the xml attributes and not the inner text of a xml node. Is it possible to bind the above xml?

Kostadin
Telerik team
 answered on 05 Dec 2012
3 answers
216 views
Why my recurrence in radschedule doesn't work it just display the master recurrence? see attached image

here's the scheduler control

<telerik:RadScheduler ID="RadScheduler1" runat="server"            
    TimelineView-UserSelectable="false"
    ShowResourceHeaders="true"
    EnableViewState="false"
    AllowInsert="false"
    ShowAllDayRow="false"
    HoursPanelTimeFormat="HH:mm"
    OverflowBehavior="Scroll"
    Height="700px"
    MinutesPerRow="60"
    ShowFooter="false"
    ShowFullTime="true"
    AllowDelete="false"
    ReadOnly="true" DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End">
    <DayView EnableExactTimeRendering="true" HeaderDateFormat="dddd, dd MMMM yyyy" />
    <WeekView EnableExactTimeRendering="true" HeaderDateFormat="dddd, dd MMMM yyyy" />
</telerik:RadScheduler>


here's the code 

protected void Page_Load(object sender, EventArgs e)
{
    RadScheduler1.SelectedView = Telerik.Web.UI.SchedulerViewType.DayView;
    RadScheduler1.SelectedDate = new DateTime(2012, 10, 19, 13, 0, 0);
 
    Appointment app = new Appointment
    {
        ID = 1,
        Start = new DateTime(2012, 10, 19, 13, 0, 0),
        End = new DateTime(2012, 10, 19, 15, 0, 0),
        Description = "description",
        Subject = "subject",
        RecurrenceState = RecurrenceState.Master,
    };
 
    RecurrencePattern pattern = new RecurrencePattern();
    pattern.Frequency = RecurrenceFrequency.Daily;
    pattern.DaysOfWeekMask = RecurrenceDay.EveryDay;
           
    RecurrenceRange range = new RecurrenceRange();
    range.Start = new DateTime(2012, 10, 19, 13, 0, 0);
    range.RecursUntil = new DateTime(2012, 10, 30, 15, 0, 0);
     
    DailyRecurrenceRule rrule = new DailyRecurrenceRule(2, range);
    app.RecurrenceRule = rrule.ToString();
    //DTSTART:20121019T130000Z\r\nDTEND:20121019T130000Z\r\nRRULE:FREQ=DAILY;UNTIL=20121030T150000Z;INTERVAL=2;BYDAY=MO,TU,WE,TH,FR,SA,SU\r\n
 
    RadScheduler1.InsertAppointment(app);
}
Plamen
Telerik team
 answered on 05 Dec 2012
3 answers
75 views
Hi Team,
i have hosted my application in Azure environment even i have set the property of
StripFormattingOptions="NoneSupressCleanMessage, ConvertWordLists"
StripFormattingOnPaste="NoneSupressCleanMessage, ConvertWordLists"

i am keep on getting this message " do you want to allow this webpage to access your clipboard", i tried all the thread nothing is working,



Thanks,
Saravanan.
Rumen
Telerik team
 answered on 05 Dec 2012
3 answers
71 views
I've noticed that the RadCombo boxes on my web project (VS2012) all seem to be displaying a tiny bit of the first dropdown item, hardly more than a yellow line.

(The project is currently set to the Sunset skin with a skin manager on the master page.)

Am I forgetting a height setting somewhere?  Any fix for this?  
Kalina
Telerik team
 answered on 05 Dec 2012
1 answer
253 views
In a RadListView I use a RadDataPager as pager with PageSize="10". This gives me a pager with 5, 10, 20 and 50 as page size options with 10 selected as default.

Is it possible to have one of the other values selected by default?

Angel Petrov
Telerik team
 answered on 05 Dec 2012
0 answers
52 views
In the Telerik documentation, the word "changed" is used ambiguously which results in a lack of clarity and concision. Here's an example of what I mean.  What does the following (hypothetical) sentence mean?

THE ROW HAS CHANGED.

Does it mean that focus has moved to a different row?  Or that the row has been modified?

How about the following event name:

RowChanging

Does it mean we are moving to a different row or that the row is undergoing modification?

It is difficult to know which meaning is intended; either meaning can make sense in context. In Windows control programming, we are working with a GUI paradigm where events can be triggered by focus moving elsewhere, but we are also working with an object-oriented paradigm where events are triggered when the underlying data objects undergo modification.  So it is very important to have clarity when speaking about "change" as it relates to data-driven GUI controls, where these two paradigms coincide.  

Tim R
Top achievements
Rank 1
 asked on 05 Dec 2012
1 answer
33 views
Hi Team,

in my application i have more css files. so i added editor in one page with ajax modol poup extender,
wheneve i open the popup radeditor width and hight is not setting correctly. due to this issue i can' see the data's in there.


Rumen
Telerik team
 answered on 05 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?