Dear Telerik team,
please delete (not deactivate) my account and all associated data, thank you.
Best regards.
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)
{ }
}
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.
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
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.
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>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
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