Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
81 views
I had this working at one point, and then I added recurrence, using a GUID as my primary key. This all works fine. However, when hovering over the appointment, the tooltip no longer works. If you look at the code below, the 'apt' has 'nothing' in it. The e.Value has the string of the GUID. It appears as if the FindByID is not working with the GUID.

Thanks,
Susan

Dim aptId As Integer

Dim apt As Telerik.Web.UI.Appointment

If Not Integer.TryParse(e.Value, aptId) Then

'The appoitnment is occurrence and FindByID expects a string

apt = RadScheduler1.Appointments.FindByID(e.Value)

Else

'The appointment is not occurrence and FindByID expects an int

apt = RadScheduler1.Appointments.FindByID(aptId)

End If

Dim toolTip As CalendarToolTip = CType(LoadControl("~/CalendarToolTip.ascx"), CalendarToolTip)

toolTip.TargetAppointment = apt

e.UpdatePanel.ContentTemplateContainer.Controls.Add(toolTip)

Plamen
Telerik team
 answered on 05 Jun 2013
4 answers
293 views

User Story (see attached image)

A user clicks the upper grid which is a list of books.  When they select a book from the upper grid, a lower grid will appear which will allow them to select which campuses will receive this book. 

Actions:

A user will enter a quantity (radNumericTextbox) in a textbox and then hit the tab or enter key and will be moved to the next textbox.  On the client side OnBlur event, a webmethod is called to save the value the user just entered.  At this time a couple of things will happen.  I am using the jquery blockUI tool to block the UI incase the network is slow, once the jquery ajax call is “complete” the blockUI is dismissed.  The upper grid will add a check mark to indicate the book is part of this order now and the lower grid will now display a DELETE icon.   The focus is moved to the next textbox waiting for input from the user...

Notes:

I am looking for an example that is similar to this.  My grid is NOT in edit mode and our product manager does not want the user to have to hit EDIT or SAVE icons…  They are also interested in perhaps having the user enter a ZERO to actually perform a delete, which would allow us to remove the delete icon.

All in all, you enter a value, it saves and give you a visual indicator that it saved.  Replacing a number in a textbox with a Zero value will delete an item that was already on the order…

Does anyone know of any radgrid examples similar to this?

Wired_Nerve
Top achievements
Rank 2
 answered on 05 Jun 2013
3 answers
146 views
I've been trying everything I can think of to get this working...

Basically I've got a web page which loads user controls dynamically.

On the user controls, I'm using the radAjaxManagerProxy successfully.  However, when I create a radWindow from one of them, I cannot find a way to create the Ajax event on the containing page which will load the radAjaxLoadingPanel to cover all of the items on the containing page.  So the radWindow is not truly modal; I can still click on radMenu items above the user controls.

I thought about putting the radWindow in the containing page, but I don't want the user controls to have to be aware of its presence should things change.

Any help would be greatly appreciated.  I've gone through a ton of samples, but couldn't find anything that really fit my scenario.

Thanks!
Viktor Tachev
Telerik team
 answered on 05 Jun 2013
1 answer
69 views

I have RadTabStrip and  RadMultiPage  inside HTML table , the issue found only on Safari browser , the table vertical scroll bar move up and down without moving the page that associated with.

Please advise.

Kate
Telerik team
 answered on 05 Jun 2013
1 answer
63 views
I have a radorgchart within a radajaxpanel in a parent tab1/pageview1.  In another tab2/pageview2, child tabs update controls on pageview2.  However, when these controls ajax-update, the radorgchart collapses horizontally (not group collapsing, just the width of the chart).  Dragging one of the nodes or selecting a node data edit field (all-ajaxified) magically re-expands the radorgchart.  I'm thinking this is an ajax update associated controls issue, but I haven't been able to correct it.  Any suggestions?
Peter Filipov
Telerik team
 answered on 05 Jun 2013
1 answer
66 views
Is it possible to add controls to a RadToolTipManager's TargetControls collection using the client-side API?

I'm populating a RadComboBox on the client and want to create tooltips for each of the items.

--
Stuart
Slav
Telerik team
 answered on 05 Jun 2013
2 answers
63 views
Hi,
I am having problems with this or I am not sure if this is a problem or if it just works like this. Here is my problem everything works fine but when I edit a recurring appointment it creates a whole new appointment with the resource changes. So it now has two appointments one that is linked to the recurring master and one that is independent. is there a way to do this where it just edits the recurring not inserting a new one. Or should I say referecnces the master in the recurrencePartentID and does not show two appointment just one. My code is the exact same as the demo I also notice that it does this on the demo also. I hope there is a way to do it the way I need it to. Thanks for any help also sorry I am very new to this so please bear with me.
Plamen
Telerik team
 answered on 05 Jun 2013
7 answers
180 views
Hi,

I'm having a problem with removing menu items from the client side.  Specifically, I run into an issue when I try to remove the last root menu item.

I have noticed that you have the same issue in your demo here:  http://demos.telerik.com/aspnet-ajax/menu/examples/programming/addremovedisableitemsclientside/defaultcs.aspx

To reproduce the problem, select "Books", click "Delete selected Item", then, select "Music" and click "Delete selected Item".  You will find that the Music menu item still exists in the menu, and when you move the cursor over the menu, it throws a javascript exception.  Is there a known work-around for this issue?

Thanks,

Brad

Boyan Dimitrov
Telerik team
 answered on 05 Jun 2013
1 answer
107 views
Is there a way to display different text as a user hovers over individual items for a rad combobox? I don't care if it's a tool tip or not, it's just simple text. Basically, I have a combo box of abbreviated items, and I'd like to display the full name as you hover over them to select one.
Plamen
Telerik team
 answered on 05 Jun 2013
12 answers
655 views
When I tried to render Telerik reports(based on Telerik:RadControls) on IE 10 (Windows 8), then I was facing following error:
" SCRIPT5022: NoModificationAllowedError"


After that I overrided function "Telerik.Web.UI.Overlay.prototype"  by the following code::

     Telerik.Web.UI.Overlay.prototype = { initialize: function () {
            var _13f = document.createElement("div");
            _13f.innerHTML = "<iframe>Your browser does not support inline frames or is currently configured not to display inline frames.</iframe>";
            this._element = _13f.firstChild;
            this._element.src = "javascript:'';";
            this._targetElement.parentNode.insertBefore(this._element, this._targetElement);
            if (this._targetElement.style.zIndex > 0) {
                this._element.style.zIndex = this._targetElement.style.zIndex - 1;
            }
            this._element.style.position = "absolute";
            this._element.style.border = "0px";
            this._element.frameBorder = 0;
            this._element.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";
            this._element.tabIndex = -1;
            this.updatePosition();
        }, dispose: function () {
            if (this._element.parentNode) {
                this._element.parentNode.removeChild(this._element);
            }
            this._targetElement = null;
            this._element = null;
        }, get_targetElement: function () {
            return this._targetElement;
        }, set_targetElement: function (_140) {
            this._targetElement = _140;
        }, updatePosition: function () {
            this._element.style.top = this._toUnit(this._targetElement.style.top);
            this._element.style.left = this._toUnit(this._targetElement.style.left);
            this._element.style.width = this._targetElement.offsetWidth + "px";
            this._element.style.height = this._targetElement.offsetHeight + "px";
        }, _toUnit: function (_141) {
            if (!_141) {
                return "0px";
            }
            return parseInt(_141) + "px";
        }
    };

 
Now, I am facing another error:
"SCRIPT5007: Unable to get property 'documentElement' of undefined or null reference"

I think all these errors are coming due to IE document Mode: standard is not handling these telerik dlls of above mentioned version
So, any suggestion or solution is welcomed
Ana
Top achievements
Rank 1
 answered on 05 Jun 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?