Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
131 views
Hi,

I do not want my app to prompt the Word Content in Clipboard Interception when the user pastes from Word using <ctrl> <v>.  Is there a way to default the value and not show this message?
tammy
Top achievements
Rank 1
 answered on 18 Jun 2014
2 answers
240 views
When the grid first loads I want specific columns to be editable.

I have a checkbox that i want to allow the user to change. Upon changing the checkbox i will then trigger an event that will make other columns become editable.


I know how to set all columns to editable with the following:

foreach (GridItem item in RadGrid1.MasterTableView.Items)
               {
                    
                   if (item is GridEditableItem)
                   {
                       GridEditableItem editableItem = item as GridDataItem;
                       editableItem.Edit = true;
                   }
               }
               RadGrid1.Rebind();

I also know how to get the specific column that I want to set the edit mode on:

foreach (GridColumn column in RadGrid1.Columns)
                {
                    if (column.UniqueName == "Reserved")
                    {
                        if (column is GridEditableColumn)
                        {
                            GridEditableColumn editableColumn = column as GridEditableColumn;
                        }
                    }  
}


However I am not sure how to bridge the gap here.

I'm sure the answer is simple but I'm missing it for the moment.

Thx
Julian
Top achievements
Rank 1
 answered on 18 Jun 2014
7 answers
113 views
Hello,

Today I upgraded from Q1 225 to Q1 403. 

I noticed, immediately, that the menu rendering was, again, incorrect. I removed fixes for Q1 225 first... ;-|

The classic creates a very high main bar and the icons are partly shown. See attachement: radMenu_RenderMode_Classic.png
The Lightweight has also the icon problem. See attachement: radMenu_RenderMode_Lightweight.png

The reason that the images appear partly, is that they have a top: 50%.
I temporary fixed this with:
.RadMenu .rmSlide .rmVertical .rmLeftImage {
    top: 0 !important;
}

Regards,

Erik

Magdalena
Telerik team
 answered on 18 Jun 2014
4 answers
107 views
Hi guys,

having an issue with the RadAjaxPanel when being used on a page with a URL rewrite, when accessing the page on the normal URL there is no error and the panel updates just fine. example:
  • page.aspx?id=1 (this works)
  • /custum/url/1  - which rewrites to page.aspx?id=1 (this does not work)

I am using "urlrewriter.net" (http://urlrewriter.net/). 

Code for page:

01.<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
02.                    <AjaxSettings>
03.                        <telerik:AjaxSetting AjaxControlID="sndButton">
04.                            <UpdatedControls>
05.                                <telerik:AjaxUpdatedControl ControlID="RadAjaxPanel1" LoadingPanelID="LoadingPanel1"></telerik:AjaxUpdatedControl>
06.                            </UpdatedControls>
07.                        </telerik:AjaxSetting>
08.                    </AjaxSettings>
09.                </telerik:RadAjaxManager>
10. 
11.                <telerik:RadAjaxLoadingPanel ID="LoadingPanel1" runat="server" MinDisplayTime="1">
12.                </telerik:RadAjaxLoadingPanel>
13. 
14.                <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="LoadingPanel1">
15. 
16.                    <asp:Label runat="server" ID="lbl" Text="time"></asp:Label>
17.                     
18.                </telerik:RadAjaxPanel>
19.                <asp:Button ID="sndButton" runat="server" Text="Send" OnClick="sndButton_Click" />

and backend code:
1.Protected Sub sndButton_Click(sender As Object, e As EventArgs)
2.    lbl.Text = Date.Now
3.End Sub

My conclusion is that the rewriter and the panel is clashing somehow. Is there any way to fix this or work around it?

Thanks in advance.


Maria Ilieva
Telerik team
 answered on 18 Jun 2014
1 answer
39 views
Hi,
I have a scenario.. How can i change the background color of a radcombox with change in selected item from client side.
Shinu
Top achievements
Rank 2
 answered on 18 Jun 2014
11 answers
487 views
I am implementing http://demos.telerik.com/aspnet-ajax/input/examples/common/datagrid/defaultcs.aspx in my Radgrid. But after edit/delete, the radgrid doesnot refresh.
After Edit and Delete I tried a couple of things like:
this.Page.RegisterRequiresPostBack(this._RadGrid1) and this._RadGrid1.MasterTableView.Rebind(); and e.Item.OwnerTableView.Rebind but none works.
Interestingly after delete, the number of records in the pager section is updated. For instance from  204 items in 3 pages, it refreshes to  203 items in 3 pages. But the deleted record doesnot go until I reload or click on refresh.
The OnPrerender is as follows:
 protected override void OnPreRender(EventArgs e)
        {
            base.OnPreRender(e);
            RadAjaxManager ajaxManager = RadAjaxManager.GetCurrent(Page);
            ajaxManager.AjaxSettings.AddAjaxSetting(this._UpdatePanel, this._RadGrid1, this._RadLoadingPanel);          
        } 

Please let me know how to refresh it.
Viktor Tachev
Telerik team
 answered on 18 Jun 2014
1 answer
47 views
In my radeditor I have one field

<acronym unselectable="on" contenteditable="false" style="display: inline-block; background-color: yellow;" expid="100" explabel="First Name">First Name</acronym>

If I select only this field & apply css then It applies perfectly.

But if I select this text with other html tags e.g.

<br>
<acronym unselectable="on" contenteditable="false" style="display: inline-block; background-color: yellow;" expid="100" explabel="First Name">First Name</acronym>

& then if I try to apply css on it then only
tag gets css & not field tag.

I know this is due to "contenteditable='false'" attribute but I need this attribute.

note: This strange thing happens only in google chrome (my version : 35.0.1916.153 m)

Do any one know any solution to it ?

Ianko
Telerik team
 answered on 18 Jun 2014
1 answer
146 views
Hi,

I want to remove the built in table classes in the RadEditor.

The classes are named: 
telerik-reTable-1
telerik-reTable-2
telerik-reTable-3
telerik-reTable-4
telerik-reTable-5

If this is not possible, I would like to hide them, but to no avail.

Can somebody please help.

Thanks
Ianko
Telerik team
 answered on 18 Jun 2014
1 answer
86 views
Hello Team,

I am having issue with new Paragraph button as it  adding &nbsp; between the <p></p> tag.
How can i remove  &nbsp; from the <p></p> tag on clicking of Paragraph button
Ianko
Telerik team
 answered on 18 Jun 2014
1 answer
144 views
URL : http://demos.telerik.com/aspnet-ajax/editor/examples/trackchanges/defaultcs.aspx

Browser : IE8

While trackchanges is enabled for radeditor, the backspace and delete key are not functioning properly, This is working in firefox and chrome. But my weeb application will be running on IE. So please suggest a solution or work around for this.

Thanks
Ianko
Telerik team
 answered on 18 Jun 2014
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?