Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
391 views
I  used the below CSS to change the Font color in the Disabled RadCombobox.

<code snip>
.RadComboBox_Default .rcbDisabled .rcbInputCell .rcbInput,
.RadComboBoxDropDown_Default .rcbDisabled
{
    background-color: #808080;
    color: blue;
    font-weight: bold;
}
<code snip end>

But the font color change is reflected only in FireFox, but it IE 8 the font color is default gray color.

Note: This css change is mentioned in the below Telerik Forum URL
http://www.telerik.com/community/forums/aspnet/combobox/changing-the-default-style-for-disabled-or-enabled-false-radcombobox.aspx
.RadComboBox_Default .rcbDisabled .rcbInputCell .rcbInput,
Cori
Top achievements
Rank 2
 answered on 19 Nov 2010
3 answers
193 views
Hello
I'm trying the Radbutton control, but reach a point where I use a classic asp button and a control radtooltip to show control user to login, to do with the button shows the classic asp perfect result, but doing so with radbutton control only shows me assigned to the button text.

Code for Asp Clasic
<telerik:RadToolTip ID="RadToolTipLogin" runat="server" HideEvent="ManualClose" TargetControlID="Loginin"
        IsClientID="true" Skin="Windows7" VisibleOnPageLoad="false" ShowEvent="OnClick">
        <Demo:UserLogin ID="WebUserLogin1" runat="server" />
</telerik:RadToolTip>
<asp:Button runat="server" ID="Loginin" Text="Login" />

Code radbutton
<telerik:RadToolTip ID="RadToolTipLogin" runat="server" HideEvent="ManualClose" TargetControlID="Loginin"
        IsClientID="false" Skin="Windows7" VisibleOnPageLoad="false" ShowEvent="OnClick">
        <Demo:UserLogin ID="WebUserLogin1" runat="server" />
</telerik:RadToolTip>
 <telerik:RadButton ID="Loginin" runat="server" Skin="Windows7" Text="Login"    Width="90px" AutoPostBack="false" Icon-PrimaryIconUrl="~/images/lock16.png">
</telerik:RadButton>

Thanks for the help 

Alex.
.co







Damien
Top achievements
Rank 1
 answered on 19 Nov 2010
1 answer
99 views

Hello,
I have a GridNumericColumnEditor wich works fine with positive numbers ,but when i insert a negative number it automaticly puts the minus sign
to the right of the number.

for example i get 33- insted of -33.
what shuld i do to get the minus sign to the left of the number.

I tried to work with the NumberFormat-NegativePattern property and set it to "-n" but it was not worked.

Here is my decleration to my GridNumericColumnEditor

 

<telerik:GridNumericColumnEditor runat="server" ID="VALUEEditor">
    <NumericTextBox runat="server" ID="txtBox1"   NumberFormat-DecimalDigits="7" EnabledStyle-Width="22"  EnabledStyle-HorizontalAlign="Left"    MaxLength="16">
    </NumericTextBox>
</telerik:GridNumericColumnEditor>

thank,
Gerry

Martin
Telerik team
 answered on 19 Nov 2010
2 answers
156 views
When running IE8 with Compatibility View mode the RadButton text is sometimes missing or distorted after scrolling out of view and back into view.  You can see this with some of the demos like the Split Button demo.

http://demos.telerik.com/aspnet-ajax/button/examples/splitbutton/defaultcs.aspx

Sometimes it repaints the text correctly after a couple of seconds. 

Is there a workaround for this problem?
John
Top achievements
Rank 1
 answered on 19 Nov 2010
2 answers
159 views
Hi,
  I have a problem regarding the retrieving latest 10 images into rad rotator from folder by using the image path stored in sql server.
For this i placed the asp:image tag in item template of radrotator and assigned imageurl to handler.ascx file. but i'm not sure about passing "id" from image url to handler.ascx file.
here, in handler.ascx file i retrieved the image path's from sql server db.
Help me from this problem...
saratchand
Top achievements
Rank 2
 answered on 19 Nov 2010
6 answers
231 views
Hi,

We have a user control that has a rad ajax panel on there to "ajaxify" the page.  Upon clicking the Submit button we fire off an ajax request to the server and then add some javascript to our panels response scripts.

This is working in all browsers except... yes you guessed it... IE6!

In IE 6 all of the server side code is executed but the client script that was added to the response scripts is not fired.  We then get the following error message:

"Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed."
This is thrown at the following location:

_endPostBack: function PageRequestManager$_endPostBack(error, executor, data) {
        if (this._request === executor.get_webRequest()) {
            this._processingRequest = false;
            this._additionalInput = null;
            this._request = null;
        }
 
        var eventArgs = new Sys.WebForms.EndRequestEventArgs(error, data ? data.dataItems : {}, executor);
        Sys.Observer.raiseEvent(this, "endRequest", eventArgs);
        if (error && !eventArgs.get_errorHandled()) {
            throw error;
        }
    },

I have no idea where to go from this point so any help is greatly appreciated.  I have also included the
code below to help diagnose what the issue could be.

<telerik:RadAjaxPanel ID="rap" runat="server" Width="100%" OnAjaxRequest="rap_AjaxRequest"
    LoadingPanelID="ralp">
    <div id="enquiryWrapper">
        <div id="detailsDiv">
            <h2>
                Your Details</h2>
            <h3>
                Name:</h3>
            <p>
                <asp:TextBox ID="NameBx" runat="server"></asp:TextBox></p>
            <h3>
                Telephone:</h3>
            <p>
                <asp:TextBox ID="TelBx" runat="server"></asp:TextBox></p>
            <h3>
                Email:</h3>
            <p>
                <asp:TextBox ID="EmailBx" runat="server"></asp:TextBox>
                <asp:HiddenField ID="hidSubject" runat="server" ClientIDMode="Static" />
            </p>
        </div>
        <div id="requestDiv">
            <h2>
                Nature of your enquiry</h2>
            <textarea id="EnqTxtBx" cols="40" rows="10"></textarea>
        </div>
        <div id="submitDiv">
            <h2>
                Submit your request</h2>
            <img id="sendBtn" alt="SendButton" src="themes/buttons/SendBtn.png" class="clickable"
                title="Submit your Enquiry" onclick="SendEnquiry()" onmouseover="javascript:this.src='themes/buttons/sendBtn-on.png'"
                onmouseout="javascript:this.src='./themes/buttons/sendBtn.png'" />
            <img id="cancelBtn" alt="CancelButton" src="themes/buttons/CancelBtn.png" class="clickable"
                title="Cancel" onclick="SlideOut(0,'top','OUT')" onmouseover="javascript:this.src='themes/buttons/cancelBtn-on.png'"
                onmouseout="javascript:this.src='themes/buttons/cancelBtn.png'" />
            <div id="EnqMessageDiv" runat="server" style="display: none;">
                <img src="./themes/cross.png" alt="Invalid: " runat="server" id="MessageImg" style="width: 16px;
                    height: 16px;" />
                <asp:Label runat="server" ID="MessageLbl"></asp:Label>
            </div>
        </div>
    </div>
</telerik:RadAjaxPanel>
<telerik:RadScriptBlock ID="rsb" runat="server">
    <script type="text/javascript">
        function SendEnquiry()
        {
            var oAjax = <%= rap.ClientID %>;
            var txtBx = document.getElementById("EnqTxtBx");
            var EnqTxt = txtBx.value;
            oAjax.ajaxRequest("Enq|"+EnqTxt+"|");
        }
    </script>
</telerik:RadScriptBlock>
<telerik:RadAjaxLoadingPanel ID="ralp" Runat="server" Skin="Default" Transparency="50">
</telerik:RadAjaxLoadingPanel>

protected void rap_AjaxRequest(object sender, Telerik.Web.UI.AjaxRequestEventArgs e)
        {
            string[] Args = e.Argument.Split('|');
 
            if (Args[0] == "Enq")
            {
                ..... Process data .....
 
                if (dnCustom.strFuncs.isValidEmail(EmailBx.Text))
                {
                    if (!PromatMail.SendMail())
                    {
                        BlankFields();
                        rap.ResponseScripts.Add("alert('Sorry! We are experiencing errors in our mail server at this time. Please try again later'); SlideOut(0,'top','OUT');");
                    }
                    else
                    {
                        BlankFields();
                        if (!CustMail.SendMail())
                        {
                            rap.ResponseScripts.Add("alert('Thankyou for your enquiry we will get back to as soon as possible'); SlideOut(0,'top','OUT');");
                        }
                        else
                        {
                            rap.ResponseScripts.Add("alert('Thankyou for your enquiry we will get back to as soon as possible'); SlideOut(0,'top','OUT');");
                        }
                    }
                }
                else
                {
                    rap.ResponseScripts.Add("alert('The Email address you supplied is invalid. please amend it and try again.');");
                }
            }
        }


Thanks in advance,

M
Maria Ilieva
Telerik team
 answered on 19 Nov 2010
1 answer
52 views
Hi,

I have a grid having a DetailTable. If I try to group with a column in DetailTable ,Feilds are not binding Properly.
Some Columns are showing values of some other fields and Some Columns are missing.
Please help me to solve this issue.
Tsvetina
Telerik team
 answered on 19 Nov 2010
5 answers
87 views
Hi,
  In my application, I let the user pick a date range, then click on the button to retrieve all appointments in the specified date range.  Sometimes the user get an error like folowing:

Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 12030

  After debugging my application, I found out Radscheduler can only load 13000 appointments.  If it's over 14000 appointments, it will crash.

  I want somebody from Telerik to verify this for me and see if this a limitation for the radscheduler.

thanks.
Nikolay Tsenkov
Telerik team
 answered on 19 Nov 2010
1 answer
85 views
Hello everyone,

  Did a bit of searching on these forums and haven't found the solution to my problem -- this being said, my apologies if this is a repost!

  I have managed to get Rad Editor Lite to run on WSS 3, and have activated the CSS Styles icon on in the Lists web part (ApplyClass, that is). I seem to be having some serious interaction issues, though! For instance, I try to select some text to apply a CSS class to it, click on the styles dropdown, try to select a style and -- nothing happens. I do notice that the selected text is no longer selected.

  Also, I've noticed that there are times when I apply a CSS style (after a frustratingly long amount of times trying to select-and-apply styles the control finally registers my request) and nothing happens but the selected text remains selected. It seems that in this particular case the style has been applied but has been overwritten by other styles applied to the text.

  Note that in my case the styles stick, whether in Edit mode or not. The problem is that, during editing, the user is tearing her hair out trying to get the styles applied correctly. She could of course set a font size, color, etc -- but that puts the onus on her to make sure everything stays consistent. Not ideal.

  Does anyone know anything about this problem? Definitely happens on both IE and Firefox.
Stanimir
Telerik team
 answered on 19 Nov 2010
1 answer
346 views
I followed your example Grid / Update/Insert/Delete in Hierarchy (http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/threelevel/defaultcs.aspx ) and did my own grid with my data. The Apps works just fine. I used the defaultVB.aspx example
My question is for example how can i make Contact Name or Company a text Area when i edit. When you click on edit it is just like a textbox.

In this example http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/extractvalues/defaultcs.aspx
Shipping address is a textarea but i am not able to find where shipping address is defined as text area.

Thanks
 
Daniel
Telerik team
 answered on 19 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?