Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
132 views
Hi, I am using the radeditor to allow users to create their own templates for responding to radiology studies.  I allow the user to create templates by putting the control in design mode.  Only textboxes and textareas are allowed in the template.  I allow the user to fill in the form fields on the template by putting the control in preview mode.  This all works very well except for one problem.  I am having a problem with the textarea form element.  I am unable to type into the textarea form element in preview mode in IE only (tried version 7 and 8) - it works fine in Firefox and Safari.  When I click in the textarea, I get a blinking cursor - but when the first key is hit, the textarea loses focus and the keystroke is not recorded.  Is this a known bug?  I have version 209.2.826.20. 

Thanks,

Ronnie Robertson
Ianko
Telerik team
 answered on 09 Apr 2014
5 answers
325 views
Hi,

I have one page with the window component.
<telerik:RadWindowManager ID="RadWindowManager2" runat="server" EnableShadow="true">
        <Windows>
            <telerik:RadWindow ID="RadWindow1" runat="server" AutoSize="true" VisibleStatusbar="false"
                Modal="true">
            </telerik:RadWindow>
        </Windows>
    </telerik:RadWindowManager>

I display that with this function.

function openRadWin() {
                radopen("criteria.aspx", "RadWindow1");
            }

The window opened, and works fine, but the size not change. If I write width= "600px" or heigth="800px" the window size is the same and propertie modal = true doesn't work. I don't know what happened.

I see this example  http://demos.telerik.com/aspnet-ajax/window/examples/contenttemplatevsnavigateurl/defaultvb.aspx but not work for me.


Please help me!!
Princy
Top achievements
Rank 2
 answered on 09 Apr 2014
1 answer
53 views
Hi everyone!

Can you suggest me an example of a sharepoint webpart used to load a file (for example an excel file, whose content will be copied into a datatable); if possible, a solution that provides that when I click on a text box, the browsing window for file's research is automatically opened  and when file is selected by user, the text box is filled with the path of that file.

Thanks in advance.

Gionata.
Vessy
Telerik team
 answered on 09 Apr 2014
4 answers
335 views
Folks using UI for ASP.NET AJAX Q1 2014 with VS 2012.

I am using below link as Prototype (The Top Grid).

http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/filtering/filter-templates/defaultcs.aspx

I would like to Filter the RadGrid Based on Null Value of the City Combobox as Well as All or Selected Value. I modified the Screen (See attached).

Below is my new Datasource for that ComboBox (i.e RadComboBoxCity) that already has some Null City Values.

<asp:SqlDataSource ID="SqlDataSource3"
        ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>" SelectCommand="SELECT DISTINCT City  FROM CustCity"
        runat="server"></asp:SqlDataSource>

Also there are Some Null City Values in Customer Table.

<asp:SqlDataSource ID="SqlDataSource1" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
        ProviderName="System.Data.SqlClient" SelectCommand="SELECT CustomerID, ContactName, ContactTitle, City, Country, Bool FROM Customers"
        runat="server"></asp:SqlDataSource>

Any Help is appreciated. Thanks

gc_0620
Princy
Top achievements
Rank 2
 answered on 09 Apr 2014
1 answer
108 views
Hi,
Is it possible to synchronize grid with a google map using the same data?
When I filtering on grid I need to refresh the map with the filtered data.

Thanks



Angel Petrov
Telerik team
 answered on 09 Apr 2014
2 answers
176 views
Hi,

I'm trying to translate labels of style builder in the table and cell properties of radEditor. But in style builder window, the tab name does not change. Here is a screenshot of the window. You can see some labels changed on the right pane but the tab name's did not.

I used the :

<data name="StyleBuilder_BorderTab" xml:space="preserve"> <value>Kenarliklar</value> </data>





Is the data name wrong or I'm missing something else?

Thanks,
S. Cicek

Ianko
Telerik team
 answered on 09 Apr 2014
1 answer
275 views
I've created a RadComboBox with a set of RadComboBoxItems that include tooltips.  

I have the combobox's OnClientSelectedIndexChanged set to call a Javascript function.  

Within that function I'm already able to access the selected value and text.

What I can't seem to find is a way in JavaScript to get to the RadComboBoxItem's ToolTip (Or 'title'.  I've already verified that the LI objects have the correct titles.)

Princy
Top achievements
Rank 2
 answered on 09 Apr 2014
4 answers
110 views

I have a large number of combobox   items inside a grid. The combobox display those
items to slow, so I tried to load Items on portions and after short search a found
what I was looking for. I found the example demo  ComboBox - Load on Demand Modes  . But I can’t figure it out how to do the same
thing inside a Grid?

Joseph
Top achievements
Rank 1
 answered on 09 Apr 2014
1 answer
178 views
Hi,

I have a RadGrid with some numeric columns that contain values that represent bytes.

I was wondering if RadGrid has some built in function to format RadGrid column values as KB, MB, GK depending of the number of bytes? (much like windows explorer does in the ""Size" column of the files grid)?



Thanks in advance,

Rutger
Jayesh Goyani
Top achievements
Rank 2
 answered on 09 Apr 2014
2 answers
326 views
Hi,

Anybody can help me how to disable radtextbox that (ShowButton="true") when click RadioButton? Even though I set radtextbox to disable on client site and textbox is disable,but button is still showing.
I will publish my code for reference.

.aspx
(
<table>
 <tr>
            <td>
                <asp:RadioButton ID="radGuest" Checked="true" runat="server" GroupName="t" Text="Guest" />
            </td>
            <td colspan="4">
                <telerik:RadTextBox ShowButton="true" ID="txtGuest" Text="" runat="server" Width="250px">
                    <ClientEvents OnButtonClick="OnGuestClick" />
                </telerik:RadTextBox>
                <asp:HiddenField ID="hdnGuestKey" Value = "" runat="server" />
            </td>
        </tr>
        <tr>
            <td>
                <asp:RadioButton ID="radCompany" runat="server" GroupName="t" Text="Company" />
            </td>
            <td colspan="4">
                <telerik:RadTextBox ShowButton="true" ID="txtCompany" Text="" runat="server"  Width="250px">
                    <ClientEvents OnButtonClick="OnCompanyClick" />
                </telerik:RadTextBox>
                <asp:HiddenField ID="hdnCompany" Value = "" runat="server" />
            </td>
        </tr>
</table>
)

Client Site
(
   $telerik.$(function () {

            $telerik.$('#<%=radGuest.ClientID %>').unbind('change').bind('change', function () {            
                var txtGuest = $find('<%=txtGuest.ClientID %>');
                var txtCompany = $find('<%=txtCompany.ClientID %>');
                txtGuest.enable();
                txtCompany.disable();
               
            });
            $telerik.$('#<%=radCompany.ClientID %>').unbind('change').bind('change', function () {
                var txtGuest = $find('<%=txtGuest.ClientID %>');
                var txtCompany = $find('<%=txtCompany.ClientID %>');
                txtGuest.disable();
                 txtCompany.enable();
           
            });
        });
)
Myo
Top achievements
Rank 1
 answered on 09 Apr 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?