
Hi,
I have installed Lite RadEditor (4.4.0.0) for WSS 3.0. It works amazingly well, and I would like to take this occasion to thank Telerik for this.
I just have one small issue:
When I create a list, I can define the number of lines per field, but it would seem that RadEditor does not respect this information and always puts the same window size across all fields and lists.
The second issue is within Wikis where RadEditor gives me a very small window to edit text which as you can imagine, my users find quiet disturbing.
I have changed the Height and Width in the ListConfigFile.xml but the issue is that it means that it still does not follow the number of lines defined in each of the fields and secondly, as the width and height are common to Wikis and other Lists such as tasks, this is really not a solution as you can imagine.
Is there a way to have RadEditor to behave the same way as the WSS Editor?
If not, how can I define different window sizes depending on whether I'm editing a list (such as Tasks) or a Wiki?
And better, could I get when editing Wikis, the window to take all the space it can in IE?
Thanks in advance for your help,
Antoine
There is lots of space between the radio buttons and i just need 20px between them. I tried to change the width, margin and lots of other things but couldn't fix it.
I added the same RadioButtonList to the "Sample project of the Customizing the Advanced Template example" (Q3 2009) and had the same problem so i took a screenshot and attached to this thread.
I'll appreciate any help.
| <telerik:RadPanelItem Value="companyNames" runat="server"> |
| <ItemTemplate> |
| <telerik:RadGrid ID="RadGrid1" runat="server" Skin="Windows7" AllowAutomaticDeletes="True" |
| AllowAutomaticInserts="True" PageSize="10" AllowAutomaticUpdates="True" AllowPaging="True" |
| AutoGenerateColumns="False" DataSourceID="datasource" DataKeyNames="id" OnItemUdated="radGrid_ItemUpdated" |
| OnItemDeleted="radGrid_ItemDeleted" OnItemInserted="radGrid_ItemInserted" OnDataBound="radGrid_DataBound"> |
| <PagerStyle Mode="NextPrevAndNumeric" /> |
| <MasterTableView DataSourceID="datasource" Width="100%" CommandItemDisplay="TopAndBottom" |
| DataKeyNames="id" HorizontalAlign="NotSet" AutoGenerateColumns="False" EditMode="InPlace"> |
| <Columns> |
| <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn" /> |
| <telerik:GridBoundColumn DataField="id" Visible="false" HeaderText="id" UniqueName="id" |
| DataType="System.Int32" /> |
| <telerik:GridBoundColumn UniqueName="companyName" DataField="companyName" HeaderText="companyName" |
| ColumnEditorID="GridTextBoxColumnEditor1" /> |
| <telerik:GridNumericColumn UniqueName="percentage" DataField="percentage" HeaderText="Percentage" |
| ColumnEditorID="GridNumericColumnEditor1" /> |
| <telerik:GridButtonColumn ConfirmText="Delete this entity?" ConfirmDialogType="RadWindow" |
| ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete" |
| UniqueName="DeleteColumn"> |
| <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> |
| </telerik:GridButtonColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
| <telerik:GridDropDownListColumnEditor ID="GridDropDownColumnEditor1" runat="server" |
| DropDownStyle-Width="110px" /> |
| <telerik:GridNumericColumnEditor ID="GridNumericColumnEditor1" runat="server" NumericTextBox-Width="40px" /> |
| <asp:SqlDataSource ID="datasource" runat="server" ConnectionString="<%$ ConnectionStrings:sqlReIns1 %>" |
| DeleteCommand="DELETE FROM myTable WHERE (id = @id)" OldValuesParameterFormatString="original_{0}" |
| InsertCommand="INSERT INTO myTable(companyName, percentage, parentID) VALUES (@companyName, @percentage, @parentID)" |
| SelectCommand="SELECT id, companyName, percentage FROM myTable where parentID=@parentID" |
| UpdateCommand="UPDATE myTable SET companyName = @companyName, percentage = @percentage WHERE (id = @id)"> |
| <SelectParameters> |
| <asp:SessionParameter DefaultValue="0" Name="parentID" SessionField="sessparentID" |
| Type="Int32" /> |
| </SelectParameters> |
| <DeleteParameters> |
| <asp:Parameter Name="id" Type="Int32" /> |
| </DeleteParameters> |
| <UpdateParameters> |
| <asp:Parameter Name="companyName" /> |
| <asp:Parameter Name="percentage" /> |
| <asp:Parameter Name="id" /> |
| </UpdateParameters> |
| <InsertParameters> |
| <asp:Parameter Name="companyName" Type="String" /> |
| <asp:Parameter Name="percentage" Type="Double" /> |
| <asp:SessionParameter DefaultValue="0" Name="parentID" SessionField="sessparentID" |
| Type="Int32" /> |
| </InsertParameters> |
| </asp:SqlDataSource> |
| </ItemTemplate> |
| </telerik:RadPanelItem> |
| </Items> |
| </telerik:RadPanelItem> |

Requirement is to replace the < and > links in the Calendar titlebar to the text 'Previous Year' and 'Next Year' and make those links highlighted when the cursor hovers over them for both Firefox 3.5 and IE 7+ browsers. The CSS I defined in the .aspx file is below. It works fine in IE but the old 'CSS width property' issue with FF/IE is making the highlighted text appear inconsistent with IE (with the padding around the text). Any ideas on how to fix this?
<style type="text/css">
td.rcTitle{
color: black;
height: 3em;
}
/* provide extra room for the previous/next year text at the title edges */
.RadCalendar_Default .rcTitlebar .rcTitle{
width: 85%;
}
/* remove the fast previous/next <</>> links in the title bar */
.RadCalendar_Default .rcTitlebar .rcFastNext,
.RadCalendar_Default .rcTitlebar .rcFastPrev {
display: none;
}
.RadCalendar_Default .rcTitlebar a.rcNext:hover,
.RadCalendar_Default .rcTitlebar a.rcPrev:hover {
background-color: #c2cfe5;
border:1px solid #335ea8;
}
.RadCalendar_Default .rcTitlebar a.rcNext:active,
.RadCalendar_Default .rcTitlebar a.rcPrev:active {
background-color: #99afd4;
border:1px solid #335ea8;
}
/* display the previous/next year text */
.RadCalendar_Default .rcTitlebar a.rcNext,
.RadCalendar_Default .rcTitlebar a.rcPrev {
display: inline;
background: none;
overflow: visible;
text-decoration: underline;
color: black;
width: 110px;
text-indent:0px;
}
</style>

