Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
138 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
61 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
557 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
60 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
179 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
109 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
166 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
1 answer
298 views
In our RadHtmlChart BarSeries we are providing custom series labels as you can see highlighted in green in the attached picture.

We are doing this by simply setting the series LabelAppearance DataField property to a different database field which has the series data formatted the way we want to display it:
 
<Series>        
    <telerik:BarSeries Name="CategoryText"  DataFieldY="SeriesValue" >
        <LabelsAppearance Visible="true" DataField="SeriesValueFormatted"  />                            
    </telerik:BarSeries>
</Series>

Basically the SeriesValueFormatted field is taking numbers in the thousands, dividing them by 1000, and showing a "K" on the end.  Numbers in the millions are divided by a million and displayed with an "M" on the end, and so on. (See green highlighted values on the attached picture).

We need to do the same thing for the y-axis labels (See the yellow highlighted area on the attached picture).  In this example, our y-axis labels would be "0.00M", "4.00M", "8.00M", "12.00M", and "16.00M".  

 I do not see a DataField property in the y-axis LablesAppearance tag (as exists in the BarSeries) nor do I see a way of providing a custom template OR a way to call a method as the y-axis is being built/bound.

How can we go about doing this? 

Courtney

p.s.  I THINKsomeone was trying to ask the same question 2 years ago:
YAxis DataLabelsField?
But it seems there was no resolution at the time but the support rep did same this would be added in the future.  2 years later is this now possible?



















Danail Vasilev
Telerik team
 answered on 18 Jun 2014
1 answer
242 views
Hi,

I have a RadButton in the master page of my web application and I want to access it directly from JavaScript inside one of the content pages.

I tried with $('#<%=Master.FindControl("RadButton1").ClientID %>') as well as $find('<%=Master.FindControl("RadButton1").ClientID %>'); but both returned an error where as the first statement works well for asp.net controls.

Thanks,
Vishnu.
Danail Vasilev
Telerik team
 answered on 18 Jun 2014
2 answers
119 views
Yesterday I update my telerik controls to Telerik_UI_for_ASP.NET_AJAX_2014_1_403_Dev, I wonder all of the radtabstrip have a layout issue
I can generate this issue in the below demo

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

In the attach screen note how the tab width change after we change the selected tab if we change the tab align to left this issue will not happened
ADAWi
Top achievements
Rank 1
 answered on 18 Jun 2014
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?