Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
157 views
Hi i have this situation where i can't seem to get the back to the way the original ajax was implemented.

previously, when i ajaxed a panel, the panel didn't ajax itself. Now with the new ASP.NET AJAX, the panel does ajax itself. I read several articles that this is the natural behaviour since an ajaxified panel was wrapped around the panel that i set to ajax.  However, this is my scenario...

I have a panel A with three buttons. I also have another panel B with a radstrip and multipage with a lot of pageviews where each pageview  has many other asp.net controls. Now if i tell panel A to ajax panel B, panel B ajaxifies itself.
I dont want this behavior because let's say i click a button in a pageview, the whole panel B is updated.  Since i have a lot of grids and formviews, i don't want the whole panel to be updated. what i want is to click a button in a pageview and have only the grid that specify to be updated. Is there anyway around this?

Kevin

Kevin Babcock
Top achievements
Rank 1
 answered on 27 Aug 2008
1 answer
321 views
Hi,

I need some help to remplace the telerik.Web.SessionDS by my Sitefinity.mdf. Could you found some steps how to remplace.
I make one hierarchical grid sample that use this resource not found in bin or telerik.Q1-2008

Regards
Pierre
Top achievements
Rank 1
 answered on 27 Aug 2008
4 answers
248 views
Hi.
I made a quick demo up just to be sure this was indeed the case.
Build a new site in VS2005 or whatever.
  • Add master.masterpage
  • Add RadScriptManager ,register Dll , and formdecorator to masterpage.
  • Create default.aspx with master.masterpage
  • Add Radgrid with the following markup (below)
  • connect it to a source to populate

If it works the way mine is, the rows will select, but the checkboxes won't 'check'. if you delete the formdecorator from masterpage, then the boxes magically check again. This does not occur if the form decorator is within the same aspx page. ... why and how to work around please?

aspx code:

 <telerik:RadGrid ID="RadGrid1"  DataSourceID="SqlDataSource1"   
     AllowMultiRowSelection="True"     runat="server" AllowSorting="True" GridLines="None" Width="95%"  AllowAutomaticDeletes="True">  
        <MasterTableView DataSourceID="SqlDataSource1">  
        <Columns> 
            <telerik:GridClientSelectColumn Text="test" UniqueName="ClientSelectColumn" /> 
            </Columns> 
            <RowIndicatorColumn Visible="False">  
                <HeaderStyle Width="20px" /> 
            </RowIndicatorColumn> 
            <ExpandCollapseColumn Resizable="False" Visible="False">  
                <HeaderStyle Width="20px" /> 
            </ExpandCollapseColumn> 
            <EditFormSettings> 
                <PopUpSettings ScrollBars="None" /> 
            </EditFormSettings> 
              
        </MasterTableView> 
         <ClientSettings> 
                <Selecting AllowRowSelect="True"></Selecting> 
            </ClientSettings> 
    </telerik:RadGrid><asp:SqlDataSource ID="SqlDataSource1" /> 

mastepage code:

<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head runat="server">  
    <title>Untitled Page</title> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <div> 
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
        </telerik:RadScriptManager> 
        <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" Skin="Office2007" /> 
        <br /> 
        <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">  
        </asp:contentplaceholder> 
    </div> 
    </form> 
</body> 
</html> 
 


Michelle
Top achievements
Rank 1
 answered on 27 Aug 2008
1 answer
62 views
How can I count the number of all expanded heirarchy rows? Whats the best approach of doing this, thanks
Daniel
Telerik team
 answered on 27 Aug 2008
1 answer
54 views
every time the page do a post back the whre the control should be i get only one
comentar of "<!-- 2008.2.723.35 -->" this happens aways when the page do a postback i´m using rad tooltipmanager
Sophy
Telerik team
 answered on 27 Aug 2008
2 answers
108 views
Hi,

Currently when I create an  anchor link in the WYSIWYG get mode, there is no icon to indicate the existence of an anchor. Content Editors are often not able to visualize the anchors available within a page.

another editor has nice implementation where by small anchor icon appear in the space where anchor text appear. If you need a screenshot, I am able to provide.

This has been a major feedback from my CMS clients. 
sunburnsam
Top achievements
Rank 1
 answered on 27 Aug 2008
3 answers
215 views
I tried the following example.
http://www.telerik.com/community/code-library/submission/b311D-mdkhb.aspx
It worked when I first tried it.  When I installed the latest release ( 2nd qtr 2008), it stopped working.
Sebastian
Telerik team
 answered on 27 Aug 2008
0 answers
96 views
Hi,

We have license copy of your product of terelik RadControls for ASP.NET.

I need a Menu that display Customers in one list and depending on that customer selected need to display related sub records(Accounts) of that customer into other list. 
 
Suppose I have list of customers and Accounts in SQL Server 2005 database and in BreadScrumb menu i need to display all the customers in one tab with heading "Customers" and after selecting perticular Customer suppose "customer1" the related customer1 accounts should be displayed in the other tab unders heading "Accounts".

If customer2 is selected then related accounts of this customers should be displayed into Accounts tab.

Since the code present on this site is for static items for each tab. Please help me for how to display dynamic item on other tab depending on the selection of item of first tab.

Please also mail me at baldev.saband@gmail.com


Thanks
Baldev Singh
Baldev
Top achievements
Rank 1
 asked on 27 Aug 2008
3 answers
135 views

Hi,

I have a column in my grid, here is the code:

<radG:GridBoundColumn
   DataField="Title.Description"
   HeaderText="Title"
   UniqueName="Title.Description">
</radG:GridBoundColumn>

The problem that I am having is the following..

  1. When the Insert new record link is clicked, this title field must become a dropdownlist with all the titles populated.
  2. When the Edit link is clicked, this title field must become a dropdownlist with all the titles populated, and the current title must be selected in the drop down.

Please can some one help me, I have been through the forums and can't find something suitable.

Thanks
Brendan

Daniel
Telerik team
 answered on 27 Aug 2008
4 answers
184 views
Hi,
  I am using GridClientSelectColumn to let the user select a row in my grid.

AllowMultiRowSelection is set to false, because I don't want user to select multiple rows.

  My question is after a row is selected, is there a way to de-select the row?  I noticed use can uncheck a selected row if AllowMultiRowSelection is set to true, but it doesn't work if AllowMultiRowSelection  is false.  The user should be click on a checked checkbox again to uncheck it.

  I am still check your forum to find a solution and it will be great if you can give me a quick solution.

thanks.
Adam Cole
Top achievements
Rank 1
 answered on 27 Aug 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?