Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
164 views

HI, When i am trying to open a filter options menu in the radgrid filter column, the menu is not showing. I am using safari browser in MAC machine.

The same functionality is working fine with other browsers in windows platform and also in chrome in MAC.

I have also attached the javascript error that i am receiving.

Pavlina
Telerik team
 answered on 04 Nov 2015
2 answers
124 views

Hello,

 I have a page that has a treeview that lists our different zip files of data that users can download.  When the user click a zip file to download and they are not logged in they are redirected to the login page.  After they login they are redirected to the page where my zip files are listed in my treeview.  The issue now is the page reloaded and the tree is collapsed.  How can I open the tree to the specific node the user clicked on?  I can put the node text in a query string and page it back and forth but how can I take the query string and open the treeview?

 

Thank you

Ivan Danchev
Telerik team
 answered on 04 Nov 2015
2 answers
348 views

On my aspx page I have a RadGrid with the following:

<telerik:GridTemplateColumn HeaderText="View Order Details" UniqueName="OrderDetails">
<ItemTemplate>
<div style="vertical-align: middle; text-align: center;">
<asp:ImageButton ID="btnOrder" ImageUrl="~\Content\Images\list.png" runat="server" Height="25px" Width="25px"  OnClick="openOrderDetails_Click"/>
</div>
</ItemTemplate>
</telerik:GridTemplateColumn>

 

I have also tried replacing the onclick method with the below and calling the relevant switch statement (after putting in the OnItemCommand in the grid) :

CommandName="OrderDetails" CommandArgument='<%# Bind("identity") %>'

 

I have a test button outside my radgrid and when I click on this the window opens without any issues:

<telerik:RadButton ID="test" runat="server" Text="Test" Skin="MetroTouch" OnClick="openOrderDetails_Click"></telerik:RadButton>

 

Can anyone help with getting this to open from the button within the grid

Gavin
Top achievements
Rank 1
 answered on 04 Nov 2015
2 answers
41 views

How do you spawn an edit window from a detail grid with info from the grid? I can get the window to come up but I'm not clear on how to pass information from the detail grid to the form like an item id for instance.

Joe
Top achievements
Rank 2
 answered on 04 Nov 2015
1 answer
121 views

Hi, 

I would like to seek help if its possible to edit and add fields in the "New Appointment" window when Option is selected such as a field for who you want to assign it based on a linked email table and so on. 

Thanks in advance. 

Ivan Danchev
Telerik team
 answered on 04 Nov 2015
3 answers
110 views

I am trying to figure out how to use a RadGrid in a C# ASP.net 4.5 project that uses data entity framework version 6.  I can not seem to find good reliable up to date documentation on how to bind the entity framework to the Gridview.  I have started here http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/data-binding/understanding-data-binding/telerik-radgrid-data-binding-basics but can not find and information on using the data entity.  I found some documentation and videos that show dropping a data entity control from the toolbox and setting the properties of the control via the smart tag, but that functionality is not available in the 4.5 framework.

 

Can some please provide some good resources that can assist me in transitioning from an ASP.net Gridview to the Telerik RadGridview?

 

Thanks

Viktor Tachev
Telerik team
 answered on 04 Nov 2015
1 answer
76 views

We are attempting to use the Telerik Diagram to create a Living Value Stream.  The Value Stream has connectors between each process on the traditional path, however there are also an additional connectors for a special process that does not go down the traditional path.  (I have attached a screen shot of a portion of the Value Stream.)

Is it possible to do this?

 

Thank you for your assistance.

 

 

Slav
Telerik team
 answered on 04 Nov 2015
5 answers
380 views

Why when I'm using asp.net CustomValidator inside Insert/Edit ItemTemplate column of my RadGrid, the ServerValidate method is fired two times ?

I'm using telerik version 2015.3.930.45

Example:

Asp.net

 

<telerik:GridTemplateColumn UniqueName="ProductName" HeaderText="Product">
   <ItemTemplate><%# Eval("ProductName") %></ItemTemplate>
   <EditItemTemplate>
      <asp:TextBox Id="ProductNameText" Text='<%# Eval("ProductName") %>' runat="server"/>
      <asp:CustomValidator ID="ProductNameValidator" ControlToValidate="ProductNameText" Text="*" ErrorMessage="*" OnServerValidate="ProductNameValidator_OnServerValidate" runat="server"/>
   </EditItemTemplate>
</telerik:GridTemplateColumn>

 

C#

protected void ProductNameValidator_OnServerValidate(object source, ServerValidateEventArgs args)
{
   var newProductName = args.Value;
   args.IsValid = _myProducts.All(x => x.ProductName != newProductName);
}
 â€‹

Maria Ilieva
Telerik team
 answered on 04 Nov 2015
8 answers
977 views
Hey,

I am having problems with your ExportToPdf() method.  When I try to invoke it like you do in your demo I get this error : "

Name cannot begin with the '-' character, hexadecimal value 0x2D".  Why is this happening?



Thank,

Kyle
RJ
Top achievements
Rank 1
 answered on 04 Nov 2015
3 answers
158 views

Hello Telerik,

I can't seem to hide my RadDock's border no matter what. I've tried all the options below but it still shows (see attached screenshot):

In my code behind:

Dim rd As New RadDock
rd.ID = "Dock1"
rd.DockMode = DockMode.Docked
rd.DockHandle = DockHandle.None
rd.ControlStyle.BorderStyle = BorderStyle.None
rd.ControlStyle.BorderWidth = 0
rd.Resizable = False
rd.BorderStyle = BorderStyle.None
rd.BorderWidth = 0
rd.ContentContainer.BorderStyle = BorderStyle.None
rd.ContentContainer.BorderWidth = 0

In my .ASPX file:

<style type="text/css">
    /* Remove border on all docks */
    .rdTable, .rdTop, .rdMiddle, .rdBottom    
    {   
        border-width: 0px !important;   
        border-style: none !important;
    }   
</style>

I'm out of ideas. Am I missing something else?

Thanks for any help.

KOGAN
Top achievements
Rank 1
 answered on 04 Nov 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?