Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
93 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
112 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
47 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
91 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
62 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
111 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
141 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
261 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
1 answer
123 views
Im trying to make a very simple bubble chart. The input data i have is an array of bubbles. The values of each bubble are; x, y and radius.
Trying to enter these values into a bubble chart yields essentially no sane results at all. The Y axis has a height, but the X axis consists of basically 1 vertical line where a bunch of widthless bubbles are rendered on top of each other. Altering the X values makes no difference at all.
I defined series items as follows:

ChartSeriesItem seriesItem = new ChartSeriesItem( x, y, radius, radius );
series.AddItem( seriesItem );
// etc...
(I also tried a bunch of other combinations that made different degrees of sense)

If i just want to plot a bunch of bubbles with the above input, how should I input the data into the radchart? What properties do i need to change to make it understand what I want to do? 
Peshito
Telerik team
 answered on 14 Dec 2011
3 answers
114 views
is it possible to retain the resize column width of telerik gridview after the page is refreshed
Marin
Telerik team
 answered on 14 Dec 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?