Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
50 views
If using http, everything ok. But when i run application with https, not load data. What will I do???
Irene Alpen
Top achievements
Rank 1
 asked on 05 Nov 2016
5 answers
153 views

In an web form 2010 application that I am currently working with, the radeditor is being used. Right now I have one letter being generated at a time. However I want to place 2 to 3 letters within the same varchar(max) column within a sql server database. I would like each letter to print on separate pages.

I have tried html like the following:

<html><body><p>test1</p><p style="page-break-after:always;"></p><p>test2</p><p style="page-break-after:always;"></p><p>test3</p><p style="page-break-after:always;"></p></body></html>

and found everything still prints on the same page.

Thus is there anything within the radeditor that will make the page breaks actually work?

Rumen
Telerik team
 answered on 04 Nov 2016
2 answers
134 views

Hi,

 

I am trying to add a button (pref imagebutton) to each one of the group headers (the row that has the expand/colapse functionality).

 

The intent is to give such button the ability to remove all the records of that group.

 

For example:

 

> Group 1

     Row 1

     Row 2

     Row 3

> Group 2

     Row 1

     Row 2

 

I want the button on the "Group" rows, ideally to the right.

 

I have been researching but only found solutions to add it to each row and to the raid header, but not on the ExpandCollapse row.

 

Any ideas?

Fernando
Top achievements
Rank 1
 answered on 04 Nov 2016
3 answers
908 views
Hi,
I'm using latest version Q2 2011 telerik controls. I'm getting an exception on grid  ItemDataBound event only on edit command. Initial databound and paging, sorting are good.

In my database both fields are datetime.

StartTime                                    EndTime                                            
2011-09-30 00:00:00.000            2011-09-30 15:34:33.203

In the radGrid
Start Time                                     End Time
9/30/2011 12:00:00 AM                9/30/2011 3:34:33 PM

EditMode

="InPlace"

OnNeedDataSource="grdTime_NeedDataSource" (binding the data on server side using EntityFramework)
<Columns>

 <telerik:GridDateTimeColumn DataField="StartTime" HeaderButtonType="TextButton" HeaderText="Start Time" ItemStyle-HorizontalAlign="Left" UniqueName="StartTime" ItemStyle-Width="100px" HeaderStyle-Width="100px" ReadOnly="true" DataType="System.DateTime">

 </telerik:GridDateTimeColumn>

 <telerik:GridDateTimeColumn DataField="EndTime" HeaderButtonType="TextButton" HeaderText="End Time" ItemStyle-HorizontalAlign="Left" UniqueName="EndTime" ItemStyle-Width="100px" HeaderStyle-Width="100px" PickerType="DateTimePicker" DataType="System.DateTime">

 </telerik:GridDateTimeColumn>

</Columns>

Getting the "String was not recognized as a valid DateTime." exception on hitting edit button.

Thanks!

 

Marin
Telerik team
 answered on 04 Nov 2016
1 answer
113 views
How do I get all the items server side in the ListBox as a comma-delimited string without selecting any?
The visitor will sort the items and then save them sorted ....
Eyup
Telerik team
 answered on 04 Nov 2016
5 answers
95 views

Hi,

I have a web service bound scheduler in which click  of a navigation button (previous/next/today) does not update   Scheduler's popup calendar. 

Scheduler shows 10/31/2016 as selected date and on click of next button it navigates to 11/1/2016 .

Scheduler  shows 11/1/2016 7:30 AM - 1/2/2016 5:00 PM, however pop up calendar does not highlight 11/1/2016 as selected date.

How can I match scheduler's selected date with highlighted date  in scheduler's pop up calendar?

Regards,

Prava

 

Anton
Telerik team
 answered on 04 Nov 2016
1 answer
359 views
I came across a performance issue with the RadGrid. I dynamically create buttons for every row in the grid when they are expanded. Every buttons opens up a modal and it doesn't use any information from the grid. My issue is that postback happens and the whole grid is reloaded, even though I add the buttons to RadAjax manager programatically on ItemDataBound and assign them to only update the modal Panel. Has anyone encountered something similar to this? This is hindering my applications performance greatly. Any advice?
Viktor Tachev
Telerik team
 answered on 04 Nov 2016
2 answers
600 views

Has anyone else experienced any issues with using the dialog windows (RadAlert, RadConfirm and RadPrompt).  I have a project that I have been working on where I am using these dialog windows, and even though I have a RadWindowManager on the page in question I keep getting a "d is undefined" error when the following code gets called from Telerik.Web.UI.Window.RadWindowManager.js.

 

window.radalert=

function(e,c,a,b){var d=GetRadWindowManager();

 

 

return d.radalert(e,c,a,b);

 

};

Thanks,
Eric

Alfredo
Top achievements
Rank 1
 answered on 03 Nov 2016
10 answers
846 views
We have a very strange problem, our site is working perfectly fine with RadConfirm/RadAlerts on one server, running Windows 7 and IIS7.5, but when we move the entire site to a Windows Server 2008 with IIS7, and run the site again (in the same webbrowser on the same computer), it will give as a javascript error "radconfirm is not defined" and then simply continue running without getting any confirm.

Any idea why this would be happening? It is the exactly same site moved to a different server, so naturally, the Telerik DLLs etc should be the same.

Here is the code we use:

    function OnClientClicking_confirm(sender, args)
    {
        debugger;
        var callBackFunction = Function.createDelegate(sender, function (argument)
        {
            if (argument)
            {
                this.click();
            }
        });
        var text = "Are you sure?";
        radconfirm(text, callBackFunction, 300, 100, null, "");
        args.set_cancel(true);
    }
Alfredo
Top achievements
Rank 1
 answered on 03 Nov 2016
14 answers
252 views
I have the following RadSlider which is in a UserControl:
        <telerik:RadSlider runat="server" ID="rsVery" EnableViewState="false" Orientation="Horizontal" Width="500" Height="50" TrackPosition="TopLeft" Skin="Inox" ItemType="Item" MinimumValue="-10" MaximumValue="10" SmallChange="1" ShowDecreaseHandle="true" ShowIncreaseHandle="true" Visible="true" AnimationDuration="250">
            <Items>
                <telerik:RadSliderItem Text="Very Slow" Value="-3" ToolTip="Very Slow" runat="server"></telerik:RadSliderItem>
                <telerik:RadSliderItem Text="Slow" Value="-2" runat="server"></telerik:RadSliderItem>
                <telerik:RadSliderItem Text="Normal" Value="0" runat="server"></telerik:RadSliderItem>
                <telerik:RadSliderItem Text="Fast" Value="2" runat="server"></telerik:RadSliderItem>
                <telerik:RadSliderItem Text="Very Fast" Value="3" runat="server"></telerik:RadSliderItem>
            </Items>
        </telerik:RadSlider>        


The .Value just returns the position index.

can you tell me what I'm doing wrong..

thanks



Josh
Top achievements
Rank 1
Veteran
 answered on 03 Nov 2016
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
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
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?