Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
67 views

I have a very strange rendering problem that I am experiencing on different pages of my application, and is also experienced on four different development machines. 

The grid renders not as unique rows, and none of the event handling is functional.  This occurs IE, Chrome and Firefox.  Any ideas what to look for?

Seen screen shot.

Using version 2013.3.1015.45

RYNETECH
Top achievements
Rank 1
 answered on 03 Dec 2013
1 answer
168 views

Hi,
I am using a RadEditor with ContentAreaMode set to DIV. I am using IE 11 . The page is a simple one contains

  1. ScriptManager
  2. An update panel
  3. A RadEditor with ContentAreaMode inside the previously addded UpdatePanel
  4. A Button which causes a postback inside the same update panel
  5. A dropdownlist with items inside with its autopostback property set to true.

Once the page is rendered the page consists of RadEditor with button and a dropdown . There is no scroll bar on the page yet . So click on the button a postback is caused and NO FOCUS IS SET TO THE RADEDITOR .

Now, Add a few <br /> before the Button and the DropDown so that we now get a scrollbar on the page . Move to the bottom of the page and select on a button or change the dropdown index so that a postback is caused . On Postback we now see that the RadEditor automatically sets focus to its self.

This can be reproducible even in the Demo site RADEditor ContentAreaMode="DIV" To reproduce the error on the demo site please follow as described in the document RADEDITOR.docx issue.

The same when tried in Chrome works just fine and the scroll position of the browser is not changed.

Regards,
Francis P.
Ianko
Telerik team
 answered on 03 Dec 2013
0 answers
67 views
I am placing this post in hopes that it may help someone else.

I have experienced the same problem with multiple copies of controls showing up in the toolbox covered in this post. This is the most extensive post I found on the subject. The issue shows itself when adding in the next Quarterly Update. Each time you open VS2010 another copy of each toolbox section and tools will be created. The end result is that VS will start loading ever more slowly until it just crashes. I have had this problem most recently with Winforms Q3 2013. However, I have also experienced the problem with Asp.net Ajax. I have tried completely removing Telerik including deleting Telerik Folders under Programs. Removing Registry Entries, Reapplying Service Packs, Running VS2010 Repair and resetting the Toolbox with a right click of the mouse. I even ran a registry cleaner, Reinstalled Visual Studio and attempted without success to fully remove everything that VS2010 sticks on your computer. Don't even bother with the last one folks. It can get so fouled up that you want to pull out that little image disk you created and start fresh.

After going through this circus a few times a ran across something that seemed to work. Actually it worked perfect for me. I just don't know if it will work for you. Before you go to the trouble to do all the things I did above and monkey with registry entries like suggested in the referenced post, simply go into VS2010. Select Tools and Extension Manager. Uninstall all Telerik Extensions. Close VS2010 and reboot your PC. Go back into extension Manager, Select Online Gallery and type in Telerik in the Search Bar. Select and install the package you are using. You may have to right click on the toolbox and Reset it. I hope this helps you.

Eddie
Top achievements
Rank 1
 asked on 03 Dec 2013
0 answers
59 views
Hi,
I am using radscheduler, OnClientTimeSlotContextMenu event not occur on first time right click and next right click it shows the context menu. Provide me a solution to over come this issue.
Dhamodharan
Top achievements
Rank 1
 asked on 03 Dec 2013
1 answer
60 views
Hi
I want to set a clear button outside radgrid that refreshes the radgrid and closes all the editforms if any are open. What is the best way to do this?
Princy
Top achievements
Rank 2
 answered on 03 Dec 2013
1 answer
63 views
Hi,
I'am using this menu :
http://demos.telerik.com/aspnet-ajax/menu/examples/megadropdown/defaultcs.aspx

Is there a way to hide an item in the products section.
I would like to hide items base on the permission level.

Exemple if your not an admin i would hide sofas and Beds in the products menu.

Tks

Luc
Luc Émond
Top achievements
Rank 1
 answered on 03 Dec 2013
5 answers
111 views
Hi,

Is the following possible with RadSpell?  If so, how?

Base UK english dictionary with additional custom common dictionary with industry-specific terms.
Users are also allowed to add their own terms, but only see their own.

Thanks,

Craig
Marin Bratanov
Telerik team
 answered on 03 Dec 2013
1 answer
73 views
Hi
 I always want a row to be selected when the grid loads.how to do this?
Princy
Top achievements
Rank 2
 answered on 03 Dec 2013
2 answers
359 views
Hi Guys,

First time poster and relatively new to Telerik controls, especially the RadGrid! I've been searching for a solution to my problem but as yet have not been able to find one so hopefully someone can help me.

I have a RadGrid which displays form entry submissions and then the data entered for each submission within a detail table. It's all working fine, but being a UI guy I want to alter the Colspan of the table cell in which the detail table sits to one less so there is an equal indentation at either side. I was able to find out how to do this and have used the code below to do so:

protected void gdSubmissions_ItemCreated(object sender, GridItemEventArgs e)
    {
        if (e.Item is GridNestedViewItem)
        {
            GridNestedViewItem item = e.Item as GridNestedViewItem;
            int newColSpanValue = item.NestedViewCell.ColumnSpan -1;
            item.NestedViewCell.Attributes["colspan"] = newColSpanValue.ToString();
            item.NestedViewCell.Style.Add("padding", "5px");
            item.NestedViewCell.Style.Add("border-bottom", "1px solid #e8e8e8");
        }
    }

However, now I have a problem where for certain criteria I need to hide certain columns of the grid and when doing so, the colspan is now incorrect and is not taking in to account just the VISIBLE columns. See the attached images to see what I mean.

Here is the code I use to hide the columns:

protected void gdSubmissions_PreRender(object sender, EventArgs e)
    {
        RemoveExpandIconWhenNoRecords(gdSubmissions.MasterTableView);
 
        // Hide Columns
        if (usesApproval)
        {
            gdSubmissions.MasterTableView.GetColumn("Resubmit").Visible = (_submissionStatus == -1);
            gdSubmissions.MasterTableView.GetColumn("Approve").Visible = (_submissionStatus == 0);
            gdSubmissions.MasterTableView.GetColumn("Reject").Visible = (_submissionStatus == 0);
        }
     }

I appreciate that this may or may not be the best way to do this.

Any help is much appreciated.

Rob.
Venelin
Telerik team
 answered on 03 Dec 2013
1 answer
74 views
Hi
i have a radbutton in the itemtemplate of a column. How to get the rowindex of the selected button row on clientside? 
Shinu
Top achievements
Rank 2
 answered on 03 Dec 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?