Telerik Forums
Community Forums Forum
4 answers
137 views
Hi everyone. I am new to this forum. 
Jonh
Top achievements
Rank 1
 answered on 18 Sep 2019
1 answer
118 views
I'm new For this Forum
Plamen Mitrev
Telerik team
 answered on 11 Sep 2019
2 answers
208 views

Hello Guys,

I am new to Telerik Radgrid. I need your help. I have a radgrid with ItemTemplate and TextBox in template. Ive a selection window which pops up on TextBox inside grid is clicked and upon selecting some data value should set in that particular TextBox.

<Columns>
<telerik:GridTemplateColumn DataField="CA_ACC_CODE" HeaderText="Account Code" ItemStyle-BorderColor="#d6d6d6" SortExpression="CA_ACC_CODE" UniqueName="CA_ACC_CODE">
<ItemTemplate>
<asp:TextBox ID="txtAccountCode" OnClick="return showPopUp(this)" Text='<%# Bind("CA_ACC_CODE")%>' runat="server"  Width="120px" Skin="Office2007"></asp:TextBox>
</ItemTemplate>
  <ItemStyle BorderColor="#D6D6D6" /> </telerik:GridTemplateColumn>
</Columns>

 

The problem I am facing how to iterate and set value in particular textbox. Currently the textbox value is setting in first row of grid only in ItemDataBound event regardless of any row where I click the textbox.

protected void gv_BO_ItemDataBound(object sender, GridItemEventArgs e)
{
 try
    {
     string Selectd_row = (string)(Session["coa_selectd_row"]);
     if (Selectd_row == null || Selectd_row == "")
       {
        Selectd_row = "0";
       }
                            
     if (e.Item.RowIndex == int.Parse(Selectd_row))
     {
      if (e.Item is GridEditFormItem)
       {
         GridEditFormItem item = (GridEditFormItem)e.Item;  
         string cc_code = (string)(Session["cc_code"]);
         string cc_title = (string)(Session["cc_title"]);
         string ca_code = (string)(Session["coa_code"]);
         string ca_title = (string)(Session["coa_title"]);
    TextBox txtCostCentre = (TextBox)item["CC_COSTCNTR_CODE"].FindControl("txtCostCentre");
       TextBox txtCCDesc = (TextBox)item["CC_DESC"].FindControl("txtCCDesc");
       TextBox txtAccountCode = (TextBox)item["CA_ACC_CODE"].FindControl("txtAccountCode");
       TextBox txtAccountTitle = (TextBox)item["CA_TITLE"].FindControl("txtAccountTitle");
       txtCostCentre.Text = cc_code;
       txtCCDesc.Text = cc_title;
       txtAccountCode.Text = ca_code;
       txtAccountTitle.Text = ca_title;                   
         }
        }
       }
catch (Exception ex)
    { }
    }
Sana
Top achievements
Rank 1
 answered on 24 Jul 2019
0 answers
122 views

Good day,

I am currently using Kendo UI 2014.3.1411 and using ASP.NET MVC. When I'm trying to retrieve a DateTime that has a year of 1900, it returns a value of added 5 minutes.

 

From Controller:

Value of DateTime passed as JSON is "1/1/1900 1:00PM"
`(Timestamp is /Date(-2208970800000)/)`

 

After using kendo.ParseDate of the value of Timestamp, Time became 1:05pm

 

I would like to know what is the minimum version of Kendo to have this resolved.

 

Thanks.

junever
Top achievements
Rank 1
 asked on 23 Jul 2019
10 answers
323 views
When I go tot he dojo.telerik.com site, for instance to open any of the examples in dojo (from their links), there is a Modulus-project not found page and I can't get into the dojo.
Dimo
Telerik team
 answered on 03 Jul 2019
5 answers
756 views

Confused by license Kendo UI professional

The license for Kendo UI professional is per developer, components are installed using npm.

Scenario 1:

If I have a group of developers 1 Front-end, 1 Fullstack, 1 backend do I need 3 licenses? The backend developer will not be doing development with the UI components but will need to run the code in development so would need to install the packages locally.

What about CI, the CI server is going to install the components every time a new checkin occurs, would the CI server need an additional license?

---

Scenario 2:

If I work as a consultant and build an application using the UI components, I obviously need 1 license. But now I hand that project off to the client and they have x number of developers who will maintain that project, making small tweaks here and there overtime. My client does not want to purchase licenses for each of their developers as they are rarely even touching the code.

It seems like an application license would make more sense? But maybe my assumptions above are not correct, any guidance would be appreciated.

Thanks, - Jesse

Dimo
Telerik team
 answered on 20 May 2019
3 answers
112 views

Hi,

     When i run test list more than 60 scripts in local machine it's not loading the results.May i get any suggestion for this please?

Thanks & Regrads

Vimala Padakanti.

Plamen Mitrev
Telerik team
 answered on 15 May 2019
4 answers
299 views

I need to use modified (local version) of standard skin style sheets, because I need to disable skins for whole website. All I need is load skin in one page.

So I have RadCalendar and Windows7 skin.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs" Inherits="TestTelerikSkin.test" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title>Skin Test</title>
 
    <link href="/Styles/Windows7/Calendar.Windows7.css" rel="stylesheet" type="text/css" runat="server" />
 
</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>
 
        <div>
 
            <telerik:RadCalendar runat="server" EnableEmbeddedSkins="false" Skin="Windows7">
            </telerik:RadCalendar>
 
        </div>
 
    </form>
</body>
</html>

When EnableEmbeddedSkins is set to false, I need to load and apply my custom css file. If EnableEmbeddedSkins is set to true, assembly skins will be loaded. They should be the same, right? The same css files, the same result. But it is not. Why? How to use custom skin css file?

Check this image: Screen

CSS file is exactly the same as installed version from RadControls for ASP.NET AJAX\Skins\Windows7\Calendar.Windows7.css.

Thanks for help

jaygarrick13
Top achievements
Rank 1
 answered on 07 May 2019
9 answers
157 views

Heya!

Please delete and deactivate this account, and remove any related data.

Dimo
Telerik team
 answered on 02 May 2019
1 answer
125 views

Hi,

   When i m trying to run scripts in RDP and close/minimize the screen scripts are not running in that RDP. Can i get any solution for this please?

 

Thanks & Regards

Srilatha Sapireddi.

Elena
Telerik team
 answered on 18 Apr 2019
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?