| <%@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title>Untitled Page</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="ScriptManager1" runat="server" EnableTheming="True"> |
| </telerik:RadScriptManager> |
| <div> |
| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Behavior="Default" |
| InitialBehavior="None" Left="" Skin="Vista" Top=""> |
| </telerik:RadWindowManager> |
| <script language="javascript" type="text/javascript"> |
| radconfirm('Hello', test, 330, 100); |
| function test(arg) { |
| alert('test' + arg); |
| } |
| </script> |
| </div> |
| </form> |
| </body> |
| </html> |
| var _e=_d._getStandardPopup("confirm",_7); |
(line 4197)
I've used this method before with the older RadControls, but it does not seem to work with 2008 (Version: 2008.1.619.20).
Does anyone have any suggestions? It is sort of critital that I resolve this quickly, as deadlines are looming.
Thanks in advance,
Alex Tushinsky
chart.Appearance.Dimensions.Width = 900;
chart.Appearance.Dimensions.Height = 100;
Now for some reason, there is a huge white space between the bottom of the first chart on the doc and the one after it. And this behavior is repeated from one chart to the other. How do i rectify this and close the white space between the charts so that the charts will be stacked on to of each other.
Please let me know how i could send u a screen shot incase this is not clear and u need a vitual material. thanks.
The following example with the Default tools file shows some of the advanced paste options in a vertical list
(Paste, Paste from word, Paste from Word, Strip Font, Paste Plain Text, Paste As Html)
Can someone suggest how to declare this button in the tools file.
http://www.telerik.com/DEMOS/ASPNET/Prometheus/Editor/Examples/Default/DefaultCS.aspx
FYI: Hyperlink Manager not functioning properly on forum submit editor control

| <telerik:RadGrid ID="RadGrid2" |
| OnNeedDataSource="RadGrid2_NeedDataSource" |
| OnItemCommand="Lead_Click" |
| Skin="Mac" |
| Width="97%" |
| AllowSorting="True" |
| PageSize="30" |
| AllowPaging="True" |
| runat="server" |
| Gridlines="None"> |
| <MasterTableView Width="100%" Summary="RadGrid table" DataKeyNames="Link_ID" AutoGenerateColumns="false"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="Company_Name" HeaderText="Company Name"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="City" HeaderText="City"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="State" HeaderText="State"></telerik:GridBoundColumn> |
| <telerik:GridTemplateColumn UniqueName="StageTemplate" HeaderText="Stage"> |
| <ItemTemplate> |
| <telerik:RadComboBox ID="Stage" runat="server" DataValueField="Stage_Definition" Skin="Office2007" OnInit="ddStageBound" OnSelectedIndexChanged="buttonChangeLead_Click" AutoPostBack="true"> |
| <Items> |
| <telerik:RadComboBoxItem Value="1" Text="Pre-Approach" /> |
| <telerik:RadComboBoxItem Value="2" Text="Approach" /> |
| <telerik:RadComboBoxItem Value="3" Text="Presentation" /> |
| <telerik:RadComboBoxItem Value="4" Text="Close" /> |
| <telerik:RadComboBoxItem Value="5" Text="Completed" /> |
| </Items> |
| </telerik:RadComboBox> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| </Columns> |
| </MasterTableView> |
| <PagerStyle Mode="NextPrevAndNumeric" /> |
| <ClientSettings |
| EnablePostBackOnRowClick="true" |
| AllowColumnsReorder="true" |
| ReorderColumnsOnClient="true" |
| EnableRowHoverStyle="true" > |
| <Selecting AllowRowSelect="true" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
| protected void buttonChangeLead_Click(object source, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e) |
| { |
| string StageID = e.Value; |
| //Need the parent grids datakeynames "Link_ID" of the row that i changed |
| } |