Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
180 views
Hi,
   I have a schedular which is used to store the staff appointment details.
I also have a dashboard module which has a grid view control to show all the appointments based on the date criteria given on dashboard.meaning if the date selected is 20 March 2011 ,then show all the appointments on the dashbaord which is Scheduled on 20 March 2011.
When a new appointment is created then its appoiintment is stored in a table named "AppointmentSchedular".If the appointment is a recursive appointment then the recursive information is stored in RECDATA field of the AppointmentSchedular table as Follows.
DTSTART:20110411T063000Z  DTEND:20110411T073000Z  RRULE:FREQ=WEEKLY;UNTIL=20110419T000000Z;INTERVAL=1;BYDAY=MO 

What i want is when a new appointment is created which is recursive,then I need to show the recursive appointment on the grid view on Dashbaord Page.
Eg:I created a recursive appointment of a staff on 11 April 2011. The Appointment is Daily basis till 15 April 2011.
So now what i need is, to show this particular appointment from 11 April 2011 to 15 April 2011 on the dashboard.

Urgent Help Needed...
Regards
Clyde
Top achievements
Rank 1
 answered on 13 Apr 2011
2 answers
80 views
I have radupload control on my web page with progress bar.

Every time I access the page (only used for uploading) and when I click on submit for the first time I dont get error but files are not uploaded.
If I continue to use that page with other files everything is ok.

If I go to another page and then back again, first upload is not working again.

I try IE9 anf FF4. Same thing!

Marko
Peter Filipov
Telerik team
 answered on 13 Apr 2011
6 answers
150 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
70 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
112 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
150 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
98 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
63 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
109 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
343 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?