Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
131 views
I am building some modules with DNN 7 and using the ASP.NET controls.  they work fine except the CSS seems to be getting overridden esp. with the scheduler.   I added a radscheduler and the days within the scheduler are crammed all together.  I've tried expanded with width, added CSS @ the top of my page and still doesn't work.  See pic. all the information is bunched together.


how can I get the inside of the scheduler to show correctly? 

Thanks
Doug
Kate
Telerik team
 answered on 14 Feb 2014
3 answers
110 views
I am using a rad scheduler bound with web service. How do I customize the appointment updating with recurring values? I would like to use the advanced form as it is but i want to handle the method of updating/saving the appointment in a different way. I could not find any sample codes handling recurring appointments in a web service bound scheduler. Any help would be appreciated.

Thanks,
Meera
Boyan Dimitrov
Telerik team
 answered on 14 Feb 2014
2 answers
82 views
Hi,
i am hidding columns using headercontextmenu. I want to access the hidden column in clientside. How to access it?
Princy
Top achievements
Rank 2
 answered on 14 Feb 2014
1 answer
220 views
Hi,

I have a problem with value change on RadNumericTextBox if textbox has decimal values. For example, if I have two textboxes on the form. On initial page load I initialize textbox 2 with value 10.5. After I change value on textbox 1 and press tab the value of textbox 2 changes to 105,00.

I have been experiencing the issue with controls version 2013.3.1324.35
I can not reproduce this issue with previous version I have been using: 2013.2.611.35

Here is the example:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Digits._Default" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js">
            </asp:ScriptReference>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js">
            </asp:ScriptReference>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js">
            </asp:ScriptReference>
        </Scripts>
    </telerik:RadScriptManager>
    <telerik:RadNumericTextBox ID="RadNumericTextBox1" TabIndex="1" Culture="sl-SI" runat="server" AutoPostBack="true">
    </telerik:RadNumericTextBox>
    <br />
    <telerik:RadNumericTextBox ID="RadNumericTextBox2" runat="server" Culture="sl-SI" TabIndex="2" AutoPostBack="true">
    </telerik:RadNumericTextBox>
    </form>
</body>
</html>

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
 
namespace Digits
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                RadNumericTextBox2.Value = 10.5;
            }
        }
    }
}
Vasil
Telerik team
 answered on 14 Feb 2014
9 answers
563 views
How can I modify your server side example so that you can double  click anywhere in the row to select the row?

http://demos.telerik.com/aspnet-ajax/grid/examples/programming/selectrowwithcheckbox/defaultcs.aspx

Also how do you add tooltips to the row/cell values?

thanks again

Maria Ilieva
Telerik team
 answered on 14 Feb 2014
1 answer
78 views
Hi,
I have a business objects with the following naming convention:

Guid Add(string name, string description, Guid categoryId, Guid createdBy)

The have properties of :
string Name { get; set; }
string Description { get; set; }
Guid CategoryId { get; set; }
Guid CreatedBy { get; set; }

I have created a RadGrid that uses an ObjectDataSource which uses the above business object. The RadGrid has mapping to the properties of the business object, i.e. the initial character is capital (Pascal Casing), but the ObjectDataSource is bound to the Add method, for instance, that has the initial character in lower case (Camel Casing).

Now when I click on the Insert button it throws an error that no Add method found with the parameters Name, Description CategoryId, createdBy (I'm setting the createdBy manually) but how do I bind RadGrid to the ObjectDataSource using the Pascal Casing but when it tries to insert it should use the Camel Casing version? Or should I change the ObjectDataSource to use control parameters? But that would mean changing all the gridboundcolumns to template columns? 

Any advice you can give would be much appreciated.

Kind regards
Sidharth



Viktor Tachev
Telerik team
 answered on 14 Feb 2014
1 answer
255 views
Hi want to call client side function than server side call on link button in side grid item template. but when use a OnClientClick event on link button they not work well please provide solutions.
My code as follows :
client side code is:
 function permission() {        
          var add =1;
          if (add == 0) {
                                   alert("You have no permissions to Update Record"); return false; }
          else { return true; }
      }

  <telerik:GridTemplateColumn AllowFiltering="false" UniqueName="Action" HeaderText="Action" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">
                                                                        <ItemTemplate>
                                                                            <telerik:RadButton ButtonType="LinkButton" runat="server" ID="btnEdit" 
                                                                                ToolTip="EditRecord"  Text="Edit" CommandName="EditButton" 
                                                                                CommandArgument='<%# Eval("LandlordId") %>' onClientClicked="chkpermissionsEdit"   />
                                                                            <telerik:RadButton ButtonType="LinkButton"  runat="server" ID="btnDelete" ToolTip="DeleteRecord"  Text="Delete" CommandName="DeleteButton" CommandArgument='<%# Eval("LandlordId") %>' />
                                                                        </ItemTemplate>
                                                                        <HeaderStyle HorizontalAlign="Left" />
                                                                        <ItemStyle HorizontalAlign="Left" />
                                                                    </telerik:GridTemplateColumn>
Konstantin Dikov
Telerik team
 answered on 14 Feb 2014
3 answers
155 views
I have a radgrid to dsiplay employee information. I would like to display the name field as a link, and click the name to trigger the edit command. Does anyone know how to do it?

Thanks for your help.
Princy
Top achievements
Rank 2
 answered on 14 Feb 2014
6 answers
117 views
Hi there,

When I have a RadEditor on a page with 2012.3.1016.40 dll version an image which is edited and saved as a copy, the original image is saved and not the edited one. I have isolated the problem this morning and I can send demo project if needed.

This problem does not occur with older version of the DLL.
Please reply soonest, this is a problem in our CMS.

Thanks,
Marc
Vessy
Telerik team
 answered on 14 Feb 2014
2 answers
190 views
I have an Appointment that has a variable size(depending between the start date and end date). I also have some text that was displayed from my RadScheduler Appointment Template. I want to have my text to fit always each of my Appointments size. Can it be done and if so how? An example or some detail please, i'm not expert with RadScheduler. TIP_PROGRAMARE,TIP_APARATURA,TIP_STERILIZARE,NUME_ECHIPAMENT,NUME_OPERATIE is part of my RadScheduler CustomAttributeNames. Please help and thank you for your time and advice.

My Appointment Template is:

                    <AppointmentTemplate>
                        <div style="font-style: italic; width: 100%">
                            Subiect:
                            <%# Eval("Subject") %></div>
                        <div style="font-style: italic; width: 100%;">
                            Tip Programare:
                            <%# Eval("TIP_PROGRAMARE")%></div>
                        <div style="font-style: italic; width: 100%">
                            Tip Sterilizare:
                            <%# Eval("TIP_STERILIZARE")%></div>
                        <div style="font-style: italic; width: 100%">
                            Tip Aparatura:
                            <%# Eval("TIP_APARATURA")%></div>
                        <div style="font-style: italic; width: 100%">
                            Tip Echipament/Sala:
                            <%# Eval("NUME_ECHIPAMENT")%></div>
                        <div style="font-style: italic; width: 100%">
                            Operatia:
                            <%# Eval("NUME_OPERATIE")%></div>
                    </AppointmentTemplate>
Tofan
Top achievements
Rank 1
 answered on 14 Feb 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?