Hello
I am new to telerik controls and new to the company I am working for. I have asked to fix some telerik control updates
- First one is tooltip is needed to be clicked twice to open for the first time
- and the second one is It always points to the previously selected row.
I am attaching the pics to be more clear
On .aspx
<
telerik:RadToolTip
runat
=
"server"
ID
=
"plRadToolTip"
Skin
=
"AlSkin"
EnableEmbeddedSkins
=
"false"
EnableShadow
=
"false"
Position
=
"MiddleLeft"
ShowEvent
=
"OnClick"
HideEvent
=
"ManualClose"
RelativeTo
=
"Element"
>
<
div
id
=
"divPLToolTipDiv1"
runat
=
"server"
>
<
div
class
=
"plToolTipDiv2"
>
<
div
class
=
"plToolTipTitleDiv"
id
=
"divPLToolTipTitle"
>
</
div
>
<
div
class
=
"plToolTipLinkDiv"
id
=
"divPLToolTipSearchKB"
>
<
a
id
=
"aPLToolTipSearchKB"
runat
=
"server"
><
span
id
=
"spnPLToolTipSearchKBText"
runat
=
"server"
>
</
span
></
a
>
</
div
>
<
div
class
=
"plToolTipLinkDiv"
id
=
"divPLToolTipDocumentation"
>
<
a
id
=
"aPLToolTipDocumentation"
runat
=
"server"
><
span
id
=
"spnPLToolTipDocumentationText"
runat
=
"server"
></
span
></
a
>
</
div
>
<
div
class
=
"plToolTipLinkDiv"
id
=
"divPLToolTipAddIncident"
>
<
a
id
=
"aPLToolTipAddIncident"
runat
=
"server"
><
span
id
=
"spnPLToolTipAddAnIncidentText"
runat
=
"server"
></
span
></
a
>
</
div
>
<
div
class
=
"plToolTipLinkDiv"
id
=
"divPLToolTipDownloadPatches"
>
<
a
id
=
"aPLToolTipDownloadPatches"
runat
=
"server"
><
span
id
=
"spnPLToolTipDownloadPatchesText"
runat
=
"server"
></
span
></
a
>
</
div
>
<
div
class
=
"plToolTipLinkDiv"
id
=
"divPLToolTipUpdateMyProductLine"
>
<
a
id
=
"aPLToolTipUpdateMyProductLine"
runat
=
"server"
><
span
id
=
"spnPLToolTipUpdateMyProductLineText"
runat
=
"server"
></
span
></
a
>
</
div
>
<
div
class
=
"plToolTipLinkDiv"
id
=
"divPLToolTipUpdateMyProductLines"
>
<
a
id
=
"aPLToolTipUpdateMyProductLines"
runat
=
"server"
><
span
id
=
"spnPLToolTipUpdateMyProductLinesText"
runat
=
"server"
></
span
></
a
>
</
div
>
</
div
>
</
div
>
</
telerik:RadToolTip
>
Javascipt used
function ShowProductLineToolTip(target_id, title, product_line_id, category_id, doc_page_to_show, show_kb, show_doc, show_ai, show_dlp, show_umpl, show_umpls) {
var toolTip = $find("plRadToolTip");
Thanks