Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
127 views
Hi there,

I have a question, do someone know if it's possible to add a simple label to the advanced form without using a custom template or something like that?I want to add the label via my C# code.

Thanks,

Plamen
Telerik team
 answered on 14 Jan 2013
3 answers
45 views

Hi,

I have a tab with 2 tabs, I am using RadMultiPage in combination is RadTab. I have a problem in loading 2nd tab contentUrl Data.
It always displays first tab Content Url Data.

Below is Piece of code. Let me know if i am doing anything wrong.

I have set selectedIndex=0 to display first tab content on load. If i wont set it , Nothing displays. It will be blank.
Help me out.
Tab
 <telerik:RadTabStrip ID="rdStrp" runat="server" AutoPostBack="true" SelectedIndex="0" >
        <Tabs>
        <telerik:RadTab Text="First" runat="server" PageViewID="RadPageView1" >
        </telerik:RadTab>
        <telerik:RadTab Text="Second" runat="server" PageViewID="RadPageView2">
        </telerik:RadTab>
        </Tabs>
        </telerik:RadTabStrip>
        <telerik:RadMultiPage id="Mp" runat="server" SelectedIndex="0" >
        <telerik:RadPageView ID="RadPageView1" ContentUrl="WebForm2.aspx" runat="server">
        </telerik:RadPageView>
         <telerik:RadPageView ID="RadPageView2" ContentUrl="WebForm3.aspx" runat="server">
        </telerik:RadPageView>
        </telerik:RadMultiPage>

WebForm2.aspx
---------------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
 First Tab
    </div>
    </form>
</body>
</html>
WebForm3.aspx
---------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
 abcdefd
    </div>
    </form>
</body>
</html>

Regards,
Akki
Nencho
Telerik team
 answered on 14 Jan 2013
5 answers
122 views

Hi,

Is it possible dynamic width but have a max width with tree inside RadComboBox.


RadComboBox width should not be grater than Treeview width.


Thanks
Praveen Tomar
Boyan Dimitrov
Telerik team
 answered on 14 Jan 2013
1 answer
34 views
how to show contextmenu on radtreeview when user left click on it?
Shinu
Top achievements
Rank 2
 answered on 14 Jan 2013
1 answer
68 views
How to prevent the radmenu from displaying the submenu items
Princy
Top achievements
Rank 2
 answered on 14 Jan 2013
1 answer
40 views
How can i make the user to enter only 2 character while filtering in radgrid?
Shinu
Top achievements
Rank 2
 answered on 14 Jan 2013
1 answer
250 views
 How to add a space between two toolbar buttons as a separator between them?
Princy
Top achievements
Rank 2
 answered on 14 Jan 2013
7 answers
113 views
Hello guys.

Is this possible to drag and drop a row over another row in the same grid and take the event and the args of the context?

Best regards.
Maria Ilieva
Telerik team
 answered on 14 Jan 2013
1 answer
43 views

Hi All,
I am encountering this issue with the radgrid enableheadercontextmenu, When I click one of the columns on my radgrid, the column on the right of my grid are getting hidden too. So it's hiding two columns at the same time. I can't find any settings that is allowing this. I already tried Tablelayout = "fixed" but still got the same problem. Below is the setting of my radgrid.

 

<telerik:RadGrid ID="grid" runat="server" Skin="Office2007"

 

AllowPaging="true" AllowSorting="true"  

 

 

 

 

 

PageSize="20" AutoGenerateColumns="false" 

 

 

 

ShowStatusBar="true" GridLines="None" Width="99%" 

 

 

 

OnNeedDataSource="grid_NeedDataSource"

 

OnItemCreated ="grid_ItemCreated"  

 

SelectedItemStyle-BackColor="LightSteelBlue"

 

 

 

AllowMultiRowSelection="False"

 

<SelectedItemStyle BackColor="LightSteelBlue"></SelectedItemStyle>

 

<HeaderStyle Font-Names="Verdana, Century Gothic" Font-Bold="true" Font-Size="8" ForeColor

="Navy"/> 

 

<ItemStyle Font-Names="Verdana, Century Gothic" Font-Size="8" Wrap

="false"/>

 

<PagerStyle Mode="NextPrevAndNumeric" Position="TopAndBottom" />

 

 

 

<AlternatingItemStyle BackColor="AliceBlue" Font-Names="Verdana, Century Gothic" Font-Size="8" Wrap="false" />

 

<MasterTableView Width="100%" AllowMultiColumnSorting="true" TableLayout="Auto"

 

 

 

AllowFilteringByColumn="true" IsFilterItemExpanded="false" EnableHeaderContextFilterMenu="true" EnableHeaderContextMenu ="true">

 

 

 

<GroupByExpressions 

 

<telerik:GridGroupByExpression 

 

<SelectFields 

 

<telerik:GridGroupByField FieldAlias="Week" FieldName="Rotation" FormatString

="{0 : S}"

HeaderValueSeparator = " : " />

 

 

 

</SelectFields 

 

<GroupByFields>

<telerik:GridGroupByField FieldName="Rotation" SortOrder="Ascending"/>

 

</GroupByFields>
</telerik:GridGroupByExpression> 

 

</GroupByExpressions>

 

 

 

<Columns>

 

 

 

<telerik:GridTemplateColumn UniqueName="CategoryName" DataField="Categoryname" HeaderText

="Category">

 

<ItemStyle Wrap="true" Width="130" Font-Names

="Verdana"/>

 

 

<HeaderStyle Width="130" Wrap="true" />

 

<ItemTemplate>
<asp:Label ID="lblCategoryName" runat="server" Text='<%#Eval("CategoryName") %>' Width="130"></asp:Label>

 

 

</ItemTemplate 

 

</telerik:GridTemplateColumn 

 

<telerik:GridBoundColumn UniqueName="Status" DataField="Status" HeaderText

="Status">

<ItemStyle Wrap="true" Width="150" Font-Names

="Verdana"/> 

 

<HeaderStyle Width="150" Wrap="true" />

 

</telerik:GridBoundColumn>

 

 

 

<telerik:GridTemplateColumn UniqueName="EventName" DataField="Eventname" HeaderText

="Event Name">

 

<ItemStyle Wrap="true" Width="150" Font-Names

="Verdana"/> 

 

<HeaderStyle Width="150" Wrap="true" />  

 

<ItemTemplate>

 

<asp:Label ID="lblEventName" runat="server" Text='<%#Eval("EventName") %>' Width="150"></asp:Label>

 

</ItemTemplate>

 

</telerik:GridTemplateColumn>

 

 

 

<telerik:GridTemplateColumn UniqueName="EventDetails" DataField="EventDetails" HeaderText

="EventDetails">

 

<ItemStyle Wrap="true" Width="200" Font-Names

="Verdana"/>

 

<HeaderStyle Width="200" Wrap="true" />  

 

<ItemTemplate>

 

<asp:Label ID="lblDetails" runat="server" Text='<%#Eval("EventDetails") %>' Width="200px"></asp:Label> 

 

</ItemTemplate>

 

</telerik:GridTemplateColumn> 

 

<telerik:GridBoundColumn UniqueName="BrandFl" DataField="CompanyEvent" HeaderText="Priority Brand" >

 

 

 

</telerik:GridBoundColumn>

 

 

 

</Columns>

 

<NoRecordsTemplate></NoRecordsTemplate>

 

</MasterTableView>

 

 

 

<FilterMenu EnableImageSprites="False"></FilterMenu>

 

<ClientSettings AllowColumnsReorder="true">

 

 

 

</ClientSettings>

 

</telerik:RadGrid>

Pavlina
Telerik team
 answered on 14 Jan 2013
1 answer
81 views
Hi,
I need to add some spacing between the bars in my chart (see attachement).

The Silverlight version has a property named ItemOverlapPercent that does exactly what I want. Does the ASP.NET have something similar?

Regards,
Martin
Princy
Top achievements
Rank 2
 answered on 14 Jan 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?