Hi,
I was provided with source code of VS project that uses Telerik controls. It's a WebSite and has dll's in Bin folder.
Telerik controls version is 2010.2.826.40.
There is no Telerik.Web.Design.dll file in the project folders, but it's referenced in web.config file. I haven’t installed any Telerik package before, neither now because i have only project files.
Is there any way to proper see controls in VS 2010 editor and not getting error "Failed to create designer" without having file Telerik.Web.Design.dll? I've tried solutions from the forum and errors with references/sourcecode disappeared. However design view in VS 2010 is still not working.
<
telerik:RadProgressManager
id
=
"Radprogressmanager1"
runat
=
"server"
/>
<
telerik:RadUpload
ID
=
"RadUpload1"
Runat
=
"server"
Visible
=
"true"
InitialFileInputsCount
=
"1"
MaxFileInputsCount
=
"1"
controlobjectsvisibility
=
"ClearButtons"
/>
<
asp:Button
ID
=
"cmdUpload"
runat
=
"server"
Text
=
"Upload"
Visible
=
"true"
/>
<
telerik:RadProgressArea
id
=
"progressArea1"
runat
=
"server"
progressindicators
=
"TotalProgressBar, TotalProgressPercent, TotalProgress, RequestSize, CurrentFileName, TimeElapsed, TimeEstimated, TransferSpeed"
DisplayCancelButton
=
"true"
/>
Hi,
My code for RadEditor is as below
<telerik:RadEditor ID="TelerikEditor" runat="server" EnableResize="False" SkinID="BasicSetOfTools" BackColor="White" EditModes="Design" OnClientCommandExecuting="OnClientCommandExecuting1" RegisterWithScriptManager="true">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorDropDown Name="FormatBlock">
</telerik:EditorDropDown>
<telerik:EditorDropDown Name="FontName">
</telerik:EditorDropDown>
<telerik:EditorDropDown Name="RealFontSize">
</telerik:EditorDropDown>
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="AbsolutePosition" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Bold" />
<telerik:EditorTool Name="Underline" />
<telerik:EditorTool Name="Italic" />
<telerik:EditorTool Name="StrikeThrough" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="JustifyLeft" />
<telerik:EditorTool Name="JustifyCenter" />
<telerik:EditorTool Name="JustifyRight" />
<telerik:EditorTool Name="JustifyFull" />
<telerik:EditorTool Name="JustifyNone" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Indent" />
<telerik:EditorTool Name="Outdent" />
<telerik:EditorTool Name="InsertOrderedList" />
<telerik:EditorTool Name="InsertUnorderedList" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorSplitButton Name="ForeColor">
</telerik:EditorSplitButton>
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="ImageManager" />
<telerik:EditorTool Name="LinkManager" />
<telerik:EditorTool Name="Unlink" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</Content>
</telerik:RadEditor>
Is there any extra efforts required for "JustifyNone" make working in Firefox ?