Telerik Forums
UI for ASP.NET AJAX Forum
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
1 answer
407 views
Hi All,

I am uisng a RadTexbox for taking Email Address from user,which is inside the Radgrid's EditTemplate.I have used asp RegExpressionValidator for validating the user input.For inserting of new record in the grid the RegExpressionValidator is fired, if user enters the invalid email ID.Problem here is  that ,once  I save the record in grid   (by giving correct Email Address), then try to modify the Email Address the RegExpressionValidator is not fired for the invalid input.In other words I can put the problem like,for initial insert of email address RegExpressionValidator is fired for invalid input .If I try to modify Email address with invlaid data RegExpressionValidator  is not at all fired.I want client side validation for this problem.Please help me out in this regard.



Thanks& Regards
Princia
Nekud
Top achievements
Rank 2
 answered on 08 Apr 2014
1 answer
30 views
Hi everyone!
Soon we will buy the ultimate version of telerik for asp.net ajax; we are interested to know if, when request of the software is sent, you receive an activation code for its use, or an installation CD is sent to those who has requested.

Thanks in Advance.

Gionata.
Kolby
Telerik team
 answered on 08 Apr 2014
1 answer
53 views
Hi everyone!
Soon we will buy the ultimate version of telerik for asp.net ajax; we are interested to know if, when request of the software is sent, you receive an activation code for its use, or an installation CD is sent to those who has requested.

Thanks in Advance.

Gionata.
Kolby
Telerik team
 answered on 08 Apr 2014
10 answers
321 views
I have a RadPanelBar with RadPanelItem and it has some controls. I am trying to access a textbox in the RadPanelItem and I get errors like:

Compiler Error Message: CS0103: The name 'ControlNameHere' does not exist in the current context

page:
http://beta.simpletick.com/marketplace/add/

aspx:

<telerik:RadPanelBar ID="RadPanelBar1" runat="server" Width="100%">
        <Items>
             
            <telerik:RadPanelItem runat="server" Expanded="true" Text="Submit your theme now"
                Width="100%" CssClass="PanelTitle">
                 
               <ItemTemplate>
                            <table>
                                <tr>
                                    <td>Theme Title:</td>
                                    <td>
                                        <asp:TextBox ID="ThemeTitle" runat="server"></asp:TextBox>
                                        <img src="../../img/icons/question.png" />
                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator3" CssClass="required"  ControlToValidate="ThemeTitle" runat="server" ErrorMessage="Required" Display="Dynamic"></asp:RequiredFieldValidator>
                                        <asp:Label ID="ThemeTitleError" runat="server" />
                                         
                                    </td>
                                </tr>
                                <tr>
                                    <td>Zip File:</td>
                                    <td>
                                        <telerik:RadUpload ID="ZipFileRadUpload1" InitialFileInputsCount="1" ControlObjectsVisibility="None" MaxFileInputsCount="1" runat="server">
                                        </telerik:RadUpload>
                                        <img src="../../img/icons/question.png" />
                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator2" CssClass="required" ControlToValidate="ZipFileRadUpload1" runat="server" ErrorMessage="Required" Display="Dynamic"></asp:RequiredFieldValidator>
                                        <asp:Label ID="ZipFileRadUpload1Error" runat="server" />
                                    </td>
                                </tr>
                                <tr>
                                    <td>Screenshot:</td>
                                    <td>
                                        <telerik:RadUpload ID="ScreenshotRadUpload1" InitialFileInputsCount="1" ControlObjectsVisibility="None" MaxFileInputsCount="1" runat="server">
                                        </telerik:RadUpload>
                                        <img src="../../img/icons/question.png" />
                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator4" CssClass="required" ControlToValidate="ScreenshotRadUpload1" runat="server" ErrorMessage="Required" Display="Dynamic"></asp:RequiredFieldValidator>
                                        <asp:Label ID="ScreenshotRadUpload1Error" runat="server" />
                                    </td>
                                </tr>
                                <tr>
                                    <td>What Skin Matches Best?</td>
                                    <td>
                                        <telerik:RadComboBox ID="BestSkin" runat="server">
                                        <Items>
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        <telerik:RadComboBoxItem Text="" Value="" />
                                        </Items>
                                        </telerik:RadComboBox>
                                        <img src="../../img/icons/question.png" />
                                         
                                    </td>
                                </tr>
                                <tr>
                                    <td>How wide should event/product images be?</td>
                                    <td>
                                        <telerik:RadNumericTextBox ID="EventProductImageWidthSize" Value="250" ShowSpinButtons="true" MinValue="100" MaxValue="800" Type="Number" runat="server">
                                            <NumberFormat DecimalDigits="0" />
                                        </telerik:RadNumericTextBox>
                                    px
                                        <img src="../../img/icons/question.png" />
                                     
                                    </td>
                                </tr>
                                <tr>
                                    <td>Your PayPal Account:</td>
                                    <td>
                                        <asp:TextBox ID="PayPalAccount" MaxLength="50" runat="server"></asp:TextBox>
                                        <img src="../../img/icons/question.png" />
                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" CssClass="required"  ControlToValidate="PayPalAccount" runat="server" ErrorMessage="Required" Display="Dynamic"></asp:RequiredFieldValidator>
                                        </td>
                                </tr>
                                <tr>
                                <td>Selling Price:</td>
                                <td>
                                    <telerik:RadNumericTextBox ID="SellingPrice" Value="25" ShowSpinButtons="true" MinValue="1" MaxValue="5000" Type="Currency" runat="server">
                                        </telerik:RadNumericTextBox>
                                     USD
                                        <img src="../../img/icons/question.png" />
                                </td>
                                </tr>
                            </table>
                            <br />
                                <asp:Button ID="SubmitThemeButton"  runat="server"
        Text="Submit Theme"
        ToolTip="This will save your theme to the SimpleTick marketplace"
        onclick="SubmitThemeButton_Click" />
                             
                        </ItemTemplate>
            </telerik:RadPanelItem>
             
        </Items>
    </telerik:RadPanelBar>
Krishna
Top achievements
Rank 1
 answered on 08 Apr 2014
3 answers
34 views
Hi,
What is the best way to search a user (patient) from a database table, then add that user (patient) to an appointment?
I cannot find any clear results here.
Thanks :)
Hristo Valyavicharski
Telerik team
 answered on 08 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?