Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
334 views
Hi,

I have a radgrid and have a GridBoundColumn in it.
In edit mode whenever I type anything in the textbox I can see related entries from the past.
I want to disable the AutoComplete for the textbox/GridBoundColumn.
Can you please suggest how to do it?
A code sample would really help.

Thanks.
Jayesh Goyani
Top achievements
Rank 2
 answered on 06 Oct 2011
6 answers
232 views
A growing number of people (including us) have been using CSS3 (proprietary-only for now) rounded corners and some Telerik controls play nicely with it and some do not. It would be handy if you could start adding compatibility for these.

<Telerik:RadGrid ... style="-moz-border-radius: 3ex;-webkit-border-radius: 3ex;" /> is how I would define it (if you try it and view it in Chrome or FireFox, you'll see that it doesn't play very nicely).

Many thanks!!
-Shane
atul
Top achievements
Rank 1
 answered on 06 Oct 2011
3 answers
140 views

Hi everyone,
I've a small issue with my radgrids. This is the scenario

2 radgrids in the page: the first one with "temporary" records, while the second one with the "confirmed" records. In the first grid there's a commandbutton in the footer which allows the user to confirm, in one click, all the records. When the user confirms, then I need to refresh the 2 radgrids and I've achieved this task by writing this piece of code:

<telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
    <UpdatedControls>
        <telerik:AjaxUpdatedControl ControlID="RadGridSales" />
        <telerik:AjaxUpdatedControl ControlID="RadGridSoldlConfirmed" />
    </UpdatedControls>
</telerik:AjaxSetting>

The problem is that if the user clicks on the Header of the first radgrid in order to sort the rows the 2 radgrid are being refreshed, while I need to refresh only the first one in this particular case.
The same if the user clicks on another commandbutton which allows it to delete a single row (so one commandbutton for each row) or the complete grid (another commandbutton in the footer).

So, there's a way to refresh the two radgrids only on certains condition?
I hope it's clear what I've just described and don't hesitate to ask for more clarifications.
Thank you in advance to everyone who would help me.

Regards
Iana Tsolova
Telerik team
 answered on 06 Oct 2011
2 answers
55 views
Hi,
I have a requirement to split the telerik grid and scroll the one section at run time.Is there any property or any way to do that???? 
Iana Tsolova
Telerik team
 answered on 06 Oct 2011
8 answers
182 views
In Firefox, when I try to click on the radnumerictextbox,
I cannot edit the text because the item is "selected" when I Single click on the text box.
The problem seems to appear if I EnableDragAndDrop.

URL: http://www.ximnet.com.my/telerik/test_listbox.aspx
Video Demo: http://www.ximnet.com.my/telerik/listbox_firefox_drag_drop_textbox.swf

Is there anything I can do to prevent this?

ASPX Code:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="test_listbox.aspx.vb" Inherits="test_listbox" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!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>
</head>
<body>
    <form id="form1" runat="server"><telerik:RadScriptManager ID="RSM" runat="server" />
    <telerik:RadListBox ID="RadListBox1" runat="server" AllowTransfer="true" EnableDragAndDrop="true" AutoPostBackOnTransfer="true"
                    Height="200px"  SelectionMode="Multiple" OnTransferred="RadListBox1_Transferred"
                    TransferToID="RadListBox2" Width="215px">
                    <ButtonSettings ShowTransferAll="false" VerticalAlign="Middle" />
                    <ItemTemplate>
                         
                        <span class="product-title">
                            <%# DataBinder.Eval(Container, "Text")%></span> <span class="bearing">1 bearing</span>
                    </ItemTemplate>
                    <Items>
                        <telerik:RadListBoxItem Text="Spinning Reel 1" Value="reel1_thumb.png" Price="99" Selected="true" />
                        <telerik:RadListBoxItem Text="Spinning Reel 2" Value="reel2_thumb.png" Price="199" />
                        <telerik:RadListBoxItem Text="Spinning Reel 3" Value="reel3_thumb.png" Price="99" />
                        <telerik:RadListBoxItem Text="Spinning Reel 4" Value="reel4_thumb.png" Price="299" />
                        <telerik:RadListBoxItem Text="Spinning Reel 5" Value="reel5_thumb.png" Price="199" />
                        <telerik:RadListBoxItem Text="Spinning Reel 6" Value="reel6_thumb.png" Price="99" />
                        <telerik:RadListBoxItem Text="Spinning Reel 7" Value="reel7_thumb.png" Price="299" />
                        <telerik:RadListBoxItem Text="Spinning Reel 8" Value="reel8_thumb.png" Price="199" />
                    </Items>
                </telerik:RadListBox>
                <telerik:RadListBox runat="server" EnableDragAndDrop="true" ID="RadListBox2" Height="200px" Width="270px"
                    SelectionMode="Multiple">
                    <ItemTemplate>
                         
                        <span class="detail-title">
                            <%# DataBinder.Eval(Container, "Text")%></span>
                        <ul class="details">
                            <li>
                                <label>
                                    Price:</label>
                                <span>
                                    <%# Convert.ToInt32(DataBinder.Eval(Container, "Attributes['Price']")).ToString("C0") %></span>
                            </li>
                            <li>
                                <label>
                                    Quantity:</label>
                                <telerik:RadNumericTextBox  runat="server" ID="QuantityTextBox" Width="40px" MinValue="1"
                                    MaxValue="10" ShowSpinButtons="true" Value="1" NumberFormat-DecimalDigits="0" />
                            </li>
                        </ul>
                    </ItemTemplate>
                    <Items>
                        <telerik:RadListBoxItem Text="Spinning Reel 9" Value="reel9.png" Price="99" />                   
                    </Items>
                </telerik:RadListBox>
    </form>
</body>
</html>


VB Code:
Imports Telerik.Web.UI
 
Partial Class test_listbox
    Inherits System.Web.UI.Page
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
        If Not Page.IsPostBack Then
            RadListBox1.DataBind()
            RadListBox2.DataBind()
        End If
    End Sub
    Protected Sub RadListBox1_Transferred(ByVal sender As Object, ByVal e As RadListBoxTransferredEventArgs)
        For Each item As RadListBoxItem In e.Items
            'Update the image
            If e.SourceListBox Is RadListBox1 Then
                item.Value = item.Value.Replace("_thumb", "")
            Else
                item.Value = item.Value.Replace(".png", "_thumb.png")
            End If
 
            'Databind the item in order to evaluate the databinding expressions from the template
            item.DataBind()
        Next
    End Sub
End Class
Ricardo Pinto
Top achievements
Rank 1
 answered on 06 Oct 2011
10 answers
960 views
I've got a FileExplorer page that presents users with the files in their home directory using the Custom File Provider example. It works great. However, I'm doing checks to make sure that a person has logged in through our system to make sure they are authenticated so I can show them their home directory.

Since the FileExplorer uses callbacks, doing a response.redirect to the login page gives the "Response.Redirect cannot be called in a Page callback." error.

Originally, I was using this:

Response.Redirect(ConfigurationManager.AppSettings("SSOLogin") & "?Source=" & Request.Url.ToString)

I then changed it to:
If Page.IsCallback Then
   Response.Clear()
   Response.StatusCode = 302
   Response.Status = "302 Moved Temporarily"
   Response.RedirectLocation = ConfigurationManager.AppSettings("SSOLogin") & "?Source=" & Request.Url.ToString
   Response.End()
Else
   Response.Redirect(ConfigurationManager.AppSettings("SSOLogin") & "?Source=" & Request.Url.ToString)
End If
However, the FileExplorer doesn't appear to redirect correctly. The test I am performing is simply clicking on a folder in the left hand menu while being logged out. It correctly gives me back the 302 status code and the Location header, but FileExplorer just keeps spinning on the grid side as if it's going to do something. I'm doing most of the testing in IE9.

Any suggestions???
Adam
Dobromir
Telerik team
 answered on 05 Oct 2011
1 answer
144 views
Hello All,
I want my RadEditor to be without wrapping, as it wraps the text when reaches to the end but I want a horizontal scroll to continue writing on the same line.
I used new css with property

body
{
    word-wrap: normal;
    color: black;
    background-color: Olive;
    padding:3px;
    background-image: none;
    margin: 0px;
    text-align: left;
    background-color:Red;   
}
but it is not working.
Dobromir
Telerik team
 answered on 05 Oct 2011
3 answers
106 views
When one uses the RAD Editor's Media Manager to import new images or videos, they are provided with a popup that has editable text boxes for the media height and width.  These boxes are pre-populated with default values.

How do we change the default values that are pre-populated into those text boxes?  Is there a configuration file (like the tools_xml) or a property we can set on the RadEditor object to set default values of our own choosing?
Dobromir
Telerik team
 answered on 05 Oct 2011
7 answers
243 views
Hello !!

I have a problem with .LoadRtfContent of RadEditor with a rtf string. I lost my typographic quote(’ and ‘) and the double(“ and ”). But in a RichTextBox of Winform, I don't lost my quote.

Here is my string of rtf.

Dim rtfString As String = "{\rtf1\ansi\ansicpg1252\deff0\deftab720{\fonttbl" & _
"{\f0\fswiss MS Sans Serif;}{\f1\froman\fcharset2 Symbol;}" &
"{\f2\froman\fprq2 Times New Roman;}}" & _
"{\colortbl\red0\green0\blue0;\red255\green0\blue0;}" & _
"\deflang1033\horzdoc{\*\fchars }{\*\lchars }" & _
"\pard\plain\f2\fs24 Test  LeftDoubleQuote=\ldblquote    RightDoubleQuote=\rdblquote    Test single quote LeftQuote=\lquote and RightQuote=\rquote \par }"

RadEditor1.LoadRtfContent(rtfString)

Thank's a lot for a response !!
Dobromir
Telerik team
 answered on 05 Oct 2011
4 answers
108 views
Hello,
I have a screen with the date picker. User will select a date.
Under button click another page will be shown in popup. This page will have calender. In its page load I am preselecting the date which the user has already selected in the main screen. User shouldn't be able to unselect that preselected date.
I used the following code disable the selection

// if you are using the skin bundled as a webresource("Default"), the Skin property returns empty string
                string calendarSkin = RadCalendar1.Skin != "" ? RadCalendar1.Skin : "Default";
                string otherMonthCssClass = String.Format("otherMonth_{0}", calendarSkin);
                // disable the selection for the specific day
                RadCalendarDay calendarDay = new RadCalendarDay();
                calendarDay.Date = transactionDate; //the date which has to be preselected
                calendarDay.IsSelectable = false;
                calendarDay.ItemStyle.CssClass = otherMonthCssClass;
                RadCalendar1.SpecialDays.Add(calendarDay);

                //Pre select the transaction date selected in the entry screen
                RadCalendar1.SelectedDates.Add(new RadDate(transactionDate));

The probelm here is
After page load, the transactionDate is preselected which is fine. If I change the month, select different dates and come back to the month having preselected date, then I see that it is not preselected. Its selection is still disabled but it is not highlighted.

If I put just this code   
                        RadCalendar1.SelectedDates.Add(new RadDate(transactionDate));
and remove the code where the date is disabled,  then everything works fine.

Any help would be appreciated,
Thanks,
AV

Pams
Top achievements
Rank 1
 answered on 05 Oct 2011
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?