Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
653 views
Hello,

I use the AutoCompleteBox in my project to check if a string already exists in the database and display the already existing items to the user.

My problem is that a user types in the AutoCompleteBox and as soon as the result list pops up the first item in this list is automatically selected. If the user now presses tab or return or clicks into a different area if the screen, the selected entry in the result list is automatically selected and replaces the string entered by the user. This is very annoying if the user tries to enter a string which is only a part of an already existing string but not the same.

In my example the database contains the following strings: 000100, 000110, 000200, 000210

Now the user wants to add a new item 0001. This is not possible because as soon as the user has entered 0001 the AutoCompleteBox displays a list containing 000100 and 000110 and it automatically selects the first item in that list.
It is possible to get rid of that autoselection by pressing the up arrow key or explicitly moving the mouse out of the dropdown list - but from a usability point of view this is not acceptable. It would be very helpful if I could tell the AutoCompleteBox to avoid the automatic selection in such cases.

Does anyone know a way to get around this issue?

Best regards,
Markus



Heera
Top achievements
Rank 1
 answered on 09 Jun 2015
1 answer
362 views

I have a RADGrid using AJAX where I create a custom ButtonColumn. This column holds buttons (obviously) which need to use Full-PostBacks rather than Partial-PostBacks. The grid also allows for paging. In the grid's ItemCreated() event I add the visible buttons (ie: the first 10 items if paging is set to 10 items per page) to the ScriptManager's RegisterPostBackControl() method. This works perfectly fine.

The problem I have is that when a user jumps to another page, they are causing a Partial-PostBack which redraws the grid with the next set of records to be viewed, which also runs the code to RegisterPostBackControl's. However, these buttons do not perform Full-PostBacks...they stay as Partial-PostBack controls. It seems that the ScriptManager.RegisterPostBackControl() method does not function when called from a Partial-PostBack.

Anyone know how I can add the buttons within the grid to the list of Full-PostBack controls when a user moves to another page of records within the grid?

 

-Ben

Kostadin
Telerik team
 answered on 09 Jun 2015
0 answers
113 views
I put together some code for my web admin so I can see the versions and the descriptive title (tells you if it is trial or not)

in my example it showed "Telerik.Web.UI Trial Version 2014.3.1209.40"
until I updated it with the full version then it showed "Telerik.Web.UI 2014.3.1209.40"

here is my code I used

Dim item = System.Reflection.Assembly.LoadFile(Server.MapPath("~/bin/Telerik.Web.UI.dll"))
Dim title As String = ""
For Each attr In item.GetCustomAttributes(True)
If TypeOf attr Is System.Reflection.AssemblyTitleAttribute Then
Dim attrTitle As System.Reflection.AssemblyTitleAttribute = CType(attr, System.Reflection.AssemblyTitleAttribute)
title = attrTitle.Title
End If
Next
lblTelerikVersion.Text = title & " " & System.Reflection.Assembly.LoadFile(Server.MapPath("~/bin/Telerik.Web.UI.dll")).GetName().Version.ToString()
Doug
Top achievements
Rank 1
 asked on 08 Jun 2015
9 answers
326 views
Hi Telerik,
                

                        Is there a way to drag a file from windows explorer into the "Rad File Explorer" and have it upload the file?

Vessy
Telerik team
 answered on 08 Jun 2015
0 answers
96 views

I found a thread about how to do lines using GeoJSON with RadMap, but I haven't been able to find anything for doing lines with the Kendo Map.  The only Kendo Map things I've found with GeoJSON are about doing shapes.  Is it possible to do lines on a Kendo Map?

 

Matt
Top achievements
Rank 1
 asked on 08 Jun 2015
3 answers
382 views
how to upload image to RadImageEditor using RadAsyncUpload and save image in particular path
Vessy
Telerik team
 answered on 08 Jun 2015
8 answers
504 views
Is there any way of changing the default "delete" "edit" "insert" "cancel" etc. text on a RADGrid with auto-generated delete and edit columns? I need to change these to a non-english language and I am struggling with trying to apply localization to the RADGrid control.

Thanks in advance,

Jason
Eyup
Telerik team
 answered on 08 Jun 2015
10 answers
1.6K+ views
Hi all,
           I have installed teletik in my PC.I have license key for it. Now i need the source code of telerik.But I don't know from where i can download it. Can anyone send me the link ?

thanks
Sathya
Dimitar
Telerik team
 answered on 08 Jun 2015
4 answers
227 views

Dear Telerk Support,

 I have been using latest Telerik Control (i.e. UI for ASP.NET AJAX Q1 2015 [2015.1.401.40]) within one of my project.

 The problem I'm having is with RadNumeric Text Box.

 My RadNumeric text box is as defined below:

<telerik:RadNumericTextBox SkinID="UnitRadNumericTextBox" runat="server"
      Font-Size="12px" style="vertical-align: middle;border-top:1px solid #cccccc; border-right: 1px solid #cccccc;border-bottom: 1px solid #cccccc;border-left:1px solid #cccccc;background-color: #fff;" Font-Names="Trebuchet MS"  Height="22px" Border="1px solid #8384a0"
     Value="0.00" NumberFormat-DecimalDigits="2"
     Width="92%" MinValue="1" MaxValue="9999.99" >
    <FocusedStyle HorizontalAlign="Right" />
    <EnabledStyle HorizontalAlign="Right" />
</telerik:RadNumericTextBox>

 

Problem here is that, for this new DLL, when I click on this RadNumeric TextBox, 0  does not gets selected as whole as it was earlier when we press TAB to redirect to this RadNumeric Textbox.

 Actually , when we click on this text box & write 1, it becomes 10 & not 1.

 This is the problem in new DLL, when I reverted my entire package to old DLL (i.e. 2015.1.225.40) it all went good.

Please help.

 Thanks

 Ajay

Viktor Tachev
Telerik team
 answered on 08 Jun 2015
2 answers
64 views

Hi Team,

I am using radgrid in "put all fields in edit" mode, achieving through the below code .

        protected void RadGrid1_PreRender(object sender, EventArgs e)
        {
            RadGrid1.AllowMultiRowEdit = true;
            RadGrid1.MasterTableView.EditMode = GridEditMode.InPlace;
            foreach (GridDataItem dataItem in RadGrid1.Items)
            {
                dataItem.Edit = true;
            }
            RadGrid1.Rebind();
         }

 

Also I used  "RadGrid1.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.Top;" , in order to create a new row to the grid.

Now I need to read all newly entered values from a button.

Please help.

 

Ramesh

Ramesh
Top achievements
Rank 1
 answered on 08 Jun 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
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?