Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
65 views

Hi

I have parent grid called  rgParentGrid,

In this I am using some NestedViewTemplate
In this NestedViewTemplate I am using other Radgrid called Chidgrid ,

I am using some item templates in Childgird , I would like bound these itemtemplates in OnItemdatabound (object sender, GridItemEventArgs e)

.

Could anyone please help me on accessing  these item Templates in code behind


Regards
Kiran

Princy
Top achievements
Rank 2
 answered on 22 Nov 2011
2 answers
604 views
I have a text field which I attach a required field validator.  I have a button that initiates a clear() method but this is causing validation to fire.  Any idea of what might be wrong here?  I can change this to an asp textbox and set the value to the asp textbox without validation firing as usual.

<telerik:RadTextBox Save="Text" ID="txtCode" onblur="UcaseTextbox(this, event)" runat="server" MaxLength="4" Width="50px" TabIndex="1"
                     CssClass="textUpper"
                      ToolTip="Vendor Code" CausesValidation="False">
                    </telerik:RadTextBox>
                    <asp:RequiredFieldValidator ID="reqCode" runat="server" ControlToValidate="txtCode"
                      Display="Dynamic" ErrorMessage="<br>Vendor Code required" 
                      SetFocusOnError="True" ForeColor="Red"></asp:RequiredFieldValidator>

<asp:Button ID="btnClear" runat="server" Text="Clear" CausesValidation="false" UseSubmitBehavior="false" OnClientClick="ResetScreen(); return false;"
                                      ToolTip="Clear" TabIndex="3" />


function ResetScreen() {
   $find("txtCode").clear();
}
Shinu
Top achievements
Rank 2
 answered on 22 Nov 2011
1 answer
104 views
Where can I find RadTimePicker demo and documentation?
There is nothing about RadTimePicker here http://demos.telerik.com/aspnet-ajax/input/examples/overview/defaultcs.aspx and http://www.telerik.com/help/aspnet-ajax/input-dateinput-basics.html
Shinu
Top achievements
Rank 2
 answered on 22 Nov 2011
1 answer
65 views
I have a combobox with some items(like Name field).In which client event can I access the selected item text from client side?
Princy
Top achievements
Rank 2
 answered on 22 Nov 2011
1 answer
30 views
I am using RadGrid with paging enable.I don't want to display the combobox.Tried with many CSS.Not working
Shinu
Top achievements
Rank 2
 answered on 22 Nov 2011
1 answer
85 views
How can I remove today link in radscheduler?
Shinu
Top achievements
Rank 2
 answered on 22 Nov 2011
4 answers
132 views
Hi,

I'm trying to set the CSS class of a particular item in the rotator from code behind based on a value I obtain from the database. The following code does set the class but it sets it for a nested div and that's too deep. I need to set it on the <li> generated by the RadRotator for this item.
Private Sub RadRotator1_ItemDataBound(sender As Object, e As Telerik.Web.UI.RadRotatorEventArgs) Handles RadRotator1.ItemDataBound
If IsFeatured Then
e.Item.Attributes.Add("class", "featured")
End If
End Sub

The generated HTML looks like this:
<div class="rrRelativeWrapper">
    <div class="rrClipRegion">
        <ul class="rrItemsList">
            <li class="rrItem">
                <div id="ctl00_..._RadRotator1_i0" class="featured">

I need my "featured" class to be injected in the <li> just above. How can I accomplish this? (Or am I going about it the wrong way?). Thanks!
KDL
Top achievements
Rank 1
 answered on 22 Nov 2011
1 answer
109 views
I'm using Visual Studio 2010 with a ASP.NET application that uses ASP.NET AJAX.  I just ran the Telerik Upgrade Wizard and was upgraded to version 2011.3.1115.40 ASP.NET AJAX.  After running the wizard,  I began getting a runtime error (in the ASP.NET application) which stated that Web20 skin was missing for the Telerik.Web.UI.RadPanelBar.  In design mode I found that the only Skin property available is "default" - and default is black and gray.  Now all of my telerik grid control, and date controls have the the same black and white. 

What has happened to the skins?  The only thing that changed was running the Telerik Upgrade Wizard.
Robert Adkison
Top achievements
Rank 1
 answered on 21 Nov 2011
1 answer
147 views
I have a RadChart declaratively bound to a SQLDataSource. Auto-scaling is on. I cannot get the legend to display the state name instead of the series name. When the values go above 1000, they show with a non-existent bar, but have the value label.
I did look at multiple resources before I started this thread. The only thing that is in the code is setting the title. What am I doing wrong. The dataset bound has these fields:
YYMM - yearmonth together
YYYY - year
MM - month
Category - single category only
VOLUME - count of cases/per month/per state
TotalPaid - sum of paid amount/per month/per state
State - compare 2 states, grouping field

<telerik:RadChart ID="RadChart1" runat="server" DataGroupColumn="State" DataSourceID="ChartDS"
                IntelligentLabelsEnabled="True" SeriesPalette="Blue" Skin="DeepBlue">
                <Appearance Corners="Rectangle, Rectangle, Round, Round, 5" Dimensions-Margins="0px, 1px, 1px, 1px"
                    Dimensions-Paddings="0px, 1px, 1px, 1px">
                    <FillStyle FillType="ComplexGradient">
                        <FillSettings>
                            <ComplexGradient>
                                <telerik:GradientElement Color="26, 120, 179" />
                                <telerik:GradientElement Color="35, 189, 254" Position="0.5" />
                                <telerik:GradientElement Color="26, 120, 179" Position="1" />
                            </ComplexGradient>
                        </FillSettings>
                    </FillStyle>
                    <Border Color="0, 66, 110" Width="0" Visible="False" />
                </Appearance>
                <Series>
                    <telerik:ChartSeries Name="State1" DataYColumn="VOLUME">
                        <Appearance>
                            <FillStyle FillType="ComplexGradient">
                                <FillSettings>
                                    <ComplexGradient>
                                        <telerik:GradientElement Color="213, 247, 255" />
                                        <telerik:GradientElement Color="193, 239, 252" Position="0.5" />
                                        <telerik:GradientElement Color="157, 217, 238" Position="1" />
                                    </ComplexGradient>
                                </FillSettings>
                            </FillStyle>
                            <TextAppearance TextProperties-Color="White">
                            </TextAppearance>
                        </Appearance>
                    </telerik:ChartSeries>
                    <telerik:ChartSeries DataYColumn="VOLUME" Name="State2">
                        <Appearance>
                            <FillStyle FillType="ComplexGradient">
                                <FillSettings>
                                    <ComplexGradient>
                                        <telerik:GradientElement Color="163, 222, 78" />
                                        <telerik:GradientElement Color="132, 207, 27" Position="0.5" />
                                        <telerik:GradientElement Color="102, 181, 3" Position="1" />
                                    </ComplexGradient>
                                </FillSettings>
                            </FillStyle>
                            <TextAppearance TextProperties-Color="White">
                            </TextAppearance>
                            <Border Color="94, 160, 0" />
                        </Appearance>
                    </telerik:ChartSeries>
                </Series>
                <Legend>
                    <Appearance Dimensions-Margins="1px, 2%, 12%, 1px" GroupNameFormat="#VALUE">
                        <ItemTextAppearance TextProperties-Color="White">
                        </ItemTextAppearance>
                        <FillStyle GammaCorrection="False" MainColor="37, 255, 255, 255">
                        </FillStyle>
                        <Border Color="76, 255, 255, 255" />
                    </Appearance>
                    <TextBlock>
                        <Appearance Position-AlignedPosition="Top" TextProperties-Color="LightSkyBlue">
                        </Appearance>
                    </TextBlock>
                    <ActiveRegion Tooltip="The two states to compare" />
                </Legend>
                <PlotArea>
                    <XAxis DataLabelsColumn="YYMM" IsZeroBased="False" MaxValue="7" MinValue="0">
                        <Appearance Color="98, 183, 226" MajorTick-Color="98, 183, 226">
                            <MajorGridLines Color="98, 183, 226" Width="0" />
                            <LabelAppearance RotationAngle="300" Position-AlignedPosition="Bottom">
                            </LabelAppearance>
                            <TextAppearance TextProperties-Color="White">
                            </TextAppearance>
                        </Appearance>
                        <AxisLabel Visible="True">
                            <Appearance Dimensions-Paddings="1px, 1px, 10%, 1px" Visible="True">
                            </Appearance>
                            <TextBlock Text="Month/Year">
                                <Appearance TextProperties-Color="LightSkyBlue">
                                </Appearance>
                            </TextBlock>
                        </AxisLabel>
                        <Items>
                            <telerik:ChartAxisItem>
                                <TextBlock Text=" 01/2011">
                                </TextBlock>
                            </telerik:ChartAxisItem>
                            <telerik:ChartAxisItem Value="1">
                                <TextBlock Text=" 02/2011">
                                </TextBlock>
                            </telerik:ChartAxisItem>
                            <telerik:ChartAxisItem Value="2">
                                <TextBlock Text=" 03/2011">
                                </TextBlock>
                            </telerik:ChartAxisItem>
                            <telerik:ChartAxisItem Value="3">
                                <TextBlock Text=" 04/2011">
                                </TextBlock>
                            </telerik:ChartAxisItem>
                            <telerik:ChartAxisItem Value="4">
                                <TextBlock Text=" 05/2011">
                                </TextBlock>
                            </telerik:ChartAxisItem>
                            <telerik:ChartAxisItem Value="5">
                                <TextBlock Text=" 06/2011">
                                </TextBlock>
                            </telerik:ChartAxisItem>
                        </Items>
                    </XAxis>
                    <YAxis>
                        <Appearance Color="98, 183, 226" MajorTick-Color="98, 183, 226" MinorTick-Color="98, 183, 226">
                            <MajorGridLines Color="120, 209, 248" />
                            <MinorGridLines Color="120, 209, 248" Width="0" />
                            <TextAppearance TextProperties-Color="White">
                            </TextAppearance>
                        </Appearance>
                        <AxisLabel Visible="True">
                            <Appearance Visible="True">
                            </Appearance>
                            <TextBlock Text="Volume">
                                <Appearance TextProperties-Color="LightSkyBlue">
                                </Appearance>
                            </TextBlock>
                        </AxisLabel>
                    </YAxis>
                    <Appearance Dimensions-Margins="12%, 80px, 20%, 15%" SeriesPalette="Blue">
                        <FillStyle MainColor="50, 255, 255, 255" SecondColor="Transparent">
                        </FillStyle>
                        <Border Color="97, 180, 223" />
                    </Appearance>
                </PlotArea>
                <ChartTitle>
                    <Appearance Dimensions-Margins="8px, 10px, 8px, 6%">
                        <FillStyle MainColor="">
                        </FillStyle>
                        <Border Visible="False" />
                    </Appearance>
                    <TextBlock Text="">
                        <Appearance TextProperties-Color="White"
                            TextProperties-Font="Tahoma, 9.75pt, style=Bold">
                        </Appearance>
                    </TextBlock>
                </ChartTitle>
Scott Hannon
Top achievements
Rank 1
 answered on 21 Nov 2011
1 answer
73 views
One of my grid has a Template Column and a dynamic checkbox. Would it be possible to have AjaxSettings configured with this box? Any samples to guide and assist?
James Campbell
Top achievements
Rank 1
 answered on 21 Nov 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?