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

is there a chance to set an EmptyMessage value for RadAutoCompleteBox?

Best regards
Rayko
Kalina
Telerik team
 answered on 22 Aug 2012
1 answer
71 views
Hi

i have two GridTemplateColumn  for submit button & Reject button . Am ordering the column  seq from codebehind . My problem is column header is changed but data remain static. In attached image the cancel button should come first then submit button but its vice versa.



 <telerik:GridTemplateColumn Visible="true" UniqueName="imgbtnFirst" AllowFiltering="false">
                    <ItemTemplate>
                        <asp:ImageButton  ID="imgbtnFirst" runat="server" OnClick="btnFirstOnClick" Width="15px"
                            Height="15px" ImageUrl='<%# Eval("stsflg").ToString() =="S" ? "../../IMages/MoveDown.gif" :"../../IMages/Cancel.gif"%>'
                            ToolTip='<%# Eval("stsflg").ToString() =="S" ? "Reject" :"Cancel"%>' />
                    </ItemTemplate>
                    <HeaderStyle Width="30px" HorizontalAlign="Center" />
                    <ItemStyle Width="30px" />
                </telerik:GridTemplateColumn>
                <telerik:GridTemplateColumn Visible="true" AllowFiltering="false" UniqueName="imgbtnSecond">
                    <ItemTemplate>
                        <asp:ImageButton ID="imgbtnSecond" runat="server" OnClick="btnSecondOnClick" Width="15px"
                            Height="15px" ImageUrl='<%# Eval("stsflg").ToString() =="S" ? "../../IMages/MoveUp.gif" :"../../IMages/Submit.gif"%>'
                            ToolTip='<%# Eval("stsflg").ToString() =="S" ? "Approve" :"Submit for Approval"%>' />
                    </ItemTemplate>
                    <HeaderStyle Width="30px" HorizontalAlign="Center" />
                    <ItemStyle Width="30px" />
                </telerik:GridTemplateColumn>
Eyup
Telerik team
 answered on 22 Aug 2012
9 answers
158 views
In 2012.2.724.40 using Firefox I'm getting a JavaScript error whenever I double click on an existing item in the scheduler.  Firebug reports the error in this bit of code:

_getTimeFromIndex:function(h){var i=this.get_visibleRangeStart();
Telerik.Web.UI.RadScheduler._incrementTime(i,0,this._slotDurationInMinutes*h.intervalIndex);
return i;
}

Rob
Helen
Telerik team
 answered on 22 Aug 2012
0 answers
52 views
Hi,

We have been using Telerik ASP .NET Ajax controls in one of our projects. When we compare it with traditional development its fast and easy with eye catching UI in no time. Not only the products but the support team is also awesome, we have seen our queries and support tickets answered within 24 hrs which is remarkable. 

Great work!

Regards,
Piyush 
Piyush
Top achievements
Rank 1
 asked on 22 Aug 2012
1 answer
131 views
Hi,

i am using the same code as stated in example http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/usercontroleditform/defaultcs.aspx 

I have able to delete update the reults in the front end, but my database side is not getting updated.

Can you please let me know whats problem??
Eyup
Telerik team
 answered on 22 Aug 2012
4 answers
71 views
When the binary image in database is null the radGrid does render <img> tag with an empty src which causes displaying a missing image placeholder. I know that I can display a default image instead. But in most cases we need to display nothing. How to do it declaratively? If not possible, please add this feature into the next releases.
Tsvetina
Telerik team
 answered on 22 Aug 2012
7 answers
317 views
Hi,

I am having a problem with trailing <br> tags being removed.

Steps to reproduce in demo application
1) Go into HTML Mode
2) Enter "<br/><br/>"
3) Go to Design Mode
4) Go to HTML Mode
5) Note that the source shows only "<br/>"

I attempted the fix noted below. It does not work. The trailing <br/> has already been removed by the time it hits my breakpoint.

<script type="text/javascript">
   Telerik.Web.UI.Editor.RemoveExtraBrakes.prototype.getHtmlContent = function (content) {
      return content;
   }
   Telerik.Web.UI.Editor.StripJunkFilter.prototype.getHtmlContent = function (content) {
      return content;
   }
</script>
Dobromir
Telerik team
 answered on 22 Aug 2012
14 answers
252 views
Hi,

After an AJAX postback occurs, I notice that the CSS is reloaded but with an incorrectly html encoded &amp; instead of &.

This is a bit hard to explain, so please see it for yourself at this site: http://tinyurl.com/4zcuexz

The three cascading drop downs on the right of the screen use Telerik Ajax.

To reproduce the bug:

1) Open Firebug's CSS panel, and you will see that there is a CSS file called something like DependencyHandler.axd?s=L2Nzcy9tYWluLmNzczs%3d&t=Css&cdv=97

2) Initiate an ajax postback by making a selection from the top drop down.

3) Now look in Firebug and you will see that a new CSS stylesheets has appeared, with an incorrectly encoded &amp; in the querystring:
DependencyHandler.axd?s=L2Nzcy9tYWluLmNzczs%3d&amp;t=Css&amp;cdv=97

This website was built a long time ago, and we are using version 2010.3.1317.40 of Telerik.
Antonio Stoilkov
Telerik team
 answered on 22 Aug 2012
9 answers
646 views

Hi,

    I've been encountering a problem when I use RadScriptManager. In the master page, I registered the Telerik.Web.UI and added the RadScriptManager.

<%@ Register Assembly="Telerik.Web.UI, Version=2008.1.619.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 

and added the RadScriptManager:

<telerik:RadScriptManager ID="ScriptManager1" runat="server" EnableTheming="True"/>  

But when I try to use this master page, I get an error. The error says:

NullReferenceException: Object reference not set to an instance of an object.]
   Telerik.Web.UI.WebResource.Exists(String path, String applicationPath) +257
   Telerik.Web.UI.RadScriptManager.OnPreRender(EventArgs e) +80
   System.Web.UI.Control.PreRenderRecursiveInternal() +77
   System.Web.UI.Control.PreRenderRecursiveInternal() +161
   System.Web.UI.Control.PreRenderRecursiveInternal() +161
   System.Web.UI.Control.PreRenderRecursiveInternal() +161
   System.Web.UI.Control.PreRenderRecursiveInternal() +161
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1360


I am not sure what the problem is or where to start looking. I tried removing the RadScriptManager and use <asp:ScriptManager> instead and the error is gone. Can somebody help me with this?

Thank you!


Regards,
Francis

Daniel
Telerik team
 answered on 22 Aug 2012
3 answers
150 views
How do you prevent the RadMenu from displaying the submenu items as a drop down.

For example:

+ Home
+ Services
   - Coding
   - Web Design
   - SQL Server
+ Contact

I only want to display: Home | Services | Contact

Thanks!
Princy
Top achievements
Rank 2
 answered on 22 Aug 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?