Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
73 views
I'm having a problem with the Slider when using R2L languages. The slider is being displayed on top of th Page x of y of the RadGrid.

Issue occurs only on FireFox/Chrome/Safari. Works fine with IE.

<PagerStyle Mode="slider" Wrap="true"></PagerStyle>

Your earliest reply is appreciated.

Thanks,
Andrew
Andrew
Top achievements
Rank 1
 answered on 21 Feb 2011
1 answer
94 views
Hi,
 I have 2 issues below I mention, please I hope you give solution asap to me. I'm using Q22010 version of RadControls.

1.    In Radeditor editable mode, I enter some data/ insert link button (see first attachment), then click on Update button in radeditor. the data can be saved. but display font size  as too small (see second attachment).  

2.  In RadEditor bottom I want to only symbols like Pencil symbol,<>, preview symbol only how to set ? Plese see third attachment.
 

  Advance In Thanks
Mr.Perfect
Rumen
Telerik team
 answered on 21 Feb 2011
4 answers
137 views
Hi All,

Like Silverlight Control is there a way to change input method of DateTimePicker to Month... I want my Calander to show only name of months and years
Sebastian
Telerik team
 answered on 21 Feb 2011
8 answers
292 views
Hi. I noticed since upgrading to Q2 2009 (2009_2_701) controls that input buttons text are floating to the right instead of center when the page uses the FormDecorator. Is this a bug or by design? You can clearly see it in the demos.

http://demos.telerik.com/aspnet-ajax/formdecorator/examples/default/defaultcs.aspx

Applying a float: none !important or text-align: center !important just seems to remove all formatting on the button.

Daniel
Georgi Tunev
Telerik team
 answered on 21 Feb 2011
1 answer
86 views
I use radgrid, click on a link on the radgrid to open a radwindow on the top of the radgrid. Sometimes, the radwindow frame/edge is kind of transparancy/invidible, can not see the close button, but the close button is actually there, just has no color.

It is very strange. The problem only happens to some of the user/browser while using the same web app on the server. Sometimes, the problem happened on me, but not on someone else using the same web application, but the other day, happened to someone else.  

Not sure how this will happen. It never happen on my local box while in development. Only happens when move the the servers.



<

 

telerik:RadWindowManager runat="server" ID="RadWindowManager1"

 

 

 

VisibleStatusbar="false" Height="600px" Width="800px"

 

 

 

>

 

 

 

<Windows>

 

 

 

 

 

<telerik:RadWindow ID="TranslationView" runat="server" OnClientClose="OnClientClose"

 

 

 

NavigateUrl="TagLanguageVerticalView.aspx" runat="server" VisibleStatusbar="false"

 

 

Title="Translation View">

 

 

 

</telerik:RadWindow>

 

 

 

 

 

<telerik:RadWindow ID="History" Top="20" Left="100"

 

 

 

runat="server" NavigateUrl="History.aspx" VisibleStatusBar="false" Title="History">

 

 

 

 

 

</telerik:RadWindow>

 

 

 

</Windows>

 

 

 

</telerik:RadWindowManager>

 

Georgi Tunev
Telerik team
 answered on 21 Feb 2011
5 answers
111 views
validators on rad ajax panel does'nt working properly ... First they work but after a postback and become isvalid the are isvalid although they aren't.. when button click fire all the operations done they are telling messages but the operations done...
Iana Tsolova
Telerik team
 answered on 21 Feb 2011
4 answers
828 views
Hi,

At my project i change all buttons with radbutton. And after that onclientclick scripts not fired. Here is a sample.

<telerik:RadButton runat="server" ID="btn" OnClientClick="alert('test');"
                                   Width="100" ButtonType="LinkButton
Pero
Telerik team
 answered on 21 Feb 2011
4 answers
158 views
To test automatic updates/inserts/deletes, I am using your sample app at: http://www.telerik.com/community/code-library/submission/b311D-kkmhe.aspx
It works fine for AutoGenerated edit form, but not for template form. To reproduce the problem, just paste the following code after closing columns tag (</COLUMNS>):

<EditFormSettings CaptionDataField="Edit contact:" ColumnNumber="2" EditFormType="Template" > 
                <FormTemplate> 
                <table id="ContactsMiddle" runat="server" style="width:100%; border:none 0px #ffffff; color:#9EB6CE; text-align:left;">  
                                    <tr> 
                        <td style="width:100px; padding-left:10px" >Last Name:</td> 
                        <td style="width:250px;"><asp:TextBox runat="server" EnableViewState="true" Width="70%" ID="inpContactName" Text='<%#Bind("LastName")%>'></asp:TextBox></td>  
                        <td style="width:100px; padding-left:10px" >First Name:</td> 
                        <td style="width:250px;"><asp:TextBox runat="server" EnableViewState="true" Width="70%" ID="inpContactHomePhone" Text='<%#Bind("FirstName")%>'></asp:TextBox></td>  
                    </tr> 
                    <tr> 
                        <td style="width:100px; padding-left:10px" >Title:</td> 
                        <td style="width:250px;"><asp:TextBox runat="server" EnableViewState="true" Width="70%" ID="inpContactEmail" Text='<%#Bind("Title")%>'></asp:TextBox></td>  
                        <td style="width:100px; padding-left:10px" >Address:</td> 
                        <td style="width:250px;"><asp:TextBox runat="server" EnableViewState="true" Width="70%" ID="inpContactCellPhone" Text='<%#Bind("Address")%>'></asp:TextBox></td>  
                    </tr> 
                    <tr> 
                        <td style="width:100px; padding-left:10px" >Date:</td> 
                        <td style="width:250px;"><asp:TextBox runat="server" EnableViewState="true" Width="70%" ID="TextBox1" Text='<%#Bind("HireDate")%>'></asp:TextBox></td>  
                        <td style="width:350px; padding-left:10px" colspan="2" > 
                            <asp:LinkButton CssClass="lnkSubmit" ID="btnOK" runat="server" CommandName="Update">OK</asp:LinkButton> 
                            <asp:LinkButton CssClass="lnkSubmit" ID="btnCancel" runat="server" CommandName="Cancel">Cancel</asp:LinkButton> 
                        </td> 
                    </tr> 
 
                </table> 
 
                </FormTemplate> 
                  
                </EditFormSettings> 

The returned error is:

You have specified that your update command compares all values on SqlDataSource 'SqlDataSource1', but the dictionary passed in for oldValues is empty.  Pass in a valid dictionary for update or change your mode to OverwriteChanges.

I see only one example with edit form template on your web site, and that one is using non-standard data source and is visualy very difficult to follow. Not to mention dirty code with ? instead of parameter names and non-maximisable code window. Link: http://demos.telerik.com/ASPNET/Prometheus/Grid/Examples/DataEditing/TemplateFormUpdate/DefaultCS.aspx
Please let me know how to use custom template form for automatic operations.

Regards,
Alex

Mario Turcotte
Top achievements
Rank 1
 answered on 21 Feb 2011
1 answer
98 views
Hi all,

I've encounted some layout issues at my page after setting IE8 to running in Compatibility View.

One issue is in using RadButton with an icon. I've created a small sample project which code is shown beneath, and layout difference is attached this thread.

Can anyone tell me why these difference occurs? And how to solve the issue...?

ASPX Code:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
    <style type="text/css">
        .iconStyle
        {
          top: 4px !important;
          left: 5px !important;
          height: 32px !important;
          width: 32px !important;
        }
    </style>
    <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <%--Needed for JavaScript IntelliSense in VS2010--%>
            <%--For VS2008 replace RadScriptManager with ScriptManager--%>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
        </Scripts>
    </telerik:RadScriptManager>
    <script type="text/javascript">
        //Put your JavaScript code here.
    </script>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    </telerik:RadAjaxManager>
    <div>
        <telerik:RadButton runat="server" ID="RadButton1" Text="Go to basket" Height="40px" Width="200px" EnableBrowserButtonStyle="true">
            <Icon PrimaryIconUrl="App_Themes/Default/Graphics/shopping_cart_lrg.png" PrimaryIconCssClass="iconStyle" />
        </telerik:RadButton>
    </div>
    </form>
</body>
</html>
Pero
Telerik team
 answered on 21 Feb 2011
1 answer
139 views
Is there a way to force the size of the BinaryImage? I set Width and Height and it doesn't seem to work. I have users uploading images in a Content management system and I don't want to have images of all different sizes on the page, it messes up my CSS.

control code
<telerik:RadBinaryImage ID="rbiSpeaker" DataValue='<%#Eval("Image") %>' ToolTip='<%#Eval("Name") %>' Width="180px" Height="234px" AutoAdjustImageControlSize="true" AlternateText='<%#Eval("Name") %>' CssClass="speaker-photo" runat="server" />


Thanks!
Vasil
Telerik team
 answered on 21 Feb 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
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?