telerik

How to change the text on Kendo UI Grid destroy or delete command action?

笑着哭i 提交于 2020-01-11 08:13:26
问题 I'm using a KendoUI KendoGrid. I have a column with delete button or "destroy" action. Kendo displays an alert box with the text "Are you sure you want to delete this record?" I need this text to be more specific to my situation. How do you customize this text? Any help would be appreciated. My code for adding the columns is: $reports.kendoGrid( { dataSource: dataSource, pageable: { refresh: true, pageSizes: true }, toolbar: [{ name: "create", text: "Add" }], columns: [ { field: 'name', title

How to change the text on Kendo UI Grid destroy or delete command action?

﹥>﹥吖頭↗ 提交于 2020-01-11 08:13:09
问题 I'm using a KendoUI KendoGrid. I have a column with delete button or "destroy" action. Kendo displays an alert box with the text "Are you sure you want to delete this record?" I need this text to be more specific to my situation. How do you customize this text? Any help would be appreciated. My code for adding the columns is: $reports.kendoGrid( { dataSource: dataSource, pageable: { refresh: true, pageSizes: true }, toolbar: [{ name: "create", text: "Add" }], columns: [ { field: 'name', title

Telerik “Live Demos” solution - connection strings & database setup

余生长醉 提交于 2020-01-07 04:26:07
问题 Looking for a person who's setup the Telerik Rad Controls for ASP.NET AJAX Live Demos project before... I recently downloaded the Telerik Rad Controls for ASP.NET AJAX framework. I'm in the process of upgrading some of our company's code using the Telerik Rad Controls for ASP.NET (non-AJAX) framework from about 5-6 years ago to the new AJAX framework. Many of the old controls don't work in the latest browser releases (Google Chrome 12, Mozilla Firefox, Internet Explorer). Some controls work

Nativescript RadListView not binding to source property

梦想的初衷 提交于 2020-01-07 03:00:34
问题 I am trying to implement {N} telerik's UI RadListView. Here is their getting started guide, which I followed as a reference. I have setup the following XML layout : list.xml <StackLayout loaded="loaded" xmlns:lv="nativescript-telerik-ui/listview" xmlns="http://www.nativescript.org/tns.xsd"> <lv:RadListView items="{{ rankingsArray }}"> <lv:RadListView.listViewLayout> <lv:ListViewLinearLayout scrollDirection="vertical"/> </lv:RadListView.listViewLayout> </lv:RadListView> <lv:RadListView

Accessing RadEditor control from master page's code behind…its not finding any radEditor control when it is there..whats wrong?

99封情书 提交于 2020-01-07 02:46:11
问题 Its not executing statements in if block in my method Master Page:- page load event:- Control c = new Control(); DoSomething(c); My method:- protected void DoSomething(Control control)( { foreach (Control c in control.Controls) { if(typeof(c).Equals(Telerik.Web.UI.RadEditor)) { Telerik.Web.UI.RadEditor rad = c as Telerik.Web.UI.RadEditor; label1.Visible = true; label1.Text = "dhchk"; rad.CssFiles.Add("~/styles/myStyle.css"); rad.CssFiles.Add("~/styles/myStyle2.css"); rad.CssFiles.Add("~

ASP.NET MVC / TabStrip - Doesnt switch Tabs

一笑奈何 提交于 2020-01-06 08:13:30
问题 1) included the following in bundle.config /Content/kendo/kendo.common.min.css /Scripts/modernizr-2.5.3.js /Scripts/jquery-1.7.1.js /Scripts/kendo/kendo.all.min.js /Scripts/kendo/kendo.aspnetmvc.min.js /Content/kendo/kendo.common.min.css /Content/kendo/kendo.metro.min.css 2) web.config <namespaces> <add namespace="System.Web.Mvc" /> <add namespace="System.Web.Mvc.Ajax" /> <add namespace="System.Web.Mvc.Html" /> <add namespace="System.Web.Optimization"/> <add namespace="System.Web.Routing" />

TelerikRadGrid how to insert,update and delete into SQL database

耗尽温柔 提交于 2020-01-05 14:11:24
问题 I am using Telerik controls in Visual Studio 2008, in RadGrid. I create a PopUp windows includes all the TextBoxes and controls that I need to use in database but how can I declare a function in order to insert, update and delete ? And where!? 回答1: You can use Data Access Layer for Definition of the the function to send the request to database If you want to use SQL Server. Following is the code. using (System.Data.SqlClient.SqlConnection con = new SqlConnection("YourConnection string")) {

Index Change event for Combobox of gridtemplateColumn in Telerik

别说谁变了你拦得住时间么 提交于 2020-01-05 08:12:34
问题 I can write a code. In this I can take a Template Column & in this I build a RadCombobox. When it's Index changed I want to affect the below text box. Link the selected value of the Combo box is set as Text on Below TextBox. Combo Box & Text Box are different Controls of Different Template Column. I can Write Control of Combo box like this : <telerik:RadComboBox ID="cmbGID" runat="server" DataSourceID="SqlDataSource8" DataTextField="Name" DataValueField="ID" AutoPostBack="True"

How to find textbox in GridView using javascript function fired on “Onclientsideselectedindexchanged” of a radcombobox in same GridView RSS

旧巷老猫 提交于 2020-01-05 07:51:28
问题 I have two controls a TextBox and a radcombobox in ItemTemplate of a GridView. What I want to do is when the event onclientsideselectedindexchanges of radcombobox is fired. I want to show/Hide the TextBox on client side with JavaScript. Basic purpose of this is to avoid post back to show the TextBox which will be DataBound to database. If it is not possible to do on the client-side, then please suggest some alternative on server side. 回答1: In my example, I have a GridView with a template