I have a JQuery UI Dialog which I have put an ASP.NET Repeater and it contains delete and Show Buttons on, I need to be able to call a server side OnClick event from this, but it is never called.
any one help me
I have a JQuery UI Dialog which I have put an ASP.NET Repeater and it contains delete and Show Buttons on, I need to be able to call a server side OnClick event from this, but it is never called.
any one help me
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Naresh Babu GopavaramPosted Sep 12, 2011, 6:35 AM
Naresh Babu GopavaramPosted Sep 12, 2011, 5:34 AM
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="Ajax" %>
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
AlternateText="Delete" Width="14" Height="14" OnClick="ibtnTaskDelete_Click" />
AlternateText="Reply" Width="14" Height="14" OnClick="ibtnTaskReply_Click" />
AlternateText="Reminder" Width="14" Height="14" OnClick="ibtnTaskReminder_Click" />
Assigned Too
Start Date
DueDate
ErrorMessage="StratDate cannot be less than Today." Operator="GreaterThanEqual"
Type="Date">
ValidationExpression="^(((0?[1-9]|1[012])/(0?[1-9]|1\d|2[0-8])|(0?[13456789]|1[012])/(29|30)|(0?[13578]|1[02])/31)/(19|[2-9]\d)\d{2}|0?2/29/((19|[2-9]\d)(0[48]|[2468][048]|[13579][26])|(([2468][048]|[3579][26])00)))$">
ErrorMessage="Due Date can not be less than Start Date"
Operator="GreaterThanEqual" Type="Date">
ErrorMessage="Date Should be in mm/dd/yyyy Format"
ValidationExpression="^(((0?[1-9]|1[012])/(0?[1-9]|1\d|2[0-8])|(0?[13456789]|1[012])/(29|30)|(0?[13578]|1[02])/31)/(19|[2-9]\d)\d{2}|0?2/29/((19|[2-9]\d)(0[48]|[2468][048]|[13579][26])|(([2468][048]|[3579][26])00)))$">
Description
Priority::
Status:
% Complete
ErrorMessage="Please enter the complete percentage, 0 if it is new."
ValidationGroup="ValidateTask" >
CommandName="Deletes" Text="Delete" />
Type="Date" Operator="GreaterThanEqual" >
Putting Above UC in the Following Window
In the above code the Image buttons in Repeater are Not Firing
Amit ChoudharyPosted Sep 12, 2011, 2:43 AM