Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
135 views
Hi
I am using version ="1.0" of RadEditor with SpellCheck option.
When Spellcheck starts, and if first word on the editor is wrong. Then though this word is highlighted, but SpellCheck options do not appear under this word. It starts from the second word, and the first word remains highlighted, unless I place the cursor on the word and click.
If the first word is correct then Spellcheck functionality works fine.
Request if anyone could help me out withthis issue.
Thanks in advance.
Rumen
Telerik team
 answered on 16 Mar 2010
5 answers
198 views
hi.
Can you please tell me how can i access the object of FileContentProvide with RadFileExplorer ?

Regards,
Samee Javaid        
Lini
Telerik team
 answered on 16 Mar 2010
8 answers
129 views

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

Stanimir
Telerik team
 answered on 16 Mar 2010
4 answers
557 views
Hi,
I have a problem using horizontal radio buttons (RadioButtonList) inside the ResourceControl.ascx for my AdvancedEditTemplate.

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.

 

Lior S
Top achievements
Rank 1
 answered on 16 Mar 2010
1 answer
129 views

I have implemented a Rad Drop-down "Region" and a rad drop-down "Country/Locations" which contains a tree view. The Country/Locations works fine on the page load where all values are populated. However, I am trying the filter the "Country/Locations" drop-down values when the user selected a region. For example by default all countries are listed with their locations as child nodes. When I select "Region" ="All Americas", I want to invoke the server-side ItemRequested event of the "Country/Locations" drop-down control which will clear the existing values and set a new set of data which will contain only the filtered values.

Currently, the item Requested event is firing. However, I get the following javascript-error:

"Script Control 'radTreeLocations' is not a registered script control. Script controls must be registered using register ScriptControl() before calling RegisterScriptDescriptors().

Parameter name: scriptControl

If I filter the data on the client-side by using this example:

http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/templates/defaultcs.aspx

The script takes a long time to execute and i get a warning message 

"A script on this page is causing Internet Explorer to run slowly"

Thanks in advance.
Vesko
Top achievements
Rank 2
 answered on 16 Mar 2010
1 answer
144 views
Automatic RadGrid data source operations doesn't seem to be working when grid is in a RadPanelBar. Do I need specify any specific variables?

<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> 

Veselin Vasilev
Telerik team
 answered on 16 Mar 2010
5 answers
249 views
I know this is not officially supported, but I would like to find out if you guys know of any unofficial support, as I have seen in your support forums, that it used to be possible and there were some work arounds.

Do to limitations of design with RadWindow and RadDock, I would like to use the AJAX Modal Dialog control from the AJAX Toolkit on my site.  I know it's not recommended, but the fact is, RadWindow and RadDock do not offer the same functionality, and require far more code to accomplish the functionality I desire. 

However of course the AJAX Toolkit requires the <asp:AjaxScriptManager> which can't be on the same page as the <telerik:ScriptManager>  so do you guys know any method off the top of your heads to get the AJAX Toolkit to use the Telerik script manager?

Thanks!
Georgi Tunev
Telerik team
 answered on 16 Mar 2010
1 answer
176 views
I'm using the editor to allow people to edit HTML that will be sent in an email.

When someone inserts an image it's using a relative path for the image so in the email the image is broken.

Is there a simple way to tell the editor to use a fully-qualified URL for images inserted into it?

Thanks,
Kevin
Rumen
Telerik team
 answered on 16 Mar 2010
3 answers
199 views

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>

Dimo
Telerik team
 answered on 16 Mar 2010
1 answer
139 views
Hello,

I just upgraded to the latest version of Telerik UI (version 2010.1.309.35). Now there is a problem on how my grids are displayed. In previous version, when I set GridLines="None" property for the grids, the borders separating the rows wouldn't display, which was my desired behavior. Now, after upgrading, even though that property is still set for my grids, the borders are now displayed. Please see the attached screenshot.

Thanks
Dimo
Telerik team
 answered on 16 Mar 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?