Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
163 views
Hello,

I use a Combobox with autocomplete and load on demand which works perfectly fine and usually the fiels is pre-selected.
However, if the fiels is empty the following Scenario happens:

- first click, Cursor is at the beginning of the box, everything is fine.
- second click in the box - the Cursor jumps to the left upper Corner and it's size is reduced.

This leads to the following Problem:
- first click, Cursor okay, user types a text, text is fine
- second click, text is still in the box, it is not cleared - the Cursor jumps to the left upper Corner again, get's reduced in size and if the user starts typing a text now the previous text is not deleted or anything, the two texts overlap. On Validation the combox behaves like there as been no user-Input at all.

I've attached a screenshot to make it clearer.

Any help would be appreciated.
Boyan
Top achievements
Rank 1
 answered on 14 Feb 2014
1 answer
127 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
104 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
81 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
217 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
554 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
73 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
244 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
150 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
113 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?