Telerik Forums
UI for ASP.NET AJAX Forum
13 answers
239 views
I'd previously created my own custom control to pull events from our Exchange server and display them on my employer's intranet website.  I really like the day, week, month, and timeline views of the RadScheduler, but there are (just a few) cases where my own view does a better job of showing upcoming events and event details.

I'd love it if there were a way to create a custom view to plug into the RadScheduler so I could the best of both worlds.  Alternatively, if I could add another View Tab to the header, I'd be content to hide everything but the header and display my own control, wired to make use the properties of the RadScheduler control.
Peter
Telerik team
 answered on 14 Dec 2011
1 answer
86 views
A have a 2 radcombox, 1 with data from datasource (rd1), and the second (rd2) with data transferred from rd1

This two controls are in a asp:panel with many controls which is updated by a button via AjaxUpdatedControl...that good

A have another asp:panel with many controls which is updated by a button (bt2) via AjaxUpdatedControl
When I fired this bt2 in the second panel, the data of rd2 are doubled (not in the screen, but i saw this when postback)

Can you explain me what wrong ?!

Thank you and sorry for my english

Anne
    



Dimitar Terziev
Telerik team
 answered on 14 Dec 2011
0 answers
108 views
I found a bug in RadCalender
Here is test solution for that bug, sorry for chaotic code and names, i did this on rush. Don't have time for your bugs.

http://www.filedropper.com/radcalendarbug

(u will need to add telerik.web.ui, i used 2011.3.1115.40 version)
Also i am adding a screenshot how it looks.
Zÿm
Top achievements
Rank 1
 asked on 14 Dec 2011
1 answer
140 views
Hello,
I have a radcombobox  where on itemsrequested event I use EnableLoadOnDemand  property to show a list of items according to an user input. But I see that if I don't use the combo some time (say, 20 minutes) then the event is not fired. Is it possible to fix that? By the way I defined in web.config very long session timeout: 540. More generally, may be there is the same problem for other RadControls?
Evgeny
Kalina
Telerik team
 answered on 14 Dec 2011
1 answer
64 views
Hi,
I want to change visibilty of RadDatePicker with RadComboBox using Ajax.
I also want to add ajax setting code-behind.
I'm using following code:

protected void Page_Load(object sender, EventArgs e)
{
RadAjaxManager1.AjaxSettings.AddAjaxSetting(rcbSelect, rdpDate);
if(!IsPostback)
rdpDate.Visible = false;
}
   
protected void rcbSelect_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
rdpDate.Visible = true;
}

Everything works great, but there's a problem with RadDatePicker calendar popup. When I click button, it doesn't show after control visible is set to true. It simply does nothing.
No javascript error etc. Do you know what could be wrong? I appreciate any help,
Mateusz
Milena
Telerik team
 answered on 14 Dec 2011
2 answers
113 views
Hello,

Recently i am working with radcalendar control ,it works well but our requirement is to change the css  of radcalendar like the image i have attached below ,is it possible to do like that ,how to do that ,please respond if u have any idea about it.
Saimadhukar
Top achievements
Rank 1
 answered on 14 Dec 2011
1 answer
80 views
Hi,

I have to add special days dates from data base table.So i want to know some additional information about caching.

Can I use asp.net out put cache?
Is there any  client side caching option available?
how to do cacing for telerik calender and scheduler controls?



Mira
Telerik team
 answered on 14 Dec 2011
4 answers
130 views
I've been banging my head off the table for too long on this and I can't seem to find it anywhere else on the internet, so here goes.

I have a RadGrid with two GridTemplateColumn fields. Each GridTemplateColumn has an EditItemTemplate with a RadComboBox in it.

My question is, how do I relate the RadComboBoxes?  I need the values in the second RadComboBox to be based on the selected value in the first RadComboBox:

Here is the basic code:
<telerik:GridTemplateColumn DataField="CriminalActivity" UniqueName="CriminalActivity" 
                EditFormHeaderTextFormat="Activity: "
                <EditItemTemplate> 
                    <telerik:RadComboBox ID="cboActivity" runat="server" AutoPostBack="True" DataSourceID="dsActivities" 
                        DataTextField="Type" DataValueField="Type"  
                        OnSelectedIndexChanged="cboActivity_SelectedIndexChanged"  
                        SelectedValue='<%# Bind("CriminalActivity") %>'
                    </telerik:RadComboBox> 
                </EditItemTemplate> 
                <ItemTemplate> 
                    <asp:Label ID="lblActivity" runat="server" Text='<%# Eval("CriminalActivity") %>'></asp:Label> 
                </ItemTemplate> 
            </telerik:GridTemplateColumn> 
            <telerik:GridTemplateColumn DataField="ActivityDescription" UniqueName="ActivityDescription" 
                EditFormHeaderTextFormat="Description: "
                <EditItemTemplate> 
                    <telerik:RadComboBox ID="cboDescription" runat="server" 
                        OnItemsRequested="cboDescription_ItemsRequested"  
                        SelectedValue='<%# Bind("ActivityDescription") %>'
                    </telerik:RadComboBox> 
                </EditItemTemplate> 
                <ItemTemplate> 
                    <asp:Label ID="lblDescription" runat="server" Text='<%# Eval("ActivityDescription") %>'></asp:Label> 
                </ItemTemplate> 
            </telerik:GridTemplateColumn> 
 
Any help is greatly appreciated!

Thanks!

Velmurugan
Top achievements
Rank 1
 answered on 14 Dec 2011
3 answers
185 views
Hi,

The images used in ToolBar Buttons gets truncated especially if the images are round in a Sharepoint application page. This behaviour does not happen in firefox though.

Please do refer to the attached screen shots for the scenario and kindly advice how to resolve this issue.

Thanks

Kate
Telerik team
 answered on 14 Dec 2011
6 answers
300 views
Hi,

I have  a RadTreeList with a FormTemplate.  With the custom form I have a RadComboBox that in turn has a RadTreeView inside it to allow me to assign the hierarchical data to the record that is being edited.  

I need to be able to access the RadComboBox on the FormTemplate from the ItemCommand event so that I can set it up for the node being edited.  

Below is where I am at, I can get the text and ID of the parent node (if there is one).  Now I need to assign to the RadComboBox and RadTreeView on the EditForm.  I'm fine doing that if only I could find the controls themselves.

Any help?

Regards,

Jon

PS.  Could some more complex examples be added to the FormTemplate demos page for this kind of more advanced scenario?


Private Sub uxRadTreeList_ItemCommand(ByVal sender As Object, ByVal e As Telerik.Web.UI.TreeListCommandEventArgs) Handles uxRadTreeList.ItemCommand
    If e.CommandName = Telerik.Web.UI.RadTreeList.EditCommandName Then
        If Not (DirectCast(e.Item, Telerik.Web.UI.TreeListDataItem).ParentItem Is Nothing) Then
            Dim parentSecurityRoleID As String = DirectCast(e.Item, Telerik.Web.UI.TreeListDataItem).ParentItem.Item("SecurityRoleID").Text.ToString()
            Dim parentSecurityRole As String = DirectCast(e.Item, Telerik.Web.UI.TreeListDataItem).ParentItem.Item("SecurityRole").Text.ToString()
 ?????
        End If
    End If
End Sub
Jon
Top achievements
Rank 1
 answered on 14 Dec 2011
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?