Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
158 views
We are using q1 2011.  We are investigating the timeline view and like the slot duration to be 7 days and display 90 days at a time.  When the scheduler is configured this way a one day event will fill the whole 7 day week cell block.  We would like the appointment to only fill 1/7th of the cell horizontally.  We realize that setting the slot duration to one day will resolve this issue but we would like to display 90 days at a time and this creates horizontal scrolling.

I have played around with creating an item template and added a table with two rows.  The first being the title and the second row have 7 cells foreach day and color the corresponding day cell but this logic will become complicated with multiple day events going across weeks.

Any tips would be appreciated
Mike
Top achievements
Rank 1
 answered on 13 Apr 2011
1 answer
85 views
Hi,

I'm using the scheduler with webservice binding! everything is fine and the component works as expected. My only concern is performance wise. If I get between 40-50 appointments it works really fast but beyond that limit it starts to take a lot of time to render the appoinments (2> seconds).

I customize the appointment appearance on the appointmentcreated event but I don't do anything fancy there. If I remove all the customization it's still slow.

I wander if there has been improvements performance wise in the new release for the scheduler or not. As well if there is something that I can do so it takes less time (render the appointments in a lightweight mode). Having that much javascript it will get slower on some client machines I guess.

regards,

jose

Nikolay Tsenkov
Telerik team
 answered on 13 Apr 2011
1 answer
123 views

 

Hi,

I am using a user control in a radwindow manager. I using a simple requiredfiled validator on my user control, But if I add ny validator the rad window doesn't get open at all. Below is code on my page.

<
telerik:RadWindowManager runat="server" RestrictionZoneID="offsetElement" KeepInScreenBounds="True"

 

 

Modal="True" Animation="Fade" ID="RadWindowManager1" EnableShadow="false" ShowOnTopWhenMaximized="false"

 

 

Width="425" Height="525" DestroyOnClose="True" Behavior="Default" InitialBehavior="None"

 

 

OnClientClose="OnClientClose">

 

 

<Windows>

 


 

<telerik:RadWindow ID="RadWindowContactEditor" runat="server" Width="430" Height="350">

 

 

<ContentTemplate>

 

 

<uc7:ucCustomerContactEdit ID="ucCustomerContactEdit1" runat="server" />

 

 

</ContentTemplate>

 

 

</telerik:RadWindow>

 


 

</Windows>

 

 

</telerik:RadWindowManager>

 


Thanks
Marin Bratanov
Telerik team
 answered on 13 Apr 2011
5 answers
167 views
Hi there,

Having a problem with RadWindow - I have used the code outlined in your KB article http://www.telerik.com/support/kb/article/b454K-tgh-b454T-cee-b454c-cee.aspx (VB.net code) to open a radwindow to show upload progress. This control is tied in to an asp.net Create User Wizard to upload an image, which works fine.

However, when I then complete the account creation of the User Wizard control, the RadWindow fires again, showing upload progress for the image previously uploaded - what am I doing wrong?

thanks for any help anyone can provide!
GP
Top achievements
Rank 1
 answered on 13 Apr 2011
1 answer
116 views
Hi,

I have a radcombobox in a form page:
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        </telerik:RadScriptManager>
        <asp:Button ID="Button1" runat="server" Text="Button" />
        <telerik:RadComboBox ID="cbxProva" runat="server">
        </telerik:RadComboBox>
    </div>
    </form>
</body>
</html>

VB code:

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        cbxProva = CaricaComuni("LE")
    End Sub

 i want to populate the control with external module

this is the code in the module:
Public Function CaricaComuni(ByVal Provincia As String) As RadComboBox
       CaricaComuni = New RadComboBox
       Try
           Dim sql As String
 
           sql = "SELECT IdComune, Comune FROM Sys_Comuni WHERE Provincia = @Provincia AND RecordEliminato = 0 ORDER BY Comune"
 
           Dim adapter As New SqlDataAdapter(sql, connStr)
           adapter.SelectCommand.Parameters.Add("@Provincia", SqlDbType.Char).Value = Provincia
           Dim dt As New DataTable()
           adapter.Fill(dt)
 
           CaricaComuni.DataSource = dt
           CaricaComuni.DataTextField = "Comune"
           CaricaComuni.DataValueField = "IdComune"
           CaricaComuni.DataBind()
           CaricaComuni.Items.Insert(0, New RadComboBoxItem("", ""))
 
       Catch ex As Exception
           'MessageBox(ex.Message, ex.StackTrace.Substring(ex.StackTrace.LastIndexOf("\") + 1))
       End Try
   End Function

When i press the button the debug is good, if i control in debug mode the combox response correctly populate:

?cbxProva.Items(1).Text
"ACQUARICA DEL CAPO"

But the combobox in the page is empty...

Why?

Dimitar Terziev
Telerik team
 answered on 13 Apr 2011
4 answers
80 views
I had problems with telerik controls in the browser 9, how to perform some validationahy explore 9?

ALBERT
Top achievements
Rank 1
 answered on 13 Apr 2011
1 answer
129 views
How can I drag/drop nodes within a treeview, but block the drop (or change the destination index) for some locations.

I have a treeview which is used to manage job scheduling set up with the level 0 nodes being foremen and level 1 nodes as jobs.
The job nodes at the top of the list for each foreman have a custom attribute on them to denote that it is started and they are not draggable.  I need to either block dropping the unstarted jobs in the middle of the started ones or change the destination index to the first one after the last started job.

Kate
Telerik team
 answered on 13 Apr 2011
16 answers
383 views
hi,
    we are using RadMenu in one of our application.but one of our client (government agency-US client) he tested our application using WAT tool for testing the section 508 (version:2008-01-30). in this tool he reported the frames issue, if i check that option then it is showing the below message

Frame Information

  • IFRAME-1
    • Name not specified
    • Longdesc not specified
    • Title not specified
    • Src="javascript:'';"
  • IFRAME-2
    • Name not specified
    • Longdesc not specified
    • Title not specified
    • Src="javascript:'';"
  • IFRAME-3
    • Name not specified
    • Longdesc not specified
    • Title not specified
    • Src="javascript:'';"

NOFRAMES

No "NOFRAMES" Element Found!;


in order to trace this issue i gone through the view source of this particular page but i did not find those iframes in my view source. after a lot of struggle i came to know that they are coming for RadMenu (from my code i removed entire RadMenu after that i checked, then i observed the above issue does not reported, so i concluded that the above issue is because of Radmenu)

along with the above one he had reported one more issue with respect to tables if i click on the tables option in the WAT tool then i am getting the following message (no th element found) which i am adding an attachment.
so, how can we fix it.
Thanks,
Burepalli V S Rao.

Rumen
Telerik team
 answered on 13 Apr 2011
1 answer
169 views

Hi
I'm creating a composite control (say name MyTextBox) which will contains child controls as RadMasked TextBox or Asp.Net TextBox and Button . And then I placed this control in a Demp Page called Defaul.aspx. And I would like to access the text entered in the  MytextBox through javascript as

 

 

document.getElementById(

 

'<%=MyTextBox1.ClientID %>').value.
which is not working because When a compiste control renders, child controls will be wrapped by SPAN element by-default. So How can I access 'value' property from javascript.

 

Maria Ilieva
Telerik team
 answered on 13 Apr 2011
1 answer
71 views
At the moment I am implementing my own behaviour whereby a user clicks on a recurring appointment, and can then choose from a context menu to "Delete all Future Appointments".

This works by parsing the existing Recurrence Rule associated with the appointment, setting the Range.RecursUntil property of the rule to a date/time, and then saving this.

This works, but if you are setting the date/time to part-way through a day, e.g. 14.30 - this is not reflected in the Advanced Form when the user comes to manually edit the Recurrence again.

This is because on the Advanced Form, the "End By" only has a date picker - it doesn't have a time picker as well.

Is there a time-picker available for the "End By" date available?  Or will I have to set the Range.RecursUntil to a "midnight" value all the time? If you are dealing with appointments that recur hourly, then this might cause issues for a few people.

Thanks in advance for your help.
Nikolay Tsenkov
Telerik team
 answered on 13 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?