Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
151 views
I am using the filter functionality of rad grid. I have made the filter case insensitive by adding following line in aspx page:-

<

GroupingSettings CaseSensitive="false" />

The filter is not case sensitive for every function in filter menu option like :- starts with, ends with, contains, etc.

However the filter is happening case sensitive just for the "equal to"  filter option.
Any idea why this is so? Is this intentional?
Waiting for your advice.......

 

Sebastian
Telerik team
 answered on 18 Dec 2008
1 answer
123 views
I've been able to databind to an xml file, but it's just displaying (and expanding) the node names...I'd like to display the Attributes instead...is that at all doable with the panelbar?

(sample)
<menu>
    <menuitem text="something" url="http://www.jujbjbjb.com" />
    <menuitem text="something2" url="http://www.jujbjbjb2.com" />
</menu>

Steve
Paul
Telerik team
 answered on 18 Dec 2008
1 answer
42 views

hi all..

I am using

RadControls for ASP.NET/RadGrid  now

i would like to use insted

RadControls for ASP.NET Ajax RadGrid

what should i do to do this Ugradation
?

with hope

Dimo
Telerik team
 answered on 18 Dec 2008
2 answers
170 views
Hi,

I have browsed tru the documentation but i cant find an example on this.
We have RadComboboxitem.Text different from RadComboxitem.Value. If i am using a ObjectDataSource to populate my ComboBox, how do i populate both the Text and Value? Can i use a genericListOf or a HashTable instead of collection/Arraylist so i can store a Pair of value.



Thanks,
Rgds,
Andy
andy
Top achievements
Rank 1
 answered on 18 Dec 2008
10 answers
404 views
I am trying to use the AjaxPanel in a simple page under SharePoint / WSS and the ajax request is turning into a standard postback.  I have used the same page in a regular asp.net page and it works fine.  I am not sure what I am doing wrong here but it seems like it should work.

I have made all the required changes to the web.config and installed asp.net ajax.  In fact, I can use other telerik controls that incorporate ajax without problem under sharepoint, e.g. RadTree, RadCombo, etc.

Thanks for any help!
Raman

--- Sample Page ---
<%@ Assembly Name="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Assembly Name="Microsoft.SharePoint.ApplicationPages, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

<%@ Page Language="C#" MasterPageFile="~/_layouts/application.master" %>

<%@ Register TagPrefix="wssuc" TagName="ToolBar" src="~/_controltemplates/ToolBar.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="ToolBarButton" src="~/_controltemplates/ToolBarButton.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="InputFormSection" src="~/_controltemplates/InputFormSection.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="InputFormControl" src="~/_controltemplates/InputFormControl.ascx" %>
<%@ Register TagPrefix="wssuc" TagName="ButtonSection" src="~/_controltemplates/ButtonSection.ascx" %>
<%@ Register TagPrefix="wssawc" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="wssap" Namespace="Microsoft.SharePoint.ApplicationPages" Assembly="Microsoft.SharePoint.ApplicationPages, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI, Version=2008.2.723.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" %>

<%@ Import Namespace="System" %>
<%@ Import Namespace="System.Collections.Generic" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Security" %>
<%@ Import Namespace="System.Web" %>
<%@ Import Namespace="System.Web.UI" %>
<%@ Import Namespace="System.Web.Security" %>
<%@ Import Namespace="System.Xml" %>
<%@ Import Namespace="Microsoft.SharePoint" %>
<%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
<%@ Import Namespace="Microsoft.SharePoint.Utilities" %>

<script language="c#" runat="server">
    protected void Button1_Click(object sender, EventArgs e)
    {
        TextBox1.Text = int.Parse(TextBox1.Text) - 1 + "";
    }


</script>

<asp:Content id="Content4" ContentPlaceHolderID="PlaceHolderLeftActions" runat="server">
</asp:Content>

<asp:Content ID="Content6" ContentPlaceHolderID="PlaceHolderMain" runat="server">

   <div>
   
        <telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
        </telerik:RadScriptManager>
   
    </div>
    <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" height="200px"
        width="300px">
        <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
        <asp:TextBox ID="TextBox1" runat="server" Text="0"></asp:TextBox>
    </telerik:RadAjaxPanel>

</asp:Content>
<asp:Content ID="Content1" ContentPlaceHolderID="PlaceHolderPageTitle" runat="server">
  <SharePoint:EncodedLiteral ID="titleArea1a" runat="server" text="SP Ajax Test" EncodeMethod='NoEncode'/>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea"
  runat="server">
  <SharePoint:EncodedLiteral ID="titleArea2a" runat="server" text="SP Ajax Test" EncodeMethod='NoEncode'/>
</asp:Content>

Rosen
Telerik team
 answered on 18 Dec 2008
7 answers
252 views
Hi. I am using the technique described in the demo to have a toggle (in my case a check box) that allows the user to hide the filter row.

This works just fine, but it always starts off visible. Is there a way to have it initially hidden?

Looking at this thread tempts me to set tableView.get_tableFilterRow().style.display = none, but I'd rather use a published API. I did put an OnGridCreated handler to turn off the row, but the user sees this happening and it fires every time a call back occurs.

Any ideas?

Thanks
Simon
Top achievements
Rank 2
 answered on 18 Dec 2008
1 answer
83 views
hi, i need to make a dropDown list into radeditor, but i need to get values from sql server... have any solution for that?
Rumen
Telerik team
 answered on 18 Dec 2008
3 answers
215 views
When I set a filter on a column, then attempt to "clear" it by deleting the current filter and hitting ENTER (we have it set up where ENTER kicks off the filtering), the filter reverts to it's previous value instead of resetting the filter and returning everything. This appears to be a new issue since we upgraded to Q3 2008.

Thanks!
Yavor
Telerik team
 answered on 18 Dec 2008
4 answers
194 views

Hello,

I have a menu that's acting up. When I open a radWindow over the top of the menu all is well. When I close the radWindow the menu items disappear.

A sample page can be found here: http://www.officeautomatedsystems.com/clientweb/oasys/

After the page renders, click on the "Contact Us" menu option. A radWindow will open on top of the page. Then click the upper right hand "x" to close the radWindow / form and you'll see the menu items have disappeared.

Please let me know if you have any ideas and thanks!

Dave

Atanas Korchev
Telerik team
 answered on 18 Dec 2008
2 answers
221 views
Hi,
I am using the technique described on this forum for throwing a RadAlert on the server. Namely:

Telerik.Web.UI.RadAjaxManager.GetCurrent(Me.Page)  
.ResponseScripts.Add("Sys.Application.add_load(function(){radalert('" & "Test" & "', 330, 210);})") 

This seems to work great as long as there is not a RadAjaxPanel on the page.

 
  
<form id="form1" runat="server">  
    <div> 
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
    </telerik:RadScriptManager> 
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">  
    </telerik:RadAjaxManager> 
    <telerik:RadWindowManager ID="RadWindowManager1" runat="server">  
    </telerik:RadWindowManager> 
        <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" Height="200px" Width="300px">  
            <asp:Button ID="Button1" runat="server" Text="Button" /> 
        </telerik:RadAjaxPanel> 
      
    </div> 
    </form> 

If I remove the RadAjaxPanel from the code above everything works great. If I have the panel, I have to click on the button and post back twice before the alert shows. Any help would be great!
Thanks ... Ed
Ed Staffin
Top achievements
Rank 1
 answered on 18 Dec 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?