or
<telerik:GridButtonColumn CommandName="Select" Text="Select" CommandArgument= '<%# Eval ( "UserID" ) %>' |
UniqueName="SelectButton"> |
</telerik:GridButtonColumn> |
protected void GridViewArtistName_RowCommand(object sender, GridViewCommandEventArgs e) |
{ |
if (e.CommandName == "Select") |
{ |
Guid guid = new Guid(e.CommandArgument.ToString()); |
Session.Add("USERID", e.CommandArgument.ToString()); |
if (UserIDChange != null) |
{ |
// Call the Event |
UserIDEventArgs E = new UserIDEventArgs(guid); |
OnUserId(E); |
} |
} |
} |
<
telerik:GridButtonColumn
ButtonType
=
"ImageButton"
CommandName
=
"Delete"
ConfirmText
=
""
ConfirmTitle
=
""
ConfirmDialogType
=
"RadWindow"
UniqueName
=
"delete_notification"
ImageUrl
=
"Images/DeleteRedResized.png"
ShowSortIcon
=
"false"
SortExpression
=
""
>
<
HeaderStyle
HorizontalAlign
=
"Center"
VerticalAlign
=
"Top"
Width
=
"4%"
/>
<
ItemStyle
HorizontalAlign
=
"Center"
VerticalAlign
=
"Top"
Width
=
"4%"
/>
</
telerik:GridButtonColumn
>
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
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");