by Altaf Pinjari
23. February 2011 06:27
By default flash files are disabled by SharePoint 2010. You can enable flash by following steps
1. Navigate to central administration >
2. Application Management > Manage Web applications >
Then select your web application >
3. From top ribbon select > general settings > general settings>
4. Navigate to “Browser File Handling”
5. Select Permissive
Done
by Altaf Pinjari
14. February 2011 06:25
The Rich Text content area of RadEditor is an editable IFRAME element, which is a separate document that has its own CSS styles applied through the embedded in the Telerik.Web.UI.dll skin. This default content appearance in the content area can be easily overridden by setting the editor'sContentAreaCssFile property to point to your own CSS file. For example create a file named EditorContentAreaStyles.css and put a global body tag with the desired font and color settings in it, e.g.
body
{
font-family: Verdana !important;
font-size: 18px !important;
color: #99ff99 !important;
background-color: #333333 !important;
text-align: left !important;
word-wrap: break-word !important;
}
Since the css file is loaded first on purpose, it is possible for another global class on the page to override its settings. To prevent the overriding of the properties defined in the EditorContentAreaStyles.css file just set the !important rule after the properties values (or use the editor's CssFiles property to load the css file).
Save the css file and set the ContentAreaCssFile property to point to it:
<telerik:RadEditor
ContentAreaCssFile="~/EditorContentAreaStyles.css"
id="RadEditor1"
runat="server">
</telerik:RadEditor>
by Vipul Bhavsar
6. February 2011 06:22
Recent versions of Dreamweaver automatically create two editable regions in the head of a template. The first is called "doctitle", and should contain only the <title> tag like this:
<!-- TemplateBeginEditable name="doctitle" --> <title>Your Page Title Goes Here</title> <!-- TemplateEndEditable -->
The second is called "head", and goes just before the closing </head> tag. It looks like this:
<!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable --> </head>
Use this second editable region to add keywords, description, and other <meta> tags, as well as links to external style sheets and JavaScript files. By default there is nothing between the two template comment tags, so it's easy to miss.
If you are using an old version of Dreamweaver, you need to add the "head" editable region manually to the main template file. Just copy and paste the two lines shown above immediately before the closing </head> tag.