Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
143 views
I have a page with 2 combo boxes, a button and a radGrid.
When the user enters the page, they must select a Client and a Course from the drop down lists.  After they selected from the drop downs, they click a button.
After the button click the radGrid is filled by code behind connected to stored procedures.

The user can then select a new client and/or a new course, and after clicking the button, the radGrid is supposed to requery the database with the stored procedure to give different results.

My problem is the radGrid is not changing.  The page reloads, but the grid is the same.

I have tried recalling the function that loads the dataset.
I have set radGrid.Datasource = null;

I have used ClearBeforeFill on the adapter, before I fill it with the typed dataset.
I also use Dispose() after I set teh DataSource for the radGrid.

Any help would be appreciated.
Daniel
Telerik team
 answered on 21 Oct 2008
2 answers
164 views
Hello,
        This is my second post with regards to the issue that I am facing with Hierarchical Grid. Sorry for reposting it, but I thought it would be better to explain my problem again with the sample code.

I have a hierarchical RadGrid, where both the parent and the child table records can be updated. The issue is with the "Edit Selected" button of the child table. When the user clicks on any page other than page 1 of the child table and then selects any item(s) for edit using "Edit Selected Items" command button, the records that are shown in edit mode are from page no. 1 and not the actual one that were selected. At the same time the individual "Edit" button for each record on the child control work fine. So I am not very sure why "Edit Selected" option is not working.

To demostrate my problem I have created a simple sample page and I am attaching the code for the same (This page doesn’t have the code to actually the update the records as I was just testing the “Edit Selected” option).

 

<form id="form1" runat="server">

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server" />

 

 

<telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">

 

 

<AjaxSettings>

 

 

<telerik:AjaxSetting AjaxControlID="RadGrid1">

 

 

<UpdatedControls>

 

 

<telerik:AjaxUpdatedControl ControlID="RadGrid1" />

 

 

</UpdatedControls>

 

 

</telerik:AjaxSetting>

 

 

</AjaxSettings>

 

 

</telerik:RadAjaxManager>

 

 

<div>

 

 

<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="None"

 

 

AutoGenerateEditColumn="true" AllowMultiRowEdit="true" AllowMultiRowSelection="true"

 

 

PagerStyle-Mode="NextPrevAndNumeric">

 

 

<MasterTableView AutoGenerateColumns="True" DataSourceID="SqlDataSource1" DataKeyNames="CategoryID"

 

 

Name="MasterTableView" CommandItemDisplay="Top" PageSize="3" AllowPaging="true">

 

 

<CommandItemTemplate>

 

 

<asp:LinkButton Style="vertical-align: bottom" ID="btnEditSelected1" runat="server"

 

 

CommandName="EditSelected" CausesValidation="false" Visible='<%# RadGrid1.EditIndexes.Count == 0 %>'><img style="border:0px;vertical-align:middle;" alt="" src="../Include/Images/Edit.gif" /> Edit Selected Records</asp:LinkButton>

 

 

<asp:LinkButton ID="btnCancel1" runat="server" CommandName="CancelAll" CausesValidation="false"

 

 

Visible='<%# (RadGrid1.EditIndexes.Count > 0 || RadGrid1.MasterTableView.IsItemInserted) %>'><img style="border:0px;vertical-align:middle;" alt="" src="../Include/Images/Cancel.gif" /> Cancel editing</asp:LinkButton>

 

 

</CommandItemTemplate>

 

 

<DetailTables>

 

 

<telerik:GridTableView DataKeyNames="CategoryID" AutoGenerateColumns="true" DataSourceID="SqlDataSource2"

 

 

CommandItemDisplay="Top" AllowPaging="true" PageSize="3">

 

 

<CommandItemTemplate>

 

 

<asp:LinkButton Style="vertical-align: bottom" ID="btnEditSelected" runat="server"

 

 

CommandName="EditSelected" CausesValidation="false" Visible='<%# RadGrid1.EditIndexes.Count == 0 %>'><img style="border:0px;vertical-align:middle;" alt="" src="../Include/Images/Edit.gif" /> Edit Selected Records</asp:LinkButton>

 

 

<asp:LinkButton ID="btnCancel" runat="server" CommandName="CancelAll" CausesValidation="false"

 

 

Visible='<%# (RadGrid1.EditIndexes.Count > 0 || RadGrid1.MasterTableView.IsItemInserted) %>'><img style="border:0px;vertical-align:middle;" alt="" src="../Include/Images/Cancel.gif" /> Cancel editing</asp:LinkButton>

 

 

</CommandItemTemplate>

 

 

<ParentTableRelation>

 

 

<telerik:GridRelationFields DetailKeyField="CategoryID" MasterKeyField="CategoryID" />

 

 

</ParentTableRelation>

 

 

</telerik:GridTableView>

 

 

</DetailTables>

 

 

</MasterTableView>

 

 

<ClientSettings>

 

 

<Selecting AllowRowSelect="true" />

 

 

</ClientSettings>

 

 

</telerik:RadGrid>

 

 

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"

 

 

SelectCommand="SELECT * FROM [Categories]"></asp:SqlDataSource>

 

 

<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"

 

 

SelectCommand="SELECT * FROM [Products] WHERE ([CategoryID] = @CategoryID)">

 

 

<SelectParameters>

 

 

<asp:Parameter Name="CategoryID" Type="Int32" />

 

 

</SelectParameters>

 

 

</asp:SqlDataSource>

 

 

</div>

 

 

</form>

 

Thank you for your time.

Best Regards,
Rajiv



Rajiv
Top achievements
Rank 1
 answered on 21 Oct 2008
1 answer
424 views
I am trying to disable the calendar icon used in the RadDatePicker. I used "EnableEmbeddedSkins="False" but all this did was give me a broken image icon. Is there another way or is this even possible?
Sebastian
Telerik team
 answered on 21 Oct 2008
0 answers
103 views

I have SQL Server 2005 (Standard Ver) installed on my Windows XP computer.  As this version does not allow attaching a new database file from the application code (as does the Express ver), apparently I need first to attach these databases manually and then use them. Here are my questions:

  1. There are nine (9) databases listed under the App_Data folder. Should I need to Attach all these databases to the SQL Server 2005 to successfully run the Sample application?
  2. I need to change the Connectionstrings in the Web.conf file as these are meant for the SQLExpress version. Can you provide me a modified Connectionstring that I can use with SQL Server 2005.
  3. Any other suggestion that you may like to provide to successfully run the Sample application from the standard version of SQL Server.

Tariq

Tariq
Top achievements
Rank 1
 asked on 21 Oct 2008
2 answers
93 views
Hi,

I have 2 new problems with the last DocumentManager and the new version. I use to return one path in one ItextControl working before this realease.

1/ When I select my document I not have anymore the returned path. But working before new Q2. No using Documents properties.

2/ I can Use Search Paterns like {"*.flv,*.wmf"}
dialogParameters1.SearchPatterns = new string[] { "*.*" };//{"*.avi,*.wmf,*.flv"};

Could you help me to fix the first point, Please.
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ImageNewsVideo.ascx.cs" Inherits="ImageCaller" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>   
 
 
    <script type="text/javascript">  
    var currentTextBoxID;    
          
    function ImageManagerFunction(sender, args)    
    {    
                 
        var selectedItem = args.SelectedItem;    
        var resultImageObject = args.Result;    
            
        var txt = $get(currentTextBoxID);    
        txt.value = selectedItem.getPath();  
          
    }            
    </script> 
 
    <asp:TextBox ID="LinkImage" runat="server"></asp:TextBox> 
    <telerik:dialogopener runat="server" id="DialogOpener1" >    
      
    </telerik:dialogopener> 
         
      
    <button onclick="currentTextBoxID='<%= LinkImage.ClientID %>';$find('<%= DialogOpener1.ClientID %>').open('DocumentManager');return false;">Select</button> 



protected void Page_Load(object sender, EventArgs e)  
    {  
 
       
                    // set the view path dinamically to this path  
                    FileManagerDialogParameters dialogParameters1 = new FileManagerDialogParameters();  
                    dialogParameters1.ViewPaths = new string[] { "~/contents/infoVideos/" };  
                    dialogParameters1.UploadPaths = new string[] { "~/contents/infoVideos/" };  
                    dialogParameters1.DeletePaths = new string[] { "~/contents/infoVideos/" };  
                    dialogParameters1.MaxUploadFileSize = 5000000;  
                    dialogParameters1.SearchPatterns = new string[] { "*.*" };//{"*.avi,*.wmf,*.flv"};  
                      
                    DialogDefinition DocumentManager = new DialogDefinition(typeof(DocumentManagerDialog), dialogParameters1);  
                    DocumentManager.ClientCallbackFunction = "DocumentManagerFunction";  
                    DocumentManager.Width = Unit.Pixel(694);  
                    DocumentManager.Height = Unit.Pixel(440);  
         
                    DialogOpener1.DialogDefinitions.Add("DocumentManager", DocumentManager);  
                 
      
         
      
    } 
Rumen
Telerik team
 answered on 21 Oct 2008
1 answer
113 views
Hi,

While checking the RadGrid Context menu, i have a scenario wherein

i show different context menu, based on the click in a cell. based on its content.

So if is a Address which is in Address column, i give a link to Google maps and so on.

The problem is i allow to hide columns. When a column is hidden, the column number i get is as per what is displayed, rather than the virtual column number(which would factor in the hidden columns).

How can i get around this.

function

 

RowContextMenu(sender, eventArgs)

 

{

 

var cellIndex = eventArgs.get_domEvent().target.cellIndex;

 

 

var colName = eventArgs.get_tableView().get_columns()[cellIndex].get_uniqueName();

 

So in the above i get the physical cell index rather than the one which factors that there are hidden columns before that. Is there anyway around this.

Regards,
Santosh
Santosh
Top achievements
Rank 1
 answered on 21 Oct 2008
2 answers
250 views
Hi,

I have a RADGrid which I am binding to a datatable on a button click, this works fine the first time i call Databind but if my user selects a different datatable and clicks the button again, on this second call of Databind the web page seems to freeze up, i.e the mouse pointer changes to the egg timer and the page does not finish loading.

I have also tried using Rebind but the same thing happens.

Thanks
Mike Eaton
Top achievements
Rank 1
 answered on 21 Oct 2008
2 answers
250 views
Solved


Not sure why I'm having so much trouble.

I have  radToolbar, which I've follow the steps to create my own custom button that calls the radwindow of my choice. This window loads up a dialog window with a textbox and an OK, cancel button.

On "Ok" I want to perform an operation and then close the dialog window and reload the parent.
On cancel I just want to close the window.


I can get the window to show, but that's it.  I can't get the window to close, I think the parent is refreshing just haven't been able to confirm yet.

I can't figure out how to
a) send the dialog window some variables, like userid
b) get the dialog to run code-behind then close
c) refresh parent window


On my dialog page I have this script..

<script type="text/javascript" language="javascript"
        function GetRadWindow() 
        { 
            var oWindow = null
            if (window.radWindow) 
                oWindow = window.radWindow; 
            else if (window.frameElement.radWindow) 
                oWindow = window.frameElement.radWindow; 
            return oWindow; 
        }   
         
         
        function cancelWindow() 
        { 
            var oWindow = GetRadWindow(); 
            oWindow.argument = null
            oWindow.close(); 
        } 
     
        function closeClientCallBack() 
        { 
            var currentWindow = GetRadWindow(); 
            var Input = document.getElementById("ddlDocument"); 
            currentWindow.argument = null
            currentWindow.close(Input.value); 
            RefreshParentPage(); 
        } 
         
        function clientClose() 
        { 
            var currentWindow = GetRadWindow(); 
            var Input = document.getElementById("ddlDocument"); 
            currentWindow.argument = Input.innerText; 
            currentWindow.close(); 
            RefreshParentPage(); 
        }  
     
        function RefreshParentPage() 
        { 
            GetRadWindow().BrowserWindow.location.href = GetRadWindow().BrowserWindow.location.href; 
        } 
 
    </script> 

and then the buttons:

<asp:Button  
            ID="btnOpenDocument"  
            runat="server"  
            OnClientClick="closeClientCallBack();return false;" 
            AlternateText="Open Document"  
            Text="Open"
        </asp:Button> 
        <asp:Button  
            ID="btnCancelOpenDocument" 
            runat="server" 
            OnClientClick="cancelWindow();return false;" 
            Text="Cancel"
        </asp:Button> 



Tervel
Telerik team
 answered on 21 Oct 2008
1 answer
131 views
Hi:
On my webpage i have 2 grids and one button sitting in a content page. I update grid 1 and grid 2 on button click. I want to be able to make this seamless for the user. Right now, when the grids refresh, there is no loading panel showing up. I have added an Ajax Panel and AjaxManager and both dont seem to help. I have a feeling I am doing something wrong. Can you please look at the code and see hat might be wrong?
thanks
Sid


<

 

asp:Label ID="LblContactID" runat="server" Visible="False"></asp:Label><asp:Label ID="LblError" runat="server"></asp:Label><br />

 

<

 

asp:Panel ID="Panel1" runat="server" Width="100%" GroupingText="Customer Account List">

 

 

<radA:AjaxLoadingPanel ID="AjaxLoadingCustAccts" runat="server" Height="75px" Width="75px">

 

 

<asp:Image ID="Image2" runat="server" AlternateText="Loading..." ImageUrl="~/RadControls/Ajax/Skins/Default/Loading.gif" />

 

 

</radA:AjaxLoadingPanel>

 

<

 

radG:RadGrid ID="GrdCustomerList" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" EnableAJAX="True" Skin="Green" Width="600px" EnableAJAXLoadingTemplate="True" GridLines="None" Title="Available Customer Accounts">

 

 

<MasterTableView DataKeyNames="ID" GridLines="Both" BorderColor="Black" Caption="Available Customer Accounts">

 

 

<Columns>

 

 

<radG:GridButtonColumn ButtonType="PushButton" CommandName="Select" HeaderText="Set Default"

 

 

Text="&gt;&gt;" UniqueName="column" ImageUrl="~/Images/eNora2/SetDefault.gif">

 

 

<HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="True" HorizontalAlign="Center" Width="75px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" />

 

 

</radG:GridButtonColumn>

 

 

<radG:GridBoundColumn DataField="ID" HeaderText="Account GUID" UniqueName="Account GUID" Visible="False">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridTemplateColumn HeaderText="Select" UniqueName="Select">

 

 

<ItemTemplate>

 

 

<asp:CheckBox ID="CbxSelect" runat="server" />

 

 

</ItemTemplate>

 

 

<HeaderStyle Font-Bold="True" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="True" HorizontalAlign="Center" Width="50px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" />

 

 

<HeaderTemplate>

 

 

<strong><span style="font-size: 10pt; font-family: Arial">Select<br />

 

 

</span></strong>

 

 

<input id="btnCheckAll" style="width: 74px; height: 23px" type="button" value="Select All" language="javascript" onclick="return btnCheckAll_onclick()" />

 

 

</HeaderTemplate>

 

 

</radG:GridTemplateColumn>

 

 

<radG:GridBoundColumn HeaderText="Account Name" UniqueName="Branch" DataField="Branch">

 

 

<HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Width="150px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" />

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="Division" UniqueName="CBU" DataField="CBU">

 

 

<HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Width="75px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" />

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="Brand" UniqueName="Brand" DataField="Brand">

 

 

<HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Width="75px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" />

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="City" UniqueName="City" DataField="City">

 

 

<HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Width="75px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" />

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="State" UniqueName="State" DataField="State">

 

 

<HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Width="60px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" Width="30px" />

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn DataField="Zip" HeaderText="Zip" UniqueName="Zip">

 

 

<HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Width="75px" Wrap="True" />

 

 

<ItemStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False"

 

 

Font-Underline="False" HorizontalAlign="Center" Wrap="True" Width="40px" />

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn DataField="BrandId" HeaderText="BrandID" UniqueName="BrandId" Visible="False">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn DataField="CbuId" HeaderText="CbuId" UniqueName="CbuId" Visible="False">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn DataField="BranchId" HeaderText="BranchId" UniqueName="BranchId" Visible="False">

 

 

</radG:GridBoundColumn>

 

 

</Columns>

 

 

<ExpandCollapseColumn Visible="False">

 

 

<HeaderStyle Width="19px" />

 

 

</ExpandCollapseColumn>

 

 

<RowIndicatorColumn Visible="False">

 

 

<HeaderStyle Width="20px" />

 

 

</RowIndicatorColumn>

 

 

<PagerStyle Mode="NextPrevAndNumeric" />

 

 

</MasterTableView>

 

 

<SelectedItemStyle BackColor="DarkGray" BorderStyle="Ridge" BorderWidth="1px" ForeColor="Red" Font-Bold="True" />

 

 

<PagerStyle ForeColor="White" />

 

</

 

radG:RadGrid></asp:Panel>

 

 

<asp:Button ID="BtnAddSelected" runat="server" Text="Add Selected Accounts" /><br />

 

<

 

asp:Panel ID="Panel2" runat="server" Width="100%" GroupingText="Selected Account List"><table Width="600">

 

 

<tr>

 

 

<td style="height: 21px; text-align: right" colspan="5">

 

User Accounts Per Page:

<asp:DropDownList ID="ddlAccountCount" runat="server" AutoPostBack="True">

 

 

<asp:ListItem>10</asp:ListItem>

 

 

<asp:ListItem Selected="True">25</asp:ListItem>

 

 

<asp:ListItem>50</asp:ListItem>

 

 

<asp:ListItem>100</asp:ListItem>

 

 

<asp:ListItem>All</asp:ListItem>

 

 

</asp:DropDownList></td>

 

 

</tr>

 

</

 

table>

 

 

<radA:AjaxLoadingPanel ID="AjaxLoadingSelectedAccts" runat="server" Height="75px"

 

 

Width="75px">

 

 

<asp:Image ID="Image1" runat="server" AlternateText="Loading..." ImageUrl="~/RadControls/Ajax/Skins/Default/Loading.gif" />

 

 

</radA:AjaxLoadingPanel>

 

<

 

radG:RadGrid ID="GrdSelectedCustomers" runat="server" AutoGenerateColumns="False"

 

 

Description="Selected Customer Accounts" Title="Selected Customer Accounts" Width="600px" EnableAJAX="True" GridLines="None" AllowPaging="True" EnableAJAXLoadingTemplate="True" Skin="Green">

 

 

<MasterTableView Caption="Selected Customer Account" DataKeyNames="ID">

 

 

<RowIndicatorColumn Visible="False">

 

 

<HeaderStyle Width="20px" />

 

 

</RowIndicatorColumn>

 

 

<ExpandCollapseColumn Visible="False">

 

 

<HeaderStyle Width="19px" />

 

 

</ExpandCollapseColumn>

 

 

<Columns>

 

 

<radG:GridButtonColumn ButtonType="PushButton" CommandName="Select" HeaderText="Set Default"

 

 

Text=" &gt;&gt; " UniqueName="column">

 

 

</radG:GridButtonColumn>

 

 

<radG:GridBoundColumn HeaderText="Account GUID" UniqueName="Account GUID" DataField="ID" Visible="False">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="Account Name" UniqueName="column" DataField="Branch">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="Division" UniqueName="column" DataField="CBU">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="Brand" UniqueName="column" DataField="Brand">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="City" UniqueName="column" DataField="City">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="State" UniqueName="column" DataField="State">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridBoundColumn HeaderText="Zip" UniqueName="column" DataField="Zip">

 

 

</radG:GridBoundColumn>

 

 

<radG:GridButtonColumn ButtonType="PushButton" CommandName="Delete" HeaderText="Remove"

 

 

Text=" X " UniqueName="column">

 

 

</radG:GridButtonColumn>

 

 

</Columns>

 

 

</MasterTableView>

 

</

 

radG:RadGrid></asp:Panel>

 

<

 

radA:RadAjaxManager ID="RadAjaxManager1" runat="server">

 

 

<AjaxSettings>

 

 

<radA:AjaxSetting AjaxControlID="BtnAddSelected">

 

 

<UpdatedControls>

 

 

<radA:AjaxUpdatedControl ControlID="Panel1" LoadingPanelID="AjaxLoadingCustAccts" />

 

 

<radA:AjaxUpdatedControl ControlID="Panel2" LoadingPanelID="AjaxLoadingSelectedAccts" />

 

 

</UpdatedControls>

 

 

</radA:AjaxSetting>

 

 

</AjaxSettings>

 

</

 

radA:RadAjaxManager>

 

Iana Tsolova
Telerik team
 answered on 21 Oct 2008
3 answers
84 views
for some reason my HTML is being randomly changed inside a RADPageView control.  For no apparent reason I suddenly get a whole load of &nbsp added.  Heres what was just created

<telerik:RadTabStrip ID="RadTabStrip1" SelectedIndex="0" runat="server"   
                        MultiPageID="RadMultiPage1" Skin="WebBlue" CausesValidation="False"  > 
                     <Tabs> 
                       <telerik:RadTab runat="server" Text="Notes" PageViewID="PageView1"   
                             Selected="True">  
                       </telerik:RadTab> 
                       <telerik:RadTab runat="server" Text="Rider" PageViewID="PageView2" > 
                       </telerik:RadTab> 
                       <telerik:RadTab runat="server" Text="Biography" PageViewID="PageView3" > 
                       </telerik:RadTab> 
                     </Tabs> 
                    </telerik:RadTabStrip> 
                    <telerik:RadMultiPage id="RadMultiPage1" runat="server" SelectedIndex="1">  
                      <telerik:RadPageView id="Pageview1" runat="server">  
                            
 
                            
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
                            
 
                          <rad:RadTextBox ID="RadTextBoxArtistNotes" runat="server" Height="410px"   
                              Skin="Web20" Width="550px"></rad:RadTextBox> 
                            
 
                            
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
                            
 
                      </telerik:RadPageView> 
                      <telerik:RadPageView id="Pageview2" runat="server">  
                            
 
                            
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
                            
 
                          <rad:RadTextBox ID="RadTextBoxArtistRider" runat="server" Height="410px"   
                              Skin="Web20" Width="550px"></rad:RadTextBox> 
                            
 
                            
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
                            
 
                      </telerik:RadPageView> 
                      <telerik:RadPageView id="RadPageView3" runat="server">  
                            
                            
 
                            
 
                            
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
                          <telerik:RadEditor ID="RadEditorBiography" Runat="server" Skin="Web20"   
                              ToolsFile="ArtistToolsFile.xml" Width="550px">  
                              <content> 
</content></telerik:RadEditor> 
                            
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   
                            
 
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
                            
 
 
                      </telerik:RadPageView> 
                    </telerik:RadMultiPage> 
 this is weird, has anyone else experienced something like it before ?
Dimo
Telerik team
 answered on 21 Oct 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?