Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
180 views
Hi,

I have to create load mega dropdown menu dynamically from database. pls provide some examples.

Thank you.
Saranya.
Sarani Ravindran
Top achievements
Rank 1
 answered on 02 Jan 2012
2 answers
80 views
Hi,

I'm facing issue in grouping with custom paging set to true, I'm not getting any group split message even if the grouped items split into multiple pages. Here are my grid settings;

<telerik:RadGrid ID="Grid1" AllowPaging="true" AllowCustomPaging="true"
                                GroupingEnabled="true" ShowGroupPanel="false" ShowStatusBar="false" AutoGenerateColumns="false" VirtualItemCount="100000" 
                                runat="server" OnItemDataBound="Grid1_ItemDataBound"
                                OnNeedDataSource="Grid1_NeedDataSource">
                                <PagerStyle AlwaysVisible="true" Mode="NextPrevAndNumeric" PagerTextFormat="Change page: {4} <strong><b>{5}</b> Items In <b>{1}</b> Pages </strong>" 
                                    PageSizeLabelText="Items Per Page : "  />
                                <GroupingSettings CollapseTooltip="Collapse client items" ExpandTooltip="Expand client items" RetainGroupFootersVisibility="true"  />
                                <MasterTableView EnableColumnsViewState="false" EnableViewState="true" TableLayout="Auto" ShowGroupFooter="true"
                                    GroupLoadMode="Client" >
                                    <GroupByExpressions>
                                        <telerik:GridGroupByExpression>
                                            <SelectFields>
                                                <telerik:GridGroupByField HeaderText="Client" FieldName="ClientNameWithID" SortOrder="Ascending" />
                                            </SelectFields>
                                            <GroupByFields>
                                                <telerik:GridGroupByField HeaderText="Client" FieldName="ClientNameWithID" SortOrder="Ascending" />
                                            </GroupByFields>
                                        </telerik:GridGroupByExpression>
                                    </GroupByExpressions>
</MasterTableView>
                                <ClientSettings AllowGroupExpandCollapse="true">
                                    <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="false" />
                                    <ClientEvents OnGridCreated="GridCreated" />
                                    <Resizing AllowRowResize="False" EnableRealTimeResize="True" ResizeGridOnColumnResize="False"
                                    AllowColumnResize="False"></Resizing>
                                </ClientSettings>
                            </telerik:RadGrid>

Also I'm doing advanced databinding mechanism to bind the values to grid.

Please help me to solve the problem,

Thanks
Anoop
Anoop
Top achievements
Rank 1
 answered on 02 Jan 2012
1 answer
69 views
I am using the old version Rad  control in my asp.net web application. now i am buy new telerik control and I want to upgrade my application with new telerik control .please suggest me the possible easy step to upgrade my application.
Regards
Anish
Shinu
Top achievements
Rank 2
 answered on 02 Jan 2012
5 answers
124 views
Hi there,

How can i collapse Ribbon Bar.
Kate
Telerik team
 answered on 02 Jan 2012
4 answers
120 views
After setting up radlistboxes to transfer employees, the box on the left appears to overlay the transfer buttons.  The buttons still work, but the look is not correct.

Any  thoughts on what cause this?
Kate
Telerik team
 answered on 02 Jan 2012
4 answers
113 views
Hello,
I have a radgrid.I wanna access the textbox which is in the Insert template.How can I achieve this?

<telerik:GridTemplateColumn HeaderText="InvoiceDate">
                    <ItemTemplate>
                     <%#Eval("InvoiceDate")%>
                     </ItemTemplate>
                      <InsertItemTemplate>
                      <asp:TextBox ID="txtInvoiceDate" runat="Server"></asp:TextBox>
                       </InsertItemTemplate>
 </telerik:GridTemplateColumn>
Emre
Top achievements
Rank 1
 answered on 02 Jan 2012
1 answer
95 views
Hello,

Is is possible to have a Rotator that displays its items in a format and order similar to the following:


_______________________________________________
|                        |                       |                    |                       |
|       Item 1       |       Item 3       |      Item 5     |      Item 7       |
|                        |                       |                    |                       |
_______________________________________________
|                        |                       |                    |                       |
|      Item 2        |       Item 4       |       Item 6    |      Item 8       |
|                        |                       |                    |                       |
_______________________________________________


I've tried setting my item width and height to 1/2 of the rotator width and height and using only pixel units (no percentages) but to no avail. The closest I get to the intended output is actually by having at least 8 or more items bound and by using a percentage for item width (17%) and having fixed pixel widths for rotator height, width and item height (1/2 of rotator height).

Any ideas as to how I can reproduce this effect even if I have less that 8 items bound.

Thanks in advance.
Princy
Top achievements
Rank 2
 answered on 02 Jan 2012
1 answer
73 views
Hi,
Below is my design code...just want to find the seltected text of Radcombo which has been placed inside Radlistview....

<tr>
<td>
<asp:Panel runat="server" ID="uxJumpPanel">
<telerik:RadListView ID="feeldChoices" runat="server" OnItemDataBound = "feeldChoices_ItemDataBound">
<ItemTemplate>
<table cellpadding="0" cellspacing="0">
<tr>
<td>
<telerik:RadTextBox runat="server" Text='<%# Eval("Text") %>' onkeyup="SyncListToCheckbox(this)"
ID="uxItemText" Width="260">
</telerik:RadTextBox>
 <telerik:RadComboBox runat="server" ID="uxSelectPage1" ></telerik:RadComboBox>
</td>


<td>
<img id="imageAdd" style="cursor: pointer" runat="server" onclick="InitiateAjaxRequest('1,3,add|' + this.id + ',' + selectedDockId); SetUnsaved();"
alt="Add field choice" border="0" src="Images/Add.png" />
</td>
<td>
<img id="imageDelete" style="cursor: pointer" runat="server" onclick="InitiateAjaxRequest('1,3,remove|' + this.id + ',' + selectedDockId); SetUnsaved();"
alt="Delete field choice" border="0" src="Images/Delete.png" />
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadListView>
</asp:Panel>
</td>
</tr>



//Thanks
Princy
Top achievements
Rank 2
 answered on 02 Jan 2012
2 answers
110 views
I am using server side code to populate the combobox. and enabled "EnableLoadOnDemand"
The combobox doesnt seem working correctly. When the page first opens, click into the combobox nothing hapens and it is not populated. When I type in something or delete what i typed in then it populates. I tried to change the code to as simple as assigning a datatable to the combobox datasource still no luck..
why? what I do?
Princy
Top achievements
Rank 2
 answered on 02 Jan 2012
1 answer
503 views
Hi all,
i am working on implementing Select/Insert/Update/Delete functionality using RADGrid, i dont  want to use sqlDatasource i want to bind grid throught code behind data such data comes from view state table and when user perform any operations that efect on view state table not actual data which is stored in sqlserver.how can i do this  can any one send me a sample of code;
Shinu
Top achievements
Rank 2
 answered on 02 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?