Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
376 views

Hi,

 

I am getting an javascript error message on client side when loading HTML into the Content property of the RadEditor control:

textEditor.Content = "<html xmlns="http://www.w3.org/1999/xhtml"><head><title></title></head><body><p><span>qdwqwdwqd</span></p></body></html>";

 

The error I am getting is a popup saying:

Error! Set EditorContentAreaMode to Iframe if you want to edit full page HTML!

The editor control is defined in the asp.net user control markup as :

<rade:SPRadEditor RenderMode="Classic" ID="textEditor" Runat="server"
    EditModes="Design" Language="nb-NO" OnClientLoad="editorLoad" OnClientSubmit="OnClientSubmit" ContentAreaMode="Iframe">
</rade:SPRadEditor>

 

I have also checked while debugging that the ContentAreaMode is set to Iframe while debugging.

The content is set in the editor, so that is fine. I just need to get rid of the error popup message.

 

Does anyone know how to either configure the editor to fix this or if it is possible to supress the error message in any way?

 

Best regards,

Geir Morten Hagen

Karl-Heinz
Top achievements
Rank 1
 answered on 19 Dec 2017
6 answers
369 views
I want clients to only be able to insert a single row in my Grid.  After the insert, i'd like to remove the ADD button...
any pointers plz ?

Tim
Ramya
Top achievements
Rank 1
 answered on 19 Dec 2017
2 answers
229 views
Hello,
I would like use Radmap on my c# Webform.
let assume User has type address and click on show map button then i need to show RadMap with user typed location

How can i do this..
Please provide sample code(client side  or serverside)
Gcobani
Top achievements
Rank 1
 answered on 19 Dec 2017
0 answers
102 views

Hello,

I display GridDateTimeColumns in localized format on the grid but I need the filter expression for the GridDateTimeColumn to be in US date time format because datetimes in my database or stored in this format. I use the grid.MasterTableView.FilterExpression (in SQL format with EnableLinqExpressions false) in NeedDataSource to filter data in the database with the applied filters. The format of the filter expression is in the culture of the user's browser rather than the US date format. How can I change the filter expression date format?

 

Thank you.

Ryan
Top achievements
Rank 1
 asked on 19 Dec 2017
0 answers
57 views

Does radgrid have the capability of "clientside" filtering?  Where it does the filter on the "grid" data itself (clientside) and then return the row accordingly?  What I mean is rather then come back to the server and redo a SQL query, the filter will just search all data on the grid (all columns) on the client side and display the rows that matches.

Thank you!

Frank
Top achievements
Rank 1
 asked on 18 Dec 2017
0 answers
99 views

Hi,

I have created the application with Radtreelist control. I have used datagrid as one of the template column.

In radtreelist, i have one asp:checkbox, and the datagrid has one checkbox. My requirement is when i click on the checkbox in the radtreelist, it automatically should select the checkbox in the datagrid. Am using javascript, but it throwing error in find element. Please assist me. 

 function Checked(btn, e) {
                var radgrid = $find("<%= RadBOMTreeList.ClientID %>");
                var row = radgrid.get_dataItems();
                for (var i = 0; i < row.length; i++) {
                    var Rows = row[i];
                var chk = radgrid.getContainerItem("chkItemNoBOM");
                    var grdDrawings = Rows.findElement("grdDrawings");
                    //Get all input elements in Gridview
                    var inputList = grdDrawings.getElementsByTagName("input");
                    for (var j = 0; j < inputList.length; j++) {
                        if (chk.checked == true) {
                            if (inputList[j].type == "checkbox") {
                                chk.checked = true;
                                inputList[j].checked = true;
                            }
                        }
                        else {
                            chk.checked = false;
                            inputList[j].checked = false;
                        }
                    }
                }
            }

karthika
Top achievements
Rank 1
 asked on 18 Dec 2017
3 answers
1.5K+ views

Keeps saying time after time it is a bit old, even after installing new version.

 

See screenshot.

 

Marc

Nikolay Mishev
Telerik team
 answered on 18 Dec 2017
2 answers
190 views

We have a project using 2 RadListBoxes to transfer items each other as below. when we double-click an item in one list, the item will be transferred to another list. That works very well. But in server side asp.net code, the number of items in each box is not correct. I tried to create an event handler for OnClientDoubleClicking and OnClientDoubleClicked to track and commit the changes. But it is still the same error.  Can someone help on this? Thanks.

 

<p><telerik:RadListBox runat="server" ID="rlbUnselectedStatus" AutoPostBackOnTransfer="false"<br>                            AllowTransfer="true" AllowTransferOnDoubleClick="true" TransferToID="rlbSelectedStatus"<br>                            DataTextField="StatusName" DataValueField="StatusId" CausesValidation="false"<br>                            SelectionMode="Multiple" Height="120px" Width="240px" TabIndex="1"  /></p><p><br>                        <telerik:RadListBox runat="server" ID="rlbSelectedStatus" AutoPostBackOnTransfer="false"<br>                             AllowTransfer="true" AllowTransferOnDoubleClick="true" TransferToID="rlbUnselectedStatus"<br>                            DataTextField="StatusName" DataValueField="StatusId"  CausesValidation="false" <br>                            SelectionMode="Multiple" Height="120px" Width="210px" TabIndex="1" /></p>
Peter Milchev
Telerik team
 answered on 18 Dec 2017
6 answers
705 views

I am using version Telerik.Web.UI  2016.2.607.45  

 

I have downloaded the patch SecurityPatch_2016_2_607.zip from https://www.telerik.com/account/product-download?product=RCAJAX

 

When I replaced the references form the old Telerik.Web.UI to the newly patched dll I get the following error compiling the project.  

 

'Could not load file or assembly 'Telerik.Web.UI, Version=2016.1.225.45, Culture=neutral, PublicKeyToken=' xxxx' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515) 'D:\......LC'

 

This appears to be in my license Telerik.Web.UI.RadGrid, Telerik.Web.UI, Version=2016.1.225.45.  I did not renew my subscription in 2016 but purchased the license 2015

 

 

 

 

 

Marin Bratanov
Telerik team
 answered on 18 Dec 2017
0 answers
99 views

Here is what is working:
I have a RadGrid with a single MasterTableView, loading data from a database table.
Users are able to edit the data using a WebUserControl:
                <EditFormSettings UserControlName="JIBCoding.ascx" EditFormType="WebUserControl" PopUpSettings-Height="600" PopUpSettings-Width="1000">
                    <EditColumn UniqueName="order_by">
                    </EditColumn>
                </EditFormSettings>
The Edit form appears, the user can edit the data, press the "Update" button, which triggers the 'OnUpdateCommand="RadGrid1_UpdateCommand"' to reflect the edited data in the grid and update the database.
All this works fine.

However, I need to be able to perform some validation on the data entered by the user before the Update sequence starts.
If the validation fails, I want to display an alert with an error message, and with the WebUserControl form to remain displayed, with the data as entered by the user. Basically intercept the "update" sequence.

As a result, I have been trying to figure out how to programmatically fire the "Update" comment from Javascript, and I can't figure out what I'm doing wrong.
I've been basing my attempts on the following post:
https://www.telerik.com/forums/calling-the-itemcommand-handler-from-javascript

In my Grid.aspx code, I have the following Javascript code:
<script>
    var varRadGrid;
    function GridCreated(sender, eventArgs) {
        varRadGrid = sender;
    }
    function CallUpdate() {
        var masterTable = varRadGrid.get_masterTableView();
        masterTable.fireCommand("Update", "");
    }
</script>

In my WebUserControl code, I have added a "Validate/update" button to call the "CallUpdate" function:
            <asp:Button ID="button" runat="server" Text="validate/update" OnClientClick="javascript:CallUpdate();" />

I can trace through that all the various pieces appear to be working:
1. When the grid initially loads, a reference to it is captured in varRadGrid.
2. When the user presses the "Validate/update" button, the CallUpdate function is called, and it is able to reference the varRadGrid object.
3. However, the code ' masterTable.fireCommand("Update", ""); ' appears to not do anything.
Actually, that's not true - the WebUserControl form closes, but then is immediately redisplayed.

Any edited data is not reflected back in the underlying grid - the "Update" command doesn't appear to be being fired.

Any ideas? Help much appreciated!!

Simon
Top achievements
Rank 1
 asked on 15 Dec 2017
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?