Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass bind or eval arguments with the client function "OnClientClicking"

I meet about problem to pass arguments to the client-side event OnClientClicking.

I tried to use the String.Format () function, but it does not work.

Do you have an idea for a workaround to send parameter linked with OnClientClicking?

Code asp :

<telerik:RadButton ID="bnt_meetingDelete" runat="server" OnClientClicking="<%# string.Format("confirmCallBackFn('{0}');",Eval("MeetingID")) %>" Image-ImageUrl="~/image/icone/delete-icon.png" Image-IsBackgroundImage="true" Width="21" Height="21" telerik:RadButton>

Error IIS:

Parser Error 
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. 

Parser Error Message: The server tag is not well formed.

I tried with controller [asp: ImageButton ]. And is the same mistake

like image 617
Mehdi Bugnard Avatar asked Jul 08 '13 11:07

Mehdi Bugnard


2 Answers

Change double quote to single quote from

OnClientClicking="<%#string.Format("confirmCallBackFn('{0}');",Eval("MeetingID")) %>"

to

OnClientClicking='<%#string.Format("confirmCallBackFn('{0}');",Eval("MeetingID")) %>'

Or remove your string.Format and use like this

OnClientClicking='<%# "confirmCallBackFn("+ Eval("MeetingID") + ");" %>'
like image 190
zey Avatar answered Sep 20 '22 12:09

zey


try OnClientClicking='<%# Eval("MeetingID", "confirmCallBackFn({0})") %>'

like image 31
Yosep Tito Avatar answered Sep 21 '22 12:09

Yosep Tito