Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
119 views

We have migrated our systems from using DayPilot to Telerik but there is a feature available in DayPilot which is lacking from radschedule and there is a lot of demand from our customers to re-enable this feature.

Would it be possible to provide some sort of export to an image file which would be in a suitable format for printing. 

This could work by having an Appointment Item Printing Template, which could only contain very basic mark-up to simplify the task of creating the images.

An example of this in DayPilot is showing here.
http://www.daypilot.org/demo/Calendar/ImageExport.aspx

Veronica
Telerik team
 answered on 17 Jun 2011
1 answer
56 views
I am using the telerik version 2010.1.519.40 .Iam trying to set the text of radcombobox through javascript .But this code is not supported on this version.On low version it is working.


My javascript function is

function onCheckBoxClick(chk) {
               var combo = document.getElementById("RadComboBox1");
                combo.set_text("CustomText");
             
              
            }

what is the keyword to set and get text of radcombobox in this version of telerik.
Cat Cheshire
Top achievements
Rank 1
 answered on 17 Jun 2011
7 answers
259 views
Hi!

I have a MossRadEditor with following line in ToolsFile.xml: <tool name="MOSSInsertTable" />.

When i click the MOSSInsertTable-button in menu i recieve the following message: 
The server tag 'telerik:RadTabStrip' is ambiguous. Please modify the associated registration that is causing ambiguity and pick a new tag prefix.

I have added the line :
       <add name="Telerik.Web.UI.DialogHandler" path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2009.1.318.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />

to web.Config.

still, i recieve the message above?  why?




Stanimir
Telerik team
 answered on 17 Jun 2011
1 answer
97 views
Here is my situation, we have a farm using RadEditor 4.3.2 and we are migrating this site to another farm that is using 4.5.6.   After the migraiton the RadEditor webparts that already existed in the site are shown as a web part error.  Is there any way to get this to work because I cannot find this older version of the editor, or is there somewhere I can download this from?
Stanimir
Telerik team
 answered on 17 Jun 2011
4 answers
109 views
hi! i would like to know what do i have to add to .aspx.vb pages so that i can create rad objects like this:

Dim rw As New RadWindow
 I tried to import Telerik.Web but is didn't do anything. I'm trying to create a new window when i click on a button and if necessary to pass some arguments to that same page that this new window is going to open.
I appreciate any help.

Fábio


(SOLVED PART ABOUT Import) - > imports Telerik.Web.UI
Fabio
Top achievements
Rank 1
 answered on 16 Jun 2011
1 answer
151 views
Here is the column in my ASP.Net Gridview that is working:

<

 

asp:TemplateField>

 

 

<ItemTemplate>

 

 

<asp:LinkButton runat="server" ID="lbtn1" CommandName="cmd1" CommandArgument='<%#Eval("id")%>' Text="View Sections" />

 

 

</ItemTemplate>

 

 

</asp:TemplateField>

The event is called and processed (the method called is 'protected void gv_RowCommand(Object sender, GridViewCommandEventArgs e)' and it assigns the ID to sqldatasource on the page for another use).

 


How do I implement this in a RadGrid and have it call a method in the code behind to pass the value to the other sqldatasource?

Thanks

James
Top achievements
Rank 1
 answered on 16 Jun 2011
1 answer
61 views
I just ran the install package for the latest version of controls and now my site will not run.  Every time I try I get the same error page which I'm attaching.  Can someone please help so I can work on my site again.  I really need to publish a new version and as it is now I'm completely stuck.
Pero
Telerik team
 answered on 16 Jun 2011
3 answers
145 views
Hello,

I want to achieve that when a user makes a selection with the combobox (cboVolgnr) 016 in my example (see pic), the results comes up and the user wants to clean up his selection but the selection is still there. I thought that the code was complete but it still doesn't works... My code:

 

<td style="width:50px">Volgnr</td>

<td style="width:75px"><telerik:RadComboBox ID="cboVolgnr" Runat="server" Width="75px" Filter="StartsWith"><HeaderTemplate>
<ul><li class="colvolg1">Volgnr</li><li class="colvolg2">Code</li><li class="colvolg3">EI</li><li class="colvolg4">Omschr</li></ul></HeaderTemplate>

 

<ItemTemplate>

 

<ul>

 

<li class="colvolg1"><%#Eval("Volgnr")%></li >

 

<li class="colvolg2"><%#Eval("Code")%></li >

 

<li class="colvolg3"><%#Eval("EI")%></li>

 

<li class="colvolg4"><%#Eval("Omschr")%></li >

 

</ul >

 

</ItemTemplate>

 

</telerik:RadComboBox>

 

</td >

cboVolgnr.Text = ""

 

 

 

 

 

 

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me

 

.Load

 

 

 

 

 

    Dim cn As New SqlConnection(cnnBN.ToString), cmd As SqlCommand, dr As

 

SqlDataReader

 

 

 

 

 

    Dim strSQL As String = "SELECT * FROM tblBWPeriodes WHERE DJ = "

 

& strDJ

 

 

 

 

 

    Try

 

 

 

 

        cn.Open()

 

 

 

 

        cmd = New SqlCommand(strSQL, cn)

 

 

 

 

        dr = cmd.ExecuteReader

 

 

        combo.DataTextField = 

 

"volgnr"

 

 

 

 

        combo.DataValueField = "volgnr"

 

 

 

 

        combo.DataSource = dr

 

 

 

 

        combo.DataBind()

 

 

        combo.Skin = 

 

"Office2007"

 

 

 

 

    Catch ex As Exception

 

 

 

 

        Throw ex

 

 

 

 

    End

 

Try

 

 

 

    dr = Nothing

 

 

 

 

    cmd = Nothing

 

 

 

 

    cn.Dispose()

 

 

 

 

    cn = Nothing

 

 

 

 

    cboVolgnr.HighlightTemplatedItems = True

 

 

 

 

    cboVolgnr.AllowCustomText = True

 

 

 

 

    cboVolgnr.EmptyMessage = "Alles"

 

 

 

 

    cboVolgnr.DropDownWidth = 500

 

 

     cboVolgnr.Height = 375

 

 

 

End

 

Sub

 

Protected Sub btnCriteria_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles

 

btnCriteria.Click

 

 

 

...

 

 

 

 

    cboVolgnr.Text = ""

 

 

 

 

End

 

Sub

Is there something I am missing?  Can you give me a help?

Kind regards,
Kris

 

 

 

 

 

 

 

 

 

 

 

Kris
Top achievements
Rank 2
 answered on 16 Jun 2011
5 answers
100 views
Hi all,
how to obtain the ID of the  just created appointment?
Thank's
Danilo
Peter
Telerik team
 answered on 16 Jun 2011
5 answers
74 views
Hi,
I'm using RadControls for ASP.NET AJAX Q3 2010 and browsing through IE8
I'm looking for a solution to reduce the number of appointments i'm displaying in weekview
Due to a low performace and IE DOS (Deniel of service) when there are more then 100 appointments per week
Is there a solution like: LoadOnDemand(scroll oriented) or "more..." per day links also in weekview like the one in month view?
Thank you.
Peter
Telerik team
 answered on 16 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?