Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
63 views
Hi,

I have hierarchical rad grid with filtering.
My scenario of Issue as  follows:
  • 1st detail table has been expanded and 2nd one has been collapsed.
  • I am typing some thing (eg: "A" ) inside the filter text box in 1st grid (eg: " FirstName" Column) and apply filter (eg: stars with...)
  • Then I expand the 2nd grid
  • The letter "A" which I have typed in 1st grid's filter text box is being displayed in 2nd grid " FirstName" column's filter text box also.
  • Filter value is only being displayed NOT FILTERED the 2nd grid.
  • What I want is to stop displaying filter value of one grid inside another grid's same column filter text box.
Can you please give me a solution to overcome this issue.

Regards,
Madu
Daniel
Telerik team
 answered on 13 Jan 2011
2 answers
54 views
Hello,

I'm not sure if this is the intended results of RadRating or its just in my case, but I have created a Yes/No rating similar to the demo and the problem I encountered was when I set the RadRatingItem to Value="0", then on the initial page_load, the SelectedImageUrl is used as the default image vs ImageUrl.  I'm using the RadRating in a grid and all the grid results produce the same results.

Here is the RadRating source:
<telerik:RadRating ID="ratingBinary" runat="server" ItemHeight="20px" ItemWidth="20px"
   Orientation="Horizontal" SelectionMode="Single" AutoPostBack="true" OnRate="ratingBinary_Rate">
      <Items>
         <telerik:RadRatingItem Value="0"
            HoveredImageUrl="Assets/Collection/Images/Rating/Binary/downh.png"
            HoveredSelectedImageUrl="Assets/Collection/Images/Rating/Binary/downh.png"
            SelectedImageUrl="Assets/Collection/Images/Rating/Binary/downh.png"
            ImageUrl="Assets/Collection/Images/Rating/Binary/down.png"
            ToolTip="No" />
         <telerik:RadRatingItem Value="1"
            HoveredImageUrl="Assets/Collection/Images/Rating/Binary/uph.png"
            HoveredSelectedImageUrl="Assets/Collection/Images/Rating/Binary/uph.png"
            SelectedImageUrl="Assets/Collection/Images/Rating/Binary/uph.png"
            ImageUrl="Assets/Collection/Images/Rating/Binary/up.png"
            ToolTip="Yes" />
      </Items>
</telerik:RadRating>

The goal was to use 0 & 1 for the rateBinary.Values and convert to bool in the OnRate event.

Any suggestions are appreciated,
Thank you,
Ronnie
Ronnie
Top achievements
Rank 1
 answered on 13 Jan 2011
1 answer
81 views
Hi,
    I am working on Scheduler/Resource Availability having problem with groupby property of Scheduler it's not working.
The use case is that there are two different appointments scheduled on a same room.As a result, I want to show two appointments under same room, but the room shoud appear only once.
But in my case it's not happening it's showing two rooms with same name with same appointment.Please check attached file.



Thanks,


Peter
Telerik team
 answered on 13 Jan 2011
1 answer
173 views
Hi,

I want to know if FileExplorer works with Active Directory users, it means my asp.net users impersonate with AD user, Can he/she edit/upload/delete files/folders based on permissions in AD?

Regards
Mazdak
Dobromir
Telerik team
 answered on 13 Jan 2011
1 answer
362 views
Hi there,

I have a issue where I need to roll through each row in a grid (ClientSide).  I need to find a check box control that has been added to a specific column during the grids ItemDataBound event.

The grid looks like this:
<Columns>
<telerik:GridTemplateColumn HeaderText="Feature Name" UniqueName="FeatureNameTemplateColumn" ReadOnly="false">
<ItemTemplate>
<asp:Label runat="server" ID="lblFeatureName" Text='<%# Bind("FeaturePropertyName") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn HeaderText="PD" UniqueName="PackageDescriptionEdit"></telerik:GridBoundColumn>
<telerik:GridBoundColumn HeaderText="Feature Value" UniqueName="FreeTextDataValueEdit"></telerik:GridBoundColumn>
<telerik:GridTemplateColumn HeaderText="Modified" UniqueName="LastModifiedTemplateColumn" ReadOnly="true">
<ItemTemplate>
<asp:Label runat="server" ID="lblLastModified" Font-Size="8pt" Text='<%# Bind("LastModifiedBy") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn UniqueName="CheckBoxEmailColumn"></telerik:GridBoundColumn>
</Columns>

That last column "CheckBoxEmailColumn" gets a server side CheckBox added to it during the ItemDataBound event:
var chk = new CheckBox {Checked = false, TabIndex = 5000, ID = "chkBoxEmail"};
eItem["CheckBoxEmailColumn"].Controls.Add(chk);

I want to go through each data row, find that CheckBox and see if it's checked or not.  Something like this:
function CallEmailWindow() {
var productid = $telerik.$('#<%= hfProductID.ClientID %>').val();
var masterTable = $find("<%= rgvProductDetail.ClientID %>").get_masterTableView();
var items = masterTable.get_dataItems();
var num = masterTable.get_dataItems().length;
 
for (var index = 0; index < num; index++) {
var control = masterTable.get_dataItem()[index].findControl("chkBoxEmail");
}
}

Any help would be appreciated.
Thank you,
Tad
TAD RHODES
Top achievements
Rank 1
 answered on 13 Jan 2011
1 answer
38 views

Hi,

I am using scheduler control in my application and I want to enable two month view of calendar control in scheduler.

 

I am able to set two month view of calendar control in scheduler by setting MultiViewColumns property of calendar to 2 but by using this command, calender control is not navigating between dates. It just show two months view.

Am I missing something? Any help regarding this will be appreciated

Thanks in advance
Deepak

Peter
Telerik team
 answered on 13 Jan 2011
3 answers
100 views
Hello,

I have a problem with my the browser vertical scrollbar. The scrollbar is disapeared when I check the checkboxes in my application (Which are placed within the radajaxpanel control).

In order to get a better understanding of the problem please view the sample application from [link was deleted because it contained dev version] Just check the "Category1" checkbox and the scrollbar will disapear.
According to my understanding that among the radajaxpanel function is to prevent isuues like this.

I have spent alot of time just trying to solve this problem.
So, plaese I need an immediate help.
It is apprecited to send me the modified code.

Regards,
Bader
Bader
Top achievements
Rank 1
 answered on 13 Jan 2011
2 answers
91 views
I am using RadGrid and using Filter By Column functionality. My grid displays Products and Details (including pricing) after loading the Order Guide. Pricing calculation takes time so we calculate price while change the page (of RadGrid). After loading Order Guide if I want to see particular product by filter then grid shows the row but not the pricing of the item because after filter there have no code written to calculate price for filtered Row. How can I work with the Filtered Row (at which event I can get the filtered row before it displays or get loaded)? (Please refer the attached snapshot)

 
Shalabh
Top achievements
Rank 1
 answered on 13 Jan 2011
2 answers
91 views
Hi!

I've got a scheduler with 3 resources going across it. My client would like it if there was a dark line between each resource.

I tried:

div.RadScheduler .rsTopWrap .rsContentTable td {
    border-right: 1px solid Black;
}

But in Month view, that puts a column between every day. I just want a single border between resource1 | 2 | 3, top to bottom.

Any way to do that?

Mitchell
Top achievements
Rank 1
 answered on 13 Jan 2011
8 answers
148 views
Hi all,

I made a ASP.Net rad menu (image based) which goes till level 3. Till level 2 it dont give any problem but when I add further childs then a strange problem occurs .i.e menu disappears and then come back when I hover on menu. There is not any particular position I could find where this happens. It happens randomly but frequently. It works fine in Firefox and all other browsers even works fine in IE8 also. I am facing this problem in IE6 and 7 only.

Did anybody face this problem before or anybody have idea about this problem?

Thanks in advance

Kamran Hussain Cheeta
Yana
Telerik team
 answered on 13 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?