Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
109 views
This seems to be a global issue in the grids - my image buttons in item templates as well as the built in command buttons have stopped showing the hand cursor when hovering over them.

Thanks,
Nick H
Sebastian
Telerik team
 answered on 24 Mar 2009
5 answers
240 views
I have a gridTemplateColumn that binds to two fileds like below:

<

telerik:GridTemplateColumn HeaderText="Employer/Title" UniqueName="Employer" HeaderStyle-Width="14%"

 

 

 DataField="Employer" CurrentFilterFunction="StartsWith"

 

 

AutoPostBackOnFilter="true">

 

 

<ItemTemplate>

 

 

<b>

 

<%

# Eval("Employer")%></b>

 

 

<br />

 

<%

# Eval("JobTitle")%>&nbsp;

 

 

</ItemTemplate>

 

 

</telerik:GridTemplateColumn>

 


I want the user to be able to search on any of the fields. Like if the user enters 'a' then the filter should look for all the rows which have Employer or JobTitle starting with 'a'.

I cannot specify two values in the datafield.

Is it possible to acieve this functionality?

Sebastian
Telerik team
 answered on 24 Mar 2009
5 answers
139 views
Hi, 

    I have a problem with RadNumericTextBox. I use RNTB in an item template of a detail table with the initial value of 0. When the user starts to input values, the '0' does not disappear. In other words, when RTNB gets focus, its text does not get selected. The SelectionOnFocus property set to SelectAll in the aspx. I even give the property in ItemCreated event but the problem does not changed. I tried to do it OnFocus client side event with "sender.SelectAllText()"  but it didn't solve my problem either.
 The strange thing is that when i use RadTextBox instead of RNTB the SelectionOnFocus property works quite well. I can use RTB with a custom Validator, but then what will be the benefit of RNTB.
 Any help would be appreciated. Thanks.

Umut YILDIRIM    
BNB Consulting
Daniel
Telerik team
 answered on 24 Mar 2009
1 answer
83 views
HI Team,

I have RadSkinManager in Parent page, User can change the skin dynamically....for now the changed skin got applying only for  parent page controls.How can i get same skin for the chid page controls(without passing querystring) ?.

Thanks,
satish.
Sebastian
Telerik team
 answered on 24 Mar 2009
2 answers
181 views
Hello!

How can I make collapsing / expanding group by clicking on group name (client side)?

For example:
http://demos.telerik.com/aspnet-ajax/grid/examples/groupby/grouploadmodeclient/defaultcs.aspx

When I click on "Country: Argentina" group should collapse.

Thanks
GrZeCh
Top achievements
Rank 2
 answered on 24 Mar 2009
4 answers
255 views
Hi

I want to print the Month View of the RAD Schedular..The Month view is a
long one.

So when I am trying to print it with window.print(), only the visible page is getting printed but not the whole Sechedular..

Is there any way to print the whole Schedular...

Thanks in Advance
Archan
illumination
Top achievements
Rank 2
 answered on 24 Mar 2009
6 answers
219 views
I have a RadProgressArea inside a grid.

For each item in the grid , i need to show the RadprogressArea.

Progress should be updated every second. Values are going to be based on a dataSource
What need to be done to have the RadprogressArea updated every second.

Can i have a sample code for it.

I saw in the demo and some other samples that RadprogressArea has two ProcessBar to show the status. Is there a way to have just one progress bar to display the progress status.


Sebastian
Telerik team
 answered on 24 Mar 2009
1 answer
88 views

Posted 0 minutes ago (permalink)

My page has an xml component inside a RadAjaxPanel, as below:

 

<telerik:RadAjaxPanel ID="XmlViewPanel" runat="server" Height="200px" Width="300px">

 

 

 

<asp:Xml ID="xmlView" runat="server"></asp:Xml>

 

 

 

</telerik:RadAjaxPanel>

I also have a RadTreeView that uses LoadOnDemand (TreeNodeExpandMode.ServerSideCallBack) and when the clicks a treeview node that has no children, some xml is loaded into the component, as below:

 

 

xmlView.DocumentContent = "<?xml version=\"1.0\" encoding=\"utf-8\"?><root>" + node.InnerXml + "</root>";

How do I get the RadAjaxPanel to update its client Xml component, and cause the xml text to appear?

An example would be great. Thanks

Chris

 

Sebastian
Telerik team
 answered on 24 Mar 2009
4 answers
119 views
Hi,

I'm using the Rad editor for MOSS and i have the following configfile.xml:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <property name="ShowHtmlMode">false</property>
  <property name="EnableDocking">False</property>
  <property name="ToolbarMode">PageTop</property>
  <property name="Skin">Gray</property>
  <property name="ImagesPaths">
 <item>/PublishingImages</item>
  </property>
</configuration>

But the HTML mode button still appears in the editor. When i change other properties the are applied, but not they ShowHtmlMode.
Sjeng Koch
Top achievements
Rank 1
 answered on 24 Mar 2009
1 answer
247 views

This is a test project with a problem in Telerik components

In the "default.aspx", a button and a modal window, clicking on the button shows the modal window “popup.aspx”; that has a date picker

Clicking on the view calendar button of the date picker doesn’t show the calendar! Instead it shows the layer under the modal window

This problem with IE only (at least IE7 I’m using), working perfectly with Firefox, Safari, and Chrome
I'm using Telerik 2009 Q1

Default.aspx:

 

<%

@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

 

<%

@ 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>Test</title>

 

 

<script language="javascript" type="text/javascript">

 

 

function windowOpen() {

 

 

var oWnd = radopen("Popup.aspx", "windowModal");

 

 

oWnd.center();

 

}

 

</script>

 

</

head>

 

<

body bgcolor="yellow">

 

 

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

 

 

<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />

 

 

<div>

 

 

<input type="button" value="open" runat="server" id="btnOpen" onclick="javascript:windowOpen();" />

 

 

<telerik:RadWindowManager ID="windowManagerModal" runat="server" Skin="Black">

 

 

<Windows>

 

 

<telerik:RadWindow ID="windowModal" runat="server" ShowContentDuringLoad="true" Behaviors="Close" VisibleStatusbar="false"

 

 

Animation="FlyIn" Width="700px" Height="700px" Modal="true" Title="Popup">

 

 

</telerik:RadWindow>

 

 

</Windows>

 

 

</telerik:RadWindowManager>

 

 

</div>

 

 

</form>

 

</

body>

 

</

html>


Popup.aspx:

 

<%

@ Page Language="C#" AutoEventWireup="true" CodeFile="Popup.aspx.cs" Inherits="Popup" %>

 

<%

@ 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>Popup</title>

 

</

head>

 

<

body>

 

 

 

 

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

 

 

 

 

<div>

 

 

 

 

<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />

 

 

 

 

<telerik:RadDatePicker ID="RadDatePicker1" runat="server" Skin="Black">

 

 

 

 

<Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False"

 

 

ViewSelectorText="x" Skin="Black" runat="server"></Calendar>

 

 

 

 

<DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>

 

 

 

 

</telerik:RadDatePicker>

 

 

 

 

</div>

 

 

 

 

</form>

 

</

body>

 

</

html>

Any Help?

 

Sebastian
Telerik team
 answered on 24 Mar 2009
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?