
| <script type="text/javascript"> |
| function PageLoad() |
| { |
| var menu = $find("<%= MasterMenuInner.ClientID %>"); |
| menu.add_itemClicking(MenuItemClicking); |
| } |
| </script> |
| function MenuItemClickingConfirmDelete(sender, args) |
| { |
| var itemValue = args.get_item().get_value(); |
| if (itemValue == 'Delete') |
| { |
| if (confirm('Delete this invoice?')) |
| { |
| args.set_cancel(true); |
| } |
| } |
| } |
| function InvoiceListPageLoad() |
| { |
| var menu = $find("<%= Master.MasterMenu.ClientID %>"); |
| if (menu) |
| { |
| menu.add_itemClicking(MenuItemClickingConfirmDelete); |
| } |
| else |
| { |
| alert("<%= Master.MasterMenu.ClientID %> not found!"); |
| } |
| } |
| Server Error in '/NET2' Application. |
| Input string was not in a correct format. |
| Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. |
| Exception Details: System.FormatException: Input string was not in a correct format. |
| Source Error: |
| An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
| Stack Trace: |
| [FormatException: Input string was not in a correct format.] |
| System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +2755599 |
| System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) +112 |
| System.Web.UI.WebControls.ImageButton.LoadPostData(String postDataKey, NameValueCollection postCollection) +138 |
| System.Web.UI.WebControls.ImageButton.System.Web.UI.IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) +12 |
| System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad) +661 |
| System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1194 |
| Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433 |
<
telerik:GridButtonColumn ButtonType="ImageButton" CommandName="Delete" Text="Supprimer la donn‚e" ConfirmText="D‚sirez-vous supprimer cette donnee ?" ConfirmDialogType="RadWindow" UniqueName="DeleteColumn" ImageUrl="../RadControls/Grid/Skins/Outlook/Delete.Gif">
<HeaderStyle Width="20px" />
<ItemStyle HorizontalAlign="Center" />
</telerik:GridButtonColumn>
In this grid I append dynamic column. when I click Delete button, I don't have confirm dialogbox. Do you know why ?
Hi,
I have TabStrip with three tabs. When users click on the submit button, I have java script, it will validate all the controls of each tab with in the tabstrip. If anyone of the control does not enter the value my java scrip will popup the alert message.
What I am looking here is, after the pop-up this message it should set the focus to that particular control. I have all RadtextBoxes and Radcombo boxes with in the tabs. Please send me the javascript snippet which should set focus to control (RadTextBox or Radcombo) under the specific tab
Thanks,
Sravan
I'm recreating your example on using the Radtolltip in the Scheduler, however in a DNN module. Has anyone succeeded with it? If you try it one to one there are 2 problems I encounter:
a) There is an error that the module couldn't load totally. However, the schedule shows.
b) Dim toolTip As AppointmentToolTip ...Will not be recognised as defined.
Should anyone have tried this and succeeded - I'd be thankful for info's on how you did it.
Karl
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|