Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
176 views

Wonder if this had been asked before but I notice the Image Editor in Image Manager of RadEditor lack the ability for pencil drawing or did I miss something here?

I was under the impression that the Image Editor in Image Manager of RadEditor actually is the Rad Image Editor.

SHSIOW
Top achievements
Rank 1
 answered on 20 Jul 2016
0 answers
63 views

i am having header data but it is overwritten by GroupingSettings-GroupContinuesFormatString keeping value Showing {0} of {1} items.

what i need it Showing {0} of {1} items. + my header data

Sam
Top achievements
Rank 1
 asked on 20 Jul 2016
5 answers
244 views

 Please see attached image.

We are in the process of replacing Highcharts with the Telerik RADHtmlChart (as we have had so many issues with Highcharts).

As this is an existing system we need to give the same look and feel. We have lots of charts which I have replaced. I am now down to the last one :-)

The chart groups given the following data set:

Range    Value

0-9          0

9-18        0

18-28      0

28-37      1

37-46      0

Can you advise me how I can get the RADHtmlChart to graph as per the attached image.

Rick
Top achievements
Rank 1
 answered on 19 Jul 2016
1 answer
96 views

Hi, i need disable the column Q1 from my chart,how i can disable?

 

My Code is:

 

<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="70%">
            <ChartTitle Text="Test">
<Appearance Align="Center" Position="Top"></Appearance>
</ChartTitle>
<Legend>
<Appearance Position="Bottom"></Appearance>
</Legend>

            <PlotArea>
<XAxis AxisCrossingValue="0">
<MinorGridLines Visible="false" />
<Items>
<telerik:AxisItem LabelText="Init"></telerik:AxisItem>
<telerik:AxisItem LabelText="Month"></telerik:AxisItem>
<telerik:AxisItem LabelText="1-30"></telerik:AxisItem>
<telerik:AxisItem LabelText="30-90"></telerik:AxisItem>
<telerik:AxisItem LabelText="+ 90"></telerik:AxisItem>
<telerik:AxisItem LabelText="Finaly"></telerik:AxisItem>
</Items>
</XAxis>
<YAxis>
<LabelsAppearance DataFormatString="C0"></LabelsAppearance>
<MinorGridLines Visible="false" />
</YAxis>
<Series>
<telerik:WaterfallSeries>
<TooltipsAppearance Visible="false"></TooltipsAppearance>
<LabelsAppearance Visible="true" Position="Center" DataFormatString="C0" />
<SeriesItems>
<telerik:WaterfallSeriesItem Y="1000000" />
<telerik:WaterfallSeriesItem Y="250000" />
<telerik:WaterfallSeriesItem Y="-150000" />
<telerik:WaterfallSeriesItem Y="-5000" />
<telerik:WaterfallSeriesItem Y="-500000" />
<telerik:WaterfallSeriesItem Y="-350000" />
<telerik:WaterfallSeriesItem Y="750000" />
</SeriesItems>
</telerik:WaterfallSeries>
</Series>
</PlotArea>

        </telerik:RadHtmlChart>

Niko
Telerik team
 answered on 19 Jul 2016
1 answer
206 views

Hi,

I am developing this web page in which I have a RadTabStrip connected with a RadMultiPage, both created dynamically, following this demo.

The code is pretty much the same from the demo, the differences are in the layout, in the fact that it is placed inside a Master Page and that (because of the MasterPage) the AjaxManager from the demo is replaced with an AjaxManagerProxy

Unfortunately it does not work the same way.  When I click on a tab that is not yet loaded (i.e. first click on that tab since page creation), all the other already loaded tabs refresh, causing a loss of all the client-side information.

What can be the cause? Is it solvable?

Thank you, best regards.

 

Peter Milchev
Telerik team
 answered on 19 Jul 2016
1 answer
120 views

I'm looking at potentially using Telerik UI for a calendar project but I'm running into a potential issue and I'm wondering if there is a workaround.

 

Currently if events overlap they are displayed as such

9am |Event1| Event 2| Event3|

10am

11am

Is there a way to display them horizontally?

9am |Event1|

        |Event2|

        |Event 3|

10am

11am

 

Magdalena
Telerik team
 answered on 19 Jul 2016
5 answers
75 views
I'm sure there has to be an easy solution for this. My requirement is that I need to manually close the Task window when you click on a task within Javascript. The window doesn't appear in the list of controls using $telerik.radControls library. If anyone knows how to do this, it would be much appreciated. 
Bozhidar
Telerik team
 answered on 19 Jul 2016
2 answers
116 views

Hi all,

it is possible to rebind only the current page ?

My scenario is I open a detail using a hyperlink column in a RadWindow .

when the user closes the RadWindow I would only have to rebind only the current page .

thank you

Konstantin Dikov
Telerik team
 answered on 19 Jul 2016
4 answers
270 views

Good morning,

 

I'm trying to print all the selected rows in a RadGrid together with every nested row. My table contains master table rows and each row, when expanded, contains 4 extra rows. I'm using the code example below for printing but it only prints the selected rows (if the master table row is not expanded and every nested row not selected, it will just print the master table row).

function PrintGrid() {
                var sh = '<%= ClientScript.GetWebResourceUrl(RadGrid1.GetType(),String.Format("Telerik.Web.UI.Skins.{0}.Grid.{0}.css",RadGrid1.Skin)) %>';
                var styleStr = "<html><head><link href = '" + sh + "' rel='stylesheet' type='text/css'></link></head>";
                var MasterTable = $find('<%= RadGrid1.ClientID %>').get_masterTableView();
                var selectedRows = MasterTable.get_selectedItems();
                var htmlcontent = "<table>";
                for (var i = 0; i < selectedRows.length; i++) {
                    var row = selectedRows[i];
                    htmlcontent = htmlcontent + "<tr>" + row.get_element().innerHTML + "</tr>";
                    if (row.get_nestedViews().length > 0) {
                        var nestedSelectedRows = row.get_nestedViews()[0].get_selectedItems();
                        for (var j = 0; j < nestedSelectedRows.length; j++) {
                            var nestedRow = nestedSelectedRows[j];
                            htmlcontent = htmlcontent + "<tr>" + nestedRow.get_element().innerHTML + "</tr>";
                        }
                    }
                }
 
                htmlcontent = styleStr + "<body><div class='RadGrid RadGrid_Metro'>" + htmlcontent + "</table></div></body></html>";
 
                var previewWnd = window.open('about:blank', '', '', false);
                previewWnd.document.open();
                previewWnd.document.write(htmlcontent);
                previewWnd.document.close();
                previewWnd.print();
            }

 

I'm currently lost and don't know how to take this further. Should I expand all the nested rows and select them on print button click, print the document, and then collapse them again or is there a better/faster way to do this?

Konstantin Dikov
Telerik team
 answered on 18 Jul 2016
3 answers
180 views

Hello,

is there any way how to get rid of all ScriptResource and WebResource requests of Telerik controls? I want to use standard script and style bundling. On every page there is always more then 15 requests only for embedded resources. I think it is better to have 1 request for styles and one for scripts. Well, sometimes more, but I want definitely remove all these requests. So any chance to get source scripts, create my own bundles and disable resource requests?

Thanks

Marin Bratanov
Telerik team
 answered on 18 Jul 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?