Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
111 views
When do you plan to publish ASP.NET AJAX releases in your private Nuget? Nowadays, it's quite wanted feature.
Rumen
Telerik team
 answered on 16 Nov 2015
1 answer
176 views

Hi,

I have a couple textboxes with validators on a page like so:

<script manager/>

<loading panel/>

<panel>

<textbox1 validationgroup=a/>

<validator1 validationgroup=a/>

<textbox2 validationgroup=a/>

<validator2 validationgroup=a/>

<button validation group=a causesvalidation=true/>

</panel>

 If I remove the second validator all goes OK the minute I add the second validator I get a javascript library error from ScriptResource.axd?d=....

0x800a1391 - JavaScript runtime error: '$telerik' is undefined.

I'm using the latest build v.2015.3.930.45  and this is what I have on my config file:

<httphandler> 

<add path="telerik.ui....webresources.axd" type="telerik...." verb="*" validate="false" 

</httphandler>

Has anybody else had this problem?

Thanks,

German

Pavlina
Telerik team
 answered on 16 Nov 2015
1 answer
81 views

I realized that when using client side programmatic or declarative binding

http://demos.telerik.com/aspnet-ajax/grid/examples/data-binding/client-side/programmatic/defaultcs.aspx

and the grid is rendered as Mobile, filters don't work anymore.

is there a fix?

Maria Ilieva
Telerik team
 answered on 16 Nov 2015
1 answer
519 views

I'm trying to figure out to I can show the generic radConfirm with "Yes" or "No" buttons instead of "OK" and "Cancel" buttons and have a post back occur when either "yes" or "no" occur to a different button. Right now I'm invoking radConfirm server-side using this 

 

code behind c#

 

              ShowConfirm("Are you sure that you want to use special option?", ConfirmPerformActionButton.UniqueID);

 

        private void ShowConfirm(string dialogText, string postBackUrl)
        {
            string script = string.Format("showConfirm(\"{0}\",\"{1}\");", dialogText, postBackUrl); ;
            ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "KEY", script, true);
        }

 

on the ascx i have

 

<script type="text/javascript">

    var confirmPostBackUrl;
    function showConfirm(dialogText, postBackUrl) {
        function f() {
            confirmPostBackUrl = postBackUrl;
            Sys.Application.remove_load(f);
            radconfirm(dialogText, confirmCallback);
        }
        Sys.Application.add_load(f);
    }
    function confirmCallback(arg) {
        if (arg) {
            __doPostBack(confirmPostBackUrl, '');
        }
    }
</script>

on master page i have

    <telerik:RadWindowManager ID="MasterRadWindowManager" runat="server">
    </telerik:RadWindowManager>

 

thanks for any suggestions!
 

 

Marin Bratanov
Telerik team
 answered on 16 Nov 2015
20 answers
460 views
Hello,
I have created a User Control for activity scheduling. And i set the start date of activity by RadDatePicker to '5 oct, 2013' and Time to'9:00 pm' using RadTimePicker. Now i want  to schedule a activity for recurrence and i set it to daily and Eny by '8 Oct 2013'. So my problem is,  it does not including the last date(8 Oct, 2013) and schedule the activity for 5,6,7 Oct 2013. What is the reason behind that? And also when i set the time to 12:00 am. Then it will include all dates(5,6,7,8 Oct 2013). If  somewhere  i am wrong so please let me know how i can solve this problem. Please help me. This is urgent.
Aref
Top achievements
Rank 1
 answered on 16 Nov 2015
3 answers
156 views

Hi Telerik Team,

We use Telerik ASP.net controls in our project. We found the Image Editor doesn’t work well on web farm environment. In our production server, we uses Image Editor three ways.
    1. RadEditor -> Image Manager -> Image Editor
    2. Using customizing existing Image Manager dialogs Image Manager -> Image Editor
    3. Using Image Editor directly

The first and third ways works perfect but the second way doesn’t work on web farm environment. You can check attachments for the source code and fiddler screen shoot.

Any clues?

Thanks in advance,

Lan

Vessy
Telerik team
 answered on 16 Nov 2015
1 answer
185 views

Hi,

My Datapager is using:

<telerik:RadDataPagerButtonField FieldType="FirstPrev" />
<telerik:RadDataPagerButtonField FieldType="Numeric" PageButtonCount="5" />
<telerik:RadDataPagerButtonField FieldType="NextLast" />

Instead of arrows, how can I show them as text?
I wish to change from < 1,2,3,4,5 > to PREV 1,2,3,4,5 NEXT

Thanks.


 

 

Viktor Tachev
Telerik team
 answered on 16 Nov 2015
4 answers
373 views

Hi,

 

How can I populate a ‘dropDownList’ inside a radGrid from the code behind?

 

The custom form template is as follows:


<FormTemplate> 
              <asp:Label ID = "lblContact" runat ="server" text = "Contact"></asp:Label> 
              <asp:DropDownList ID="ddlContacts" runat ="server" DataValueField ="Description" DataTextField ="description"/> <br/><br /> 
              <asp:Button ID="btnSubmit" runat ="server" Text ="Submit" /> 
              <asp:Button ID="btnCancel" runat ="server" Text ="Cancel" /> 
</FormTemplate> 

In the code behind I have the following:

 

 

Private

 

Sub RadGridService_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles RadGridServices.NeedDataSource

 

 

 

 

 
            Dim objContacts As Array  
            'Gets data from web service  
            objContacts = objReceptionBureauService.getAllContactsForEmployee("EmployeeID")  
 
            Dim contacts As DropDownList = TryCast(FindControl("ddlContacts"), DropDownList)  
            contacts.DataSource = objContacts  
            contacts.DataBind()  
            contacts.DataTextField = "Description" 
            contacts.DataValueField = "Description" 
End Sub

Eyup
Telerik team
 answered on 16 Nov 2015
1 answer
668 views

Hi all

Don't ask - operation reasons, but I have  rad combo box with checkboxes, is it possible to only allow a single checkbox to be selected?

A bit like turning off multiselect, which isn't a property.

Andy

Ivan Danchev
Telerik team
 answered on 16 Nov 2015
5 answers
203 views

We are using radmenu on our website. However when using on mobile browser, radmenu dropdown can not be opened when touched to main menu items. We have searched over many forums, blogs. etc. We couldn't find any solution. We have updated the dll files to the final version but again it did not work.

 

What should we do to overcome this problem. Our mobile clients can not use the menu and we have to solve their problem immediately.

 

Thank you for your help.

 

Kind regards,

Nencho
Telerik team
 answered on 16 Nov 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?