Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
122 views
Hello guys ... and girl,

I need a hand in resolving an issue with RadRibbonBar. As I understand, I can get it to minimize / collapse by setting its EnableMinimizing to True. That's all fine but there's a small problem to it. It can collapse, but the height would remain there, serving as unnecessary whitespace. Is there a way to adjust the height on minimize? I know that can be done with a bit of javascript and css, but would love to skip the css part, if possible that's because css varies from Skins, if I'm not mistaken.

Thank
Aneliya Petkova
Telerik team
 answered on 01 Oct 2014
6 answers
279 views

Hi All,

I have integrated the bar-chart with my application and checked graph with different scenarios. I found one issue with rendering the negative values. The X axis labels gets plotted on the grid lines of graph. Please check the attached image("Barchart_NegativeValues.jpg"). This is looking vary ugly. I have old RAD Chart implementation in my project, I have attached sample image of old graph. In old RAD chart this case was handled.

Can anyone tell me know how to show the labels outside the graph in case of negative value(Please see attached image "old HTML Chart.jpg")

Thanks,

Vaibhav

Stamo Gochev
Telerik team
 answered on 01 Oct 2014
1 answer
125 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
156 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
283 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
251 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
155 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
226 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
328 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
140 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
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?