Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
111 views
See attached image. I just loaded today's build 515 and my reward is that filter icons no longer show in the radgrid in FireFox 12. IE9 looks OK as far as this goes.  Refreshing doesn't work. Mouseover indicates the controls are there, just can't see them.

We're also missing arrow icons for groups. This seems to be with the Web20 theme. WebBlue is OK. Haven't tried others. I really don't want to just change themes because we're using other theme-specific colors in the grid to style sorting, filtering, etc. We can adapt, just don't want to scurry to avoid issues like this.

Anyone else seeing this?
Thanks.
Tsvetina
Telerik team
 answered on 30 May 2012
1 answer
136 views
Hi,

I have a grid template column that displays one of two images depending on the condition of the field e.g if true show on img if false show off img. Everything worked fine when I was using server side data binding but for unrelated reasons I had to switch to client side data binding and this feature no longer works. I'm getting the following error "Object cannot be cast from DBNull to other types." but there are no nulls in my data table at all. I'd really appreciate some help with this one. Here is the asp:
<telerik:GridTemplateColumn DataField="Active" UniqueName="Active">
                       <ItemStyle Width="20px" />
                       <ItemTemplate>
                       <div class="Tools" >
                            <asp:Image ID="ImgStatus" runat="server" ImageUrl='<%#Convert.ToBoolean(DataBinder.Eval(Container.DataItem, "Active"))? "~/Images/Icons/start.png" :
                            "~/Images/Icons/stop.png" %>'
                            AlternateText="Status"  ToolTip="Status" onclick="UpdateStatus();" /> 
                       </div>
                   </ItemTemplate>
               </telerik:GridTemplateColumn>
Thanks,
Ron.
Richard
Top achievements
Rank 1
 answered on 30 May 2012
13 answers
482 views
Ever since we updated to 2012 Q1 version, I'm seeing RadDatePicker controls display two date values in the input box.

One is the properly-formatted DisplayDateFormat value and the other is the raw data in full date/time format.

I noticed here that a default behaviour changed from FALSE to TRUE for EnableSingleInputRendering.  There appears to be a bug with this control with that value set to TRUE:
http://demos.telerik.com/aspnet-ajax/input/examples/singleinputrendering/firstlook/defaultcs.aspx

Attached is a screenshot where you can see the full date/time is overwriting the formatted date (in other controls that are wider, you can see both values next to each other)

Milena
Telerik team
 answered on 30 May 2012
3 answers
119 views
is this version stable?
also, about the editor, when you include a hyperlink in the body does it truncate the URL to a relative URL? I noticed that the SP2010 OOB Content Editor WP does this and I need it to not do this.

THanks
Rumen
Telerik team
 answered on 30 May 2012
5 answers
112 views
I've inherited a project using a RadGrid which uses session variables as filter arguments.  These arguments are then appended to a StringBuilder variable, which is used as the RowFilter argument for the Dataview.  This Dataview is the datasource for the grid.  This is in an .ascx control which is used on several pages.

The initial filter works fine.  It's when the user changes or removes the filter that I'm experiencing a problem - the grid won't display the updated results and the existing results won't expand if the user clicks on the expand arrow.

I tried to bypass the existing filter and use a RadFilter but when I click on the "add expression" button, nothing happens.  Following is the declarative.
<telerik:RadFilter ID="RadFilter1" runat="server" FilterContainerID="gvMission" >
    <fieldeditors>
        <telerik:RadFilterTextFieldEditor DisplayName="Lane" FieldName="Lane" 
            TextBoxWidth="120" />
    </fieldeditors>
</telerik:RadFilter>
Note: I had to manually add the FilterContainerID; When I expanded the RadFilter Tasks window, "gvMission" wasn't in the dropdown list.  Thanks very much.
Jim
Top achievements
Rank 1
 answered on 30 May 2012
5 answers
775 views
I have a RadComboBox in web usercontrol and when I set the AppendDataBoundItems to true it duplicates the values.

.aspx Code
<telerik:RadComboBox ID="clientusersRadComboBox" runat="server" DataTextField="fullname" DataValueField="userid" AppendDataBoundItems="true" Height="150px">
    <Items>
        <telerik:RadComboBoxItem Text="Select User" />
    </Items>
</telerik:RadComboBox>

.aspx.cs Code
var rsClientUsers = from rsU in DB.tbl_users
    where rsU.clientid == intClientID && !(from rsL in DB.tbl_licenses
    where rsL.moduleid == intModuleID && rsL.clientid == intClientID
    select rsL.userid).Contains(rsU.userid)
    orderby rsU.firstname
    select new
    {
    fullname = rsU.firstname + ' ' + rsU.lastname,
    userid = rsU.userid
    };
 
clientusersRadComboBox.DataSource = rsClientUsers;
clientusersRadComboBox.DataBind();

Shukhrat Nekbaev
Top achievements
Rank 1
 answered on 30 May 2012
3 answers
96 views
Hi, I am a bit confused:

Here http://www.telerik.com/help/aspnet-ajax/introduction-jquery-intellisense.html you say
"Since the Q2 2011 SP release of RadControls, IntelliSense is automatically enabled when RadScriptManager is on a page. There is no need to add the previously required ScriptReferences to RadScriptManager to enable IntelliSense"       

When I create a new Telerik website within Visual Studio 2010, the ScriptReferences ARE added to the RadScriptmanager.
Bug or feature? Any advantage/disadvantage to have/not to have them added?

Also, if I want to use master pages, how can I have jQuery Intellisense on my content pages?

Thanks in advance for your help
Best regards, Thomas
Kate
Telerik team
 answered on 30 May 2012
5 answers
57 views
Hi,

Our end-users are having major problems when using bullet lists in the radeditor in IE9.
For example in your demo of radeditor with contentareamode=div, clear all text in the editor (ctrl-a, delete).
Then push the Bullet list button a couple of times (three at least for me). On the third click the bullets starts appearing in the top window!!!

There are other ways to get this behavior also...

Regards
Caesar

Rumen
Telerik team
 answered on 30 May 2012
4 answers
65 views
Hi,

I added new custom button in rad editor toolbar using toolbar xml file and its working fine in all IE version except IE 6.
Please the attached below code.

Toolbar.xml
<tools name="Toolbar7" dockable="true" >
    <tool name="CrossLinking" />
</tools>

Css Class
.reTool .CrossLinking
{
    background-position: center center;
    background-image: url('../Images/4x_cross-refrence.png');
    background-repeat: no-repeat;
 
      /* CSS Background image hack for IE 6. Tried below CSS hack for  IE 6 its not working in both the cases with hack and without hack*/
 
    _background-image: url('../Images/4x_cross-refrence.png');
     
}

Rad Editor Markup
<rade:RadEditor runat="server" ID="RadRiskEvntCatDesc" ToolsFile="~/client/XML/RadEditorTools/MemoDefaultTools.xml" SkinID="WebBlue" EditMode="Design" ToolbarMode="Floating" ContentAreaCssFile ="~/client/CSS/EditorContentAreaStyles.css"></rade:RadEditor>


Can any here help me getting out of this.
Harmeet
Top achievements
Rank 2
 answered on 30 May 2012
1 answer
69 views
hello , 

i've just using Raddock control , and practice this example : http://demos.telerik.com/aspnet-ajax/dock/examples/loadsavelayout/defaultcs.aspx , it works nicely but i want to ask how to prevent raddock to be moved out of radzone ?? 

thanks in advance 
Loyal User
Top achievements
Rank 1
 answered on 30 May 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?