I use Master Content Page relation in my application
I have My Menus (RadPanelBar a telerik Control) in my Master Page. On Click of Menu item in master page i do couple of mandatory process that are used in the page to be navigated.
scenario :
1.) I'm in a page say Accounts.aspx (which is a content page inside a master)
2.) I click on Finance menu item (Which is located in Master page)
3.) Page Load of Accounts gets fired immediately which is unnecessary to the page i navigate.
4.) Is there any way to avoid this Accounts.aspx page load and fire the menu item click event located in master page.
If i come to know that which menu item i have clicked before the page load of Accounts i will be able to avoid that unnecessary method execution in that page load. So that i will be able to avoid the seconds consumed for unncessary pageload method execution. And eventually navigate to the desired page.
This is something playing with Asp.net Lifecycle.
I have built a RadEditor .cs class that i drop onto pages that require the editor tool.
Following is a part of the class where i create a custom button.
How do I add an icon/image to the button within the cs class.
Icon currently default to a question mark.
is the only way to do tihs within CSS.
public class Editor: RadEditor
{
public Editor()
{
EditorToolGroup etg = new EditorToolGroup();
EditorTool
Custom = new EditorTool();
etg.Tools.Add(Custom);
}
}
Hi,
I just noticed that when clicking on the OK button, the dialog form height shrinks a little.
You can see this behavior on the example provided at:
http://demos.telerik.com/aspnet-ajax/window/examples/browserdialogboxes/defaultcs.aspx
1. Click on "radalert dialog" button. The radalert is displayed.
2. Click "OK" on the dialog, but do not release the mouse button. You'll observe the behavior.
3. If you release the mouse button outside the "OK" button and repeat the steps, it does not keep shrinking.
Thanks,
Teo
Hi,
I am having issues when a user clicks outside the RadWindow and then presses ESC. This closes the window and it is happening on IE 7/ IE 8 and FF 3.5.
I found this post: http://www.telerik.com/community/forums/aspnet-ajax/window/radwindow-issues-in-firefox-3-0-5.aspx
Which kind of help me but it does not work on FF since there is no access to window.event:
| <script type="text/javascript"> |
| TelerikTelerik.Web.UI.RadWindow.prototype.old_close = Telerik.Web.UI.RadWindow.prototype.close; // Store the original function |
| Telerik.Web.UI.RadWindow.prototype.close = function(e) |
| { |
| //Override close |
| var ESC = 27; // ESC Key code is 27 |
| if (window.event && window.event.keyCode == ESC) |
| { |
| return true; |
| } |
| else this.old_close(); // Call original function |
| } |
| </script> |
Should there be a property allowing to configure this behavior?
Any help would be appreciated.
Thanks.