Hello there!
I'm new to Telerik MVC controls, so excuse me if this is something simple.
I started out with making a new TelerikMvcApplication solution.
Site.Master:
</div>
<%: Html.Telerik().ScriptRegistrar().DefaultGroup(group =>
group.Combined(true).Compress(true).Add("Index.js")) %>
</body>
</html>
Index.aspx:
...
Hello !
I have a Silverlight application. On the server I have an aspx file that contains a report viewer. I get the report from the server and I display it on a RadHtmlPlaceHolder. The report has set the property FitWidth and BestFitPage property set to false.
I would like to make the report to fit the place holder's width, maybe to ...
I am using teleriks gridview in an mvvm silverlight project. I am struggling to get the editing of a row working. If I double click a cell I am able to change the text of that row. I have a command for a save button. but when I look at my ObservableCollection prog I do not see the changes. so I went and changed everything from observable...
I know I need to use Template Columns, but I am not clearly understanding how to use it.
I have a datasource which returns a collection, I can assign each property in the collection to a column.
But how do I:
Merge two columns? such as col.prop1 +' '+ col.prop2 ?
Execute some methods on the properties such as col.prop1.ToString(ov...
Hi,
How can I change
<telerik:RadTextBox runat="server" ID="txtUserName" Width="238px" EmptyMessage="Lütfen 'Kullanıcı Adı' nızı giriniz.">
</telerik:RadTextBox>
in normal asp input form because in teleriks format I can not use
onFocus="javascript:toggleMsg('msg-2')" or
onBlur=...
Hi,
I'm having a wired problem with Radgrid.. Im using a Radgrid to display some results where the user can edit/update/delete them. I'm using a single SQL Server 2000 table to fetch the results... Not sure why the events are not firing in radgrid. But I am able to do it successfully using the Gridview control...
Im using .NET framewo...
I have a Telerik MVC2 Grid which has a column like:
columns.Bound(c => c.CustomerID)
.Format(Html.ActionLink("Close", "CloseCustomer", new { Id = "{0}"}).ToString())
.Encoded(false)
.Title(String.Empty)
.Width(80);
the objects being used also include a closed flag, and I'd like to be able to get it to make ...
I was trying to find soemthing equivalent powerful like the Telerik GridView in the Flex/Flash world but without success. Could someone pls give me a hint? Or is there no vendor/open source etc. component library out there?
...
<telerik:RadEditor ToolbarMode="Default"
ID="editor1" runat="server" EnableEmbeddedBaseStylesheet="true">
</telerik:RadEditor>
The editor's using Default skin..when I made changes to Editor.Default.CSS file...they didn't reflect on my page..but when I type the following I can see the changes:-
<link href="Skins/Default/Editor.Default....
Hi,
I am using telerik controls in my c# asp.net project. I am trying to disable a div in a telerik navigation menu from the .cs file. For example:
if (Emp_Role == "1" || Emp_Role == "5")
{
DivLeave.Visible = true;
}
I try run the project I get this error:
CS0103: The name 'DivLeave' does not exis...
I have a simple form that is used to insert data to a SQL database.
Everything works fine on the local server, but when I publish to my server, upon submission,
I get a response on the page like this,
��������I�%&/m�{J�J��t��$ؐ@�����iG#)�*��eVe]f@�흼 ��{���{��;�N'���?\fdl��J�ɞ!���?~|?"��Ey�')=��y6����h���x:͛& m�����k���'�~�oWM[,/^�2��...
HI,
I have a table with 3 columns Itemid(int),Itemname(string),ItemDesc(string).. Im trying to use a radpanelbar to display this information, where the bar initially shows the item name and on clik/expansion it will show the item description.. I tried looking at the examples on telerik site but didnt understand the point of datafieldid ...
I really like a certain Silverlight feature that I've seen in a couple of sites. I would like to know what this "concept(s)" is/are so I can do more research and implemented it on my own. If you see the attached image, I like those expandable sections, reference (1) and (2) sections. They are circled in red and the features that I lik...
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
<link href="Skins/CustomSkin/Editor.Default.css" rel="stylesheet" type="text/css" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<telerik:RadEditor ToolbarMode="Default"
ID="editor1" runat="ser...
In firebug under "Style" its showing the css file as follows when I hover mouse over RadEditor
"http://localhost/myWeb/WebResource.axd?d=WSPnt1ffDvgb4bj2Ii5nA4MecfZdsnZ0wvgLy3HVcihYTy2nMTq7iIu8RlAb7ZMF61e07jisMUNhQZabIxK2kyuxNpeCFqhE3cgnDSm1-Pc1&t=634237829795625000"
In telerik:RadEditor tag ..I haven't specified any property such...
Embedding RadEditor in my page but Master page's CSS is screwing it up ..like Editor's content area is inheriting background-image property of the body tag when I want it to be white..drop down lists inside of Editor too are not displaying correctly..I don't wanna create whole new custom skin
...
I have a Silverlight UserControl with a Telerik RadGridView control and a handful of button controls. The problem is that when I edit a cell in the grid view and then click any of the buttons the button command does not execute until; the button is selected a second time. The first press seems to remove the focus from the RadGridView a...
I have a Telerik:RadTextBox control in my markup called txtName. I'm trying to retrieve the inputed value in the code behind with foo = txtName.Text; but var and txtName always show an empty string.
Any ideas?
Markup
<telerik:RadTextBox ID="txtName" Runat="server" Width="300px" />
CodeBehind
campaign.Name = txtName.Text.Trim();
I...
i'm confused, i've read the GPLV2 (and lesser GPL and all of them) over and over again, but i don't get it, and maybe you can:
i'm creating a website for a client. I get paid for that.
When i'm done, the app won't be open source, it is solely meant to be used by my client.
Now i want to use a nice user control in it, but the control is...
Hi,
I am trying to use this solution to access items inside a telerik menu item:
ascx code:
<asp:Label ID="DivLeave" runat="server"></asp:Label>
In the ascx.cs file I run this code to disable the asp label
RadMenuItem expenses = RadMenu1.FindItemByText("Expenses");
Label DivLeave = (Label)expenses.FindControl("DivLeave"...