Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
105 views
Whenever I add a Telerik control to any aspx or master page I seem to come across a rending problem.
As an example,a RadMenu is placed on a master page which only partially shows up (see attachments).
When running in browser, all appears fine and as it should.
VS2013 Professional designer is not showing anything Telerik correctly.
I've tried this on a laptop and main PC, both the same.

Any assistance appreciated.

Thanks
ArronG


Vessy
Telerik team
 answered on 01 Oct 2014
7 answers
125 views
Hi,

Some of the tools on the RadEditor that I have added does not work.  For example, the bold doesn't bold and the indent doesn't indent nor does the outdent.

Here's my code:

    <telerik:radeditor runat="server" ContentFilters="RemoveScripts" ID="RadEditor1" EditModes="Design"
                            OnClientLoad="OnClientLoad" Width="800px" Height="200px">
                            <Tools>
                                <telerik:EditorToolGroup Tag="Top">
                                    <telerik:EditorTool Name="AjaxSpellCheck" Enabled="true" />
                                    <telerik:EditorTool Name="Cut" />
                                    <telerik:EditorTool Name="Copy" />
                                    <telerik:EditorTool Name="Paste" />
                                    <telerik:EditorTool Name="Undo" />
                                    <telerik:EditorTool Name="Redo" />
                                    <telerik:EditorTool Name="FontName" popupwidth="150px" popupheight="150px" width="150px" />
                                    <telerik:EditorTool Name="FontSize" popupwidth="35px" popupheight="35px" width="35px" />
                                    <telerik:EditorTool Name="ForeColor" />
                                    <telerik:EditorTool Name="Bold" />
                                    <telerik:EditorTool Name="Italic" />
                                    <telerik:EditorTool Name="Underline" />
                                    <telerik:EditorTool Name="InsertUnorderedList" />
                                    <telerik:EditorTool Name="InsertOrderedList" />
                                    <telerik:EditorTool Name="Indent" />
                                    <telerik:EditorTool Name="Outdent" />
                                    <telerik:EditorTool Name="JustifyLeft" />
                                    <telerik:EditorTool Name="JustifyCenter" />
                                    <telerik:EditorTool Name="JustifyRight" />
                                    <telerik:EditorTool Name="JustifyFull" />
                                </telerik:EditorToolGroup>
                            </Tools>
                            <Content></Content>
                        </telerik:radeditor>


Also the Font tool would add an extra empty tool row in IE, but does not in Firefox or Chrome.

Ianko
Telerik team
 answered on 01 Oct 2014
4 answers
215 views
Hi,

I am facing problem with Tekerik control. I am using telerik version 2014.1.403.40. I have two master page. Telerik is working fine on one master page and I got Telerik undefined error on another master page. And I already add web resource in web.config. That's really weird. And it only happened on production server. Our local server and local computer is working fine. Our production server use IIS8.5 and our local server use IIS8.0. Can any one help me? Thanks in advance.

Thank you.

Best regards,
Ei Wai
Ei Wai
Top achievements
Rank 1
 answered on 01 Oct 2014
5 answers
191 views
I was wondering if anyone had the Greek dictionary.  I tried making one with the Dictionary Configuration tool but I could not get it to work.
Joan VANDERWEYST
Top achievements
Rank 1
 answered on 30 Sep 2014
2 answers
119 views
Hello,

I am trying to create a wrapper control for the radsearchbox. As a part of that, I'd like to make it so that somebody can set a client template in the wrapper control and have that pass through to the RadSearchBox. Is that possible?

I know I can't use a server control in the client template... but is there any way to set the whole template - like all the text in it - programmatically?

Thanks,

Mike
Mike
Top achievements
Rank 1
 answered on 30 Sep 2014
1 answer
190 views
Hi all,
 
I have a radgrid which i want to export to csv. But my problem is i want to hide the headers when exporting. How can i acheive this??
below are the codes am trying to use

if (e.CommandName == RadGrid.ExportToCsvCommandName)
           {
 
               GridHeaderItem HeaderItem = (GridHeaderItem)RadGrid1.MasterTableView.GetItems(GridItemType.Header)[0];
                HeaderItem.Visible = false;
           }
 any help
Troy
Top achievements
Rank 1
 answered on 30 Sep 2014
4 answers
260 views
I am using the RadGrid to present information which must be multiselected before a button is pressed for processing.  I am able to replicate the functionality I am looking for from the RadGrid by holding the Ctrl button down and selecting/deselecting only the cells I want.  But I need to be able to configure the grid to handle this without my holding the Ctrl button down on the client-side.

I tried overriding the OnCellSelecting event under ClientEvents and using the following code:

<script type="text/javascript">
    function cellSelecting(sender, args) {
 
        var selects = sender._selectedCellsIndexes;
        var selectedColumn = args.get_column();
        var dataItem = args.get_gridDataItem();
        var cellName = dataItem.get_itemIndexHierarchical() + "&" + selectedColumn.get_uniqueName();
        var output = String.format(cellName);
        var index = -1;
        for (var i = selects.length - 1; i >= 0; i--) {
            if (selects[i] === cellName) {
                index = i;
            }
        }
        console.log(dataItem);
        if (index == -1)
        {
            selects.push(cellName);
        }
        else
        {
            selects.splice(index, 1);
            dataItem._selected = false;     
        }
        selectedColumn.set_selected(dataItem.get_itemIndexHierarchical());
        //sender.set_selected(selects);
        selectedColumn.set_selected(selects);
        console.log(sender);
        console.log(selects);
       // args.set_cancel(true);
        //alert(output)
    }
</script>

The problem is when args.set_cancel(true) I can modify the selection array, but it doesn't complete the selection process and display the selections on the grid.  And when I have args.set_cancel(false) it overrides my efforts and replaces the selection with a single cell selection.  How can I make this work?
David
Top achievements
Rank 1
 answered on 30 Sep 2014
2 answers
98 views
Hi, 

i've got 2 modal window.
I need that the second window stay on top always.

But first the modal feature is not correct since the first still clickable/accessible after the second opened. And worst I have a radAjaxPanel inside the second window and when it partial postback everything is fine except that the window go below the first one...
I tried to call the function show or/and setactive on the respondEnd event of the radAjaxPanel but that's just make the window blink...
the window go below and on top and finally below....

I said the second window go behind the first one, but in fact it's the first that go on top of the second. Because i see the z-index increment...
The things that i don't understand is why the first window keep going on top like that ?? Actually i would this behaviors for the second window only :-( 

Sorry english is not my first language, I hope it's understandable

Thanks
mathieu
Top achievements
Rank 1
 answered on 30 Sep 2014
1 answer
52 views
I am looking for an old version (RadPanelBar.Net2.dll) for a legacy web application - it is not possible to update to any version later for this perticular app, it has to be exactly the same. 

Any idea where I can get a hold of this?

Many thanks
Joseph
Telerik team
 answered on 30 Sep 2014
2 answers
194 views
Hi,

I am searching for a way to plot a chart from a List objects classifieds in A, B and C as the ABC Curve theory to management stock of products.
This chart should be divided in three parts, each with a different color and its a cumulative chart in a range 0% and 100% in both axis, like attached image.

There are a easy way that to do this using RadHtmlChart with AreaSeries?
Danail Vasilev
Telerik team
 answered on 30 Sep 2014
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?