Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
116 views
We have noticed a small bug when AutoCompleteBox and RadFormDecorator are used in the same page, see screenshot
The input of the AutoCompleteBox has a border (with the metro skin)
Ivan Zhekov
Telerik team
 answered on 29 Aug 2012
4 answers
509 views
Pretty common operation I would have thought, but I can find nothing in the documentation: http://www.telerik.com/help/aspnet-ajax/autocompletebox-overview.html 

There is no setter on the Text property, and it seems like I need some kind of FindEntry() method.
Ivana
Telerik team
 answered on 29 Aug 2012
3 answers
124 views
Hi,

In your website
http://demos.telerik.com/aspnet-ajax/editor/examples/editorastextbox/defaultcs.aspx

There is a RadEditor as a TextBox control available for Demo.

My requirement is to remove the Bottom Space between Vertical Scroll Bar and Bottom Border(Refer the attachedimage).

Please guide me to fix this.

WIth Advanced Thanks,
Jawahar
Bozhidar
Telerik team
 answered on 29 Aug 2012
2 answers
95 views
Hello,

I'm trying to format the DataStartField and DataEndField in a AdvanceEditTemplate in such a way that I'm separating the Date and Time to display on 2 separate lines.

From the example CustomizeAdvFormVariousDS-VB.zip I'm using the <%# Bind("Start") %> and that results in the full date/time.  I saw that I could use Start.Date and Start.TimeOfDay.  But Start.Date still showed the full date/time.

I'm so close to finishing ... please help!
Allan
Top achievements
Rank 1
 answered on 29 Aug 2012
2 answers
85 views
I have an employee profile that contains sensitive fields such as passwords and identification numbers. By default, the fields are masked so the values are hidden, but noticeably present. In order to see these fields' data, the user clicks a RadButton configured as a check box to change it's checked state to true (show passwords).

I wired up a function to launch a function:
function openPasswordWin() {
     var oWnd = radopen("frmConfirmShowPassword.aspx", "RadWindow1");
}

When that form closes, I get the entered user name and password and authenticate their access. All fine and dandy, works well.

The problem is that after the user does this, I am having trouble on subsequent check changes. The user does not need to be reauthenticated during the session, but gettting the handlers to unhook or hook up hasn't been working. This is what I've tried:
'This is in the Page_Load method
If Session("ShowPassword") Is Nothing Then
    chkShowPassword.Attributes.Remove("onclick")
    chkShowPassword.Attributes.Add("onclick", "openPasswordWin(); return false;")
    RemoveHandler chkShowPassword.CheckedChanged, AddressOf chkShowPassword_CheckedChanged
Else
    If Session("ShowPassword") = "0" Then
       chkShowPassword.Attributes.Remove("onclick")
       chkShowPassword.Attributes.Add("onclick", "openPasswordWin(); return false;")
       RemoveHandler chkShowPassword.CheckedChanged, AddressOf chkShowPassword_CheckedChanged
    Else
       chkShowPassword.Attributes.Remove("onclick")
       AddHandler chkShowPassword.CheckedChanged, AddressOf chkShowPassword_CheckedChanged
       chkShowPassword.Attributes.Add("onclick", "chkShowPassword_CheckedChanged")
     End If
End If

The results are inconsistent in getting the click event of the check box button to fire, adding the handler doesn't seem to work. Any suggestions?

Thanks in advance,
Sn
Stephen
Top achievements
Rank 1
 answered on 29 Aug 2012
5 answers
537 views
Hello,

I apologize if this is a duplicate post, I did some searching and although there are some other related posts I could not find one exactly matching my issue that had a solution that worked.  I am creating RadWindows dynamically via javascript (no server code involved) and have set my radwindowmanager initializebehavior to 'maximize' so when the window opens up it is maximized.  I also allow the user to minimize and resize. When I resize the window and move the window around the screen, then minimize, then restore, the window returns to the position and size I last had it as I expected.  However, if I open the window maximized, then minimize it, then restore, the window will not restore maximized.  It comes up a smaller size and centered on the page.  It doesn't seem to remember that it was maximized.  Is there anything I can do to correct this issue?  I found I can use the onclientcommand to always maximize on restore, but I would rather the window return to the initial size and position it was before it was minimized.

Thank you!
Richard
Jens Olesen
Top achievements
Rank 1
 answered on 29 Aug 2012
2 answers
115 views
Hello,

I'm trying to create a menu with RadPanelBar for showing groups of services, each group with their services associated. This menu has two levels, the parent level with the name of the group, and the child level with the name of the service. Because the user can select multiple services into a group, the child must be a Checkbox, and here I have the problem.

At this moment I handle two options: I have a DataBindings with a RadPanelItemBinding that give me the structure parent-child with the data correctly formed, but without the checkboxes. I don't know how can I use another control into the DataBindings structure, neither if I can.

In the other side, I have an ItemTemplate with the Checkboxes doing the same, but it doesn't differentiate the information about the parent and the child.

  <telerik:RadPanelBar ID="RadPanelBar1" runat="server" ExpandMode="SingleExpandedItem" DataFieldID="ID" DataFieldParentID="ParentID" Width="90%">
            <DataBindings>
                <telerik:RadPanelItemBinding ImageUrlField="ImageUrl" TextField="Name" Expanded="True" ChildGroupHeight="200px" />
            </DataBindings>
             
            <ItemTemplate>
                <asp:CheckBox ID="CheckBox1" runat="server" Text='<%# ((ServicePanelbarContainer)Container.DataItem).Name %>'/>
            </ItemTemplate>
        </telerik:RadPanelBar>


I'm binding the data to the RadPanelBar with this structure.

Thanks for your help.

 int i = 1;
            foreach (ServiceGroup serviceGroup in groupList)
            {
                serviceGroup.ImageUrl = "../../Img/Icons/" + serviceGroup.ImageUrl;
 
                parsedGroupList.Add(new ServicePanelbarContainer()
                {
                    ParentID = 0,
                    ID = i,
                    Name = serviceGroup.Name,
                    ImageUrl = serviceGroup.ImageUrl
                });
                 
                int j = i;
                i++;
                 
                foreach (Service s in serviceGroup.Service)
                {
                    parsedGroupList.Add(new ServicePanelbarContainer()
                    {
                        ParentID = j,
                        ID = i,
                        Name = s.Name,
                        ImageUrl = ""
                    });
 
                    i++;
                }
            }

RadPanelBar1.DataSource = parsedGroupList;
RadPanelBar1.DataBind();
Sternico
Top achievements
Rank 1
 answered on 29 Aug 2012
3 answers
78 views
I am attempting to use the RadCaptcha  control with custom audio files, but each letter has static tagged to the end of it at run time. The files that I am using were originally recorded for our phone system and currently work just fine elsewhere.

I am guessing that it has something to do with the bit rate or frequency of the files, but I don't know allot about audio, and I can not find any specifications as to what the RadCaptcha control is expecting (other then a wav file).
Slav
Telerik team
 answered on 29 Aug 2012
1 answer
96 views
I would like to use the iCal export capability in a situation where we are not actually using the Scheduler or Calendar components. We have events in a SQL Server table, for which we would just like to add a simple "Add to my calendar" button, in which case we download an ICS file. Most users are on Outlook.
Ivana
Telerik team
 answered on 29 Aug 2012
1 answer
565 views
I have used telerik product version 2009.3.1103.35.

QA found issue like cross side script vulnerability request attack on telerik Webresource.axd file.
how to resolve this issue without upgrading to new telerik version ?

and also provide the year/quarter of this version 2009.3.1103.35.

Thanks,
-Venkat
Kate
Telerik team
 answered on 29 Aug 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?