Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
255 views
I have been using VS2008 Pro for several years now.  Today I installed VS2012 Express [for Web] on my computer.  I would like to be able to do 3 things with my Telerik subscription:

  1. Install the Telerik controls in the Toolbox so I can use them with a New Project.
  2. Load my existing app into VS2012 and rest assured that the Telerik controls (ie. Treeview, Slider, ListBox, etc.) will just work.
  3. Install and use JustCode, if possible.

#1 & #2 are absolute requirements.  #3 is optional

Further to #1, I right-clicked in the Toolbox area of the VS2012 IDE and chose "Choose Items".  On the ".NET Framework Components" tab of the dialog box I chose Browse.  I navigated here: C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q3 2012\Bin45
Three files appeared:

  1. Telerik.Web.Design.dll
  2. Telerik.Web.UI.dll
  3. Telerik.Web.UI.Skins.dll

I tried clicking on the first two.  It said "Loading the selected file(s)"  Then later, when I pressed OK this message appeared: "The following controls were successfully added to the toolbox but are not enabled in the active designer:"  After that, no Telerik tools appeared in the Toolbox.

While I had hoped I could save the cost of buying VS2012 Professional, this is not a very good start.  Time is Money.

I would like a definitive answer from Telerik Support to my 3 questions above.  Can I do all of that with the Express version of VS2012: Yes or No?

Robert

Robert
Top achievements
Rank 1
 answered on 27 Dec 2012
0 answers
74 views
Hi ,

I have rad scheduler with drag and drop like this example
http://demos.telerik.com/aspnet-ajax/scheduler/examples/draganddropintegration/defaultcs.aspx?product=scheduler

How can i change dragging appointment style looks like appointment. its looks like grid record so i need to change 

Let me know 

Thanks,
Prasanna
Prasanna
Top achievements
Rank 1
 asked on 27 Dec 2012
3 answers
134 views
Hello,

We are using Telerik ASP.NET AJAX controls for our products and very satisfied with them. Hiowever while undergoing MSOCAF certification for Microsoft Online we found out that Telerik Telerik.Web.UI dll gives a lot of errors when analyzed by MSOCAF tool. Microsoft requires that all 3-rd party tools were MSOCAF certified. Do you have a MSOCAF certified version or any document with these error justifications?


Thank you,

Irene
Genady Sergeev
Telerik team
 answered on 27 Dec 2012
4 answers
284 views
Hi, new to scheduler control.  How do I set the background-color on the column header (where Weekday names are)?
Bob
Top achievements
Rank 1
 answered on 27 Dec 2012
1 answer
98 views
Hi,

I was checking the RibbonBar control. To my understanding, we can hide / unhide ribbongroup within a bar using client side script (Java script). Is there a way to change the tab dynamically using client side script?



Regards,
Kajal
Helen
Telerik team
 answered on 27 Dec 2012
3 answers
151 views
Hi, Ive noticed that my RadImageEditor stopped working when saving images. It was the first time I tried it after upgrading to Q3 2012 and im almost sure it was working as expected before. I use a custom button on the toolbar in order to save the images on client side. When I click the button, the query strings that were passed from the calling page seem to be overwritten by the control. In fact, when page first loads (Page_Load), my strings are this:

Request.QueryString["myFileLocation"] = "http://www.rbc.com/community-sustainability/_assets-custom/images/RBC_BWP_Wallpaper_1600X1200_EN.jpg"

Request.QueryString["myFileName"] = ""

When I click the save button, I get this (still in Page_Load):
Request.QueryString["myFileLocation"] = "http://www.rbc.com/community-sustainability/_assets-custom/images/Telerik.Web.UI.WebResource.axd?type=iec"

Request.QueryString["myFileName"] = null

Here is the code to reproduce it. You need to call the page using query strings like this:

http://localhost:PORT/Test3.aspx?myFileLocation=http://www.rbc.com/community-sustainability/_assets-custom/images/RBC_BWP_Wallpaper_1600X1200_EN.jpg&myFileName=

Test3.aspx
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
                        <telerik:RadImageEditor ID="RadImageEditor1" runat="server" StatusBarMode="Top" ToolsLoadPanelType="AjaxPanel">
                            <Tools>
                                <telerik:ImageEditorToolGroup>
                                    <telerik:ImageEditorTool CommandName="Print" />
                                    <telerik:ImageEditorTool ImageUrl="~/Images/Icons/Floppy.png" Text="Download" meta:resourcekey="ImageEditorDownload" CommandName="CustomDownload" />
                                </telerik:ImageEditorToolGroup>
                                <telerik:ImageEditorToolGroup>
                                    <telerik:ImageEditorToolStrip CommandName="Undo" />
                                    <telerik:ImageEditorToolStrip CommandName="Redo" />
                                    <telerik:ImageEditorTool CommandName="Reset" />
                                </telerik:ImageEditorToolGroup>
                                <telerik:ImageEditorToolGroup>
                                    <telerik:ImageEditorTool CommandName="Crop" IsToggleButton="true" />
                                    <telerik:ImageEditorTool CommandName="Resize" IsToggleButton="true" />
                                    <telerik:ImageEditorTool CommandName="Zoom" />
                                    <telerik:ImageEditorTool CommandName="ZoomIn" />
                                    <telerik:ImageEditorTool CommandName="ZoomOut" />
                                    <telerik:ImageEditorTool CommandName="Opacity" IsToggleButton="true" />
                                    <telerik:ImageEditorTool CommandName="Rotate" IsToggleButton="true" />
                                    <telerik:ImageEditorTool CommandName="RotateRight" />
                                    <telerik:ImageEditorTool CommandName="RotateLeft" />
                                    <telerik:ImageEditorTool CommandName="Flip" IsToggleButton="true" />
                                    <telerik:ImageEditorTool CommandName="FlipVertical" />
                                    <telerik:ImageEditorTool CommandName="FlipHorizontal" />
                                    <telerik:ImageEditorTool CommandName="AddText" IsToggleButton="true" />
                                    <telerik:ImageEditorTool CommandName="InsertImage" IsToggleButton="true" />
                                </telerik:ImageEditorToolGroup>
                            </Tools>
                        </telerik:RadImageEditor>
                     
                        <script type="text/javascript">
                            Telerik.Web.UI.ImageEditor.CommandList["CustomDownload"] = function (imageEditor, commandName, args) {
                                imageEditor.saveImageOnClient("Image");
                            }
                         </script>
 
 
                    </telerik:RadAjaxPanel>

Test3.aspx.cs
protected void Page_Load(object sender, System.EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                //check Request.QueryString["myFileLocation"] and Request.QueryString["FileName"] here after save click
            }
        }

Also, is it normal that the save is creating a page reload (IsPostBack="false")? Im not sure if the real problem here is this query string "contamination" or if before Q3 2012, the save click was creating a postback instead (IsPostBack=true) ...which is surely changing my logic.

TIA

Martin
Vessy
Telerik team
 answered on 27 Dec 2012
8 answers
203 views
In Bound Column is Zero how i show it's empty


<telerik:TreeListBoundColumn DataField="Quantity" HeaderText="Quantity" UniqueName="Quantity"
                                    HeaderStyle-Width="50px" DataFormatString="{0:0}" />

Thanks Advance,
Mohamed.
Vasil
Telerik team
 answered on 27 Dec 2012
1 answer
63 views
Increase Handler mouse outside radslider  does not fire radslider  value changed event in server side same like with first example custom panging in List view.Press mouse while moving outside increase or decrease Handler
Angel Petrov
Telerik team
 answered on 27 Dec 2012
1 answer
100 views
while exporting the radgrid to excel in html format, Group by buttons appear in XLS. I tried the  grdReport.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.None, that helped to hide the header buttons. But the group by header buttons still appearing. Please help.
Daniel
Telerik team
 answered on 27 Dec 2012
0 answers
78 views
Hi all,

I have telerik controls and i have created the telerik application in my development server which have installed telerik control.
it's working fine in localhost.
But when i deploy this application into other server which have sharepoint 2010, it's not working there.
Problem come due to version problem.

 How can i Deploy the telerik solution on that sharepoint 2010 server  ?

error come as - 

Server Error in '/' Application.   
Could not load file or assembly 'Telerik.Web.Design' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.


Please help us at the earliest.
Thanks.
Sushobhit
Top achievements
Rank 2
 asked on 27 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?