Hi, we're creating an HTML (not an ASP.NET control) image map dynamically from the server side into an ASP Label. An ID is assigned to each AREA tag. There is a TooltipManager on the page and the Tooltip is dynamically created when a user mouses over any hotspot on the map. This process works fine, but the Tooltip appears to the right of the image map in the same place every time. It's like the Tooltip takes the position of the image map and not the hotspot. We've looked over the demos for TooltipManager and Tooltip but both aren't quite the same and don't seem to have an issue. I've attached a screen of what it looks like and the code used for creating the Tooltip. I'm sure it's just a CSS issue but there is nothing special about the page itself, besides it being part of a MasterPage.
ASP
<
telerik:RadToolTipManager
ID
=
"ttmPrinters"
ShowCallout
=
"false"
RelativeTo
=
"Element"
HideEvent
=
"ManualClose"
Position
=
"MiddleLeft"
Animation
=
"None"
Width
=
"266px"
Height
=
"394px"
ContentScrolling
=
"None"
runat
=
"server"
Skin
=
"Silk"
RenderInPageRoot
=
"true"
IgnoreAltAttribute
=
"true"
Modal
=
"true"
>
</
telerik:RadToolTipManager
>
JS
var
ttm = $find(
"ctl00_ContentPlaceHolder1_ttmPrinters"
);
var
tooltip = ttm.createToolTip(document.getElementById(id));
tooltip.set_content(request.d);
setTimeout(
function
() {
tooltip.show();
}, 10);
Hi,
i want bind picture in radmap like this picture : http://i.stack.imgur.com/10mTZ.gif
and i want load ( x,y ) position from database and bind in radmap.
my question is :
how can bind image ?
and
how can load and bind ( x,y ) position from database and set in radmap ?
very thanks.
i see right panel when i hover over, it shows the title and other information.
however if i hover over on leftpanel - title column, it doesnt show the full text of it.
i have that requirement in my project.
how can i achieve it?
If this question has been asked before, my apologies for the (any) duplication.
I have two tabstrips/multipages on a single webform. The inner tabstrip/multipage contains 4 tabs each of which contains data entry controls (text boxes, combo boxes, etc.) for the same database record.
I would like to have one set of update/cancel buttons + 1 validation summary at the bottom but I cannot seem to find a "common area" either at the top or bottom of the multipage.
Is this possible? If so, is there a demo/example of this structure somewhere? Hopefully I've described my problem adequately.
Thanks in advance for any assistance!
Lynn
I am trying to use this control to allow clients to set dates when their business is closed. Basically I want to display a year at a time and allow them to select dates and save those to a database.
1. That pretty much works well, except I would like to show the calendar starting at January first for the current year and cannot figure that out.
2. How do I reload the saved/selected dates? I see that SelectedDates is read-only.
Hi,
I'm using 2015.1.401 of your controls.
I'm binding the PivotGrid to a List (Of SupplierAlert), where SupplierAlert is my class that represents a business object we work with.
One thing that is great about working with the regular RadGrid is that in the ItemDataBound method I can cast the dataitem into my type and then I can do all my logic using properties of my type. So for instance I could check a SupplierAlert.AlertLevel or whatever on my object as it bind, and color the cell red if it is a High Alert.
Can I do anything similar to that in the PivotGrid? In CellDataBound for instance, I want to check my SupplierAlert.HasActionItems property for each detail cell (not any of the aggregates) and if it is true, then I may want to add an img to it or something (don't worry about how to add an img to the cell... I can figure that out).
Again, is there a method on the server that I can use when the pivotgrid binds, or even after it binds, to do this type of logic?
Thanks,
Brent