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

I'm using RadControls for ASP.NET AJAX Q3 2012.
I have two list boxes which I want to transfer item between them bidirectional. everything works fine except when I use AllowTransferOnDoubleClick="True". In this case although I set TransferMode="Copy", the items moved when they exist in other list box.

<telerik:RadListBox runat="server" DataKeyField="ClassID" ID="RadListBox2" DataSourceID="SqlDataSource1" DataTextField="ClassName"
 TransferToID="RadListBox1" Style="top: 1px; right: 0px;
width: 191px;"  AllowTransferOnDoubleClick="True" TransferMode="Copy"
 DataValueField="ClassID" OnDataBound="RadListBox2_DataBound">
<ButtonSettings TransferButtons="All"></ButtonSettings>
</
telerik:RadListBox>
<
telerik:RadListBox ID="RadListBox1" runat="server" TransferMode="Copy" AllowTransfer="True" AppendDataBoundItems="True" DataKeyField="ClassID"
 DataSourceID="SqlDataSource2"
  DataTextField="ClassName" TransferToID="RadListBox2" Culture="fa-IR" Style="top: 0px;right: 9px; width: 191px;"
 DataValueField="ClassID"
AllowTransferOnDoubleClick="True" EnableMarkMatches="True"><ButtonSettings TransferButtons="All"></ButtonSettings>
</
telerik:RadListBox>

Where is the problem?!

Thanks for your concern
Kate
Telerik team
 answered on 07 Jan 2013
0 answers
104 views
Hello Guys,

Lets sey I have a grid, which datasource is generic DataTable. Based on contents in datatable there are columns. This works fine so far. But what Im trying to do, Group every two colums with custom title into ColumnGroup. (Except first column). In C#, I cant define those in xhtml, coz those column definitions depends on contents of DataTable as a DataSource. Any ideas, how can I achieve this?

Cheers, Jan
Jan
Top achievements
Rank 1
 asked on 07 Jan 2013
0 answers
77 views

Hi,

In Radgrid I am displaying invoice details like -'Invoice- Legal fee', 'Invoice- expenses' and 'Invoice- discount'.

Below each Invoice I am creating NestedViewTemplate for displaying Invoice's Credit memo details like 'Credit memo- Legal fee', 'Credit memo-  expenses' and 'Credit memo- discount'.

Now for displaying Grand Total for Legal fee, expenses, discount I want to do something like this –

 (Invoice- Legal fee- Credit memo- Legal fee)

(Invoice- expenses' - Credit memo- expenses')

(Invoice- discount'- Credit memo- discount')

This is working properly using

     Protected Sub RadGrid2_ItemDataBound(ByVal sender As Object, ByVal e As GridItemEventArgs)

            If TypeOf e.Item Is GridFooterItem Then

                Dim footerItem As GridFooterItem = TryCast(e.Item, GridFooterItem)

                If footerItem("Total").Text <> "" Then

                    strCMTotal1 = footerItem("Total").Text

                    strCMLegalSum1 = footerItem("Legal_Fees").Text

                    strCMExpenseSum1 = footerItem("Expenses").Text

                    strCMDiscount1 = footerItem("Discount").Text

                    strCMAdminFees1 = footerItem("%_of_Legal_Fees").Text

                    footerItem("Legal_Fees").Text =  strCMLegalSum1 - strCMLegalSum / 3   ‘Subtracting Credit memo details from Invoice details

                    footerItem("Expenses").Text = strCMExpenseSum1 - strCMExpenseSum / 3    ‘Subtracting Credit memo details from Invoice details

                    footerItem("Discount").Text =  strCMDiscount1 - strCMDiscount / 3    ‘Subtracting Credit memo details from Invoice details

                    footerItem("%_of_Legal_Fees").Text =   strCMAdminFees1 - strCMAdminFees / 3    ‘Subtracting Credit memo details from Invoice details

                    footerItem("Total").Text =  strCMTotal1 - strCMTotal / 3    ‘Subtracting Credit memo details from Invoice details

                End If

            End If

        End Sub

, but when I search (using grid filter), grand Total is not correct because i am not able to access filtered records and filtered credit memo details. Please suggest.

It’s very urgent. Thanks in advance.

Priya
Top achievements
Rank 1
 asked on 07 Jan 2013
3 answers
190 views
Hi

I am planning to upgrade Telerik controls. We never upgraded our controls since the last time we bought the controls in 2008.

Please can you help me get the steps to upgrade as i want to continue using the old version RadControls for ASP.NET Q3 2008 and slowly change one control at a time to new upgraded version.

Thank you
Kavya M
 
Kostadin
Telerik team
 answered on 07 Jan 2013
16 answers
782 views

I'm a little green with Web Development, and after many hours of forum searches, reading documentation and trial and error-ing, I’m cooked…

I'm trying to build a UI that pretty much resembles a WinForm type solution. I've pulled out the pertinent pieces to illustrate my problem. The page starts with the VS master page project, but has been modified to “stick” to all sides and bottom and NOT showing any scroll bars when resizing. It contains a RadSplitter with two RadPane controls. Each contains a RadGrid. The RadGrid has paging enabled and uses UseStaticHeaders so that the paging footer stays stuck to the bottom of the RadPane. You can move the RadSplitBar and both RadGrids stay stuck to the RadPane and resize perfectly.
It all works just great, BUT


(1)
Once you resize a column, the right grid side becomes unstuck. Any resizing of the RadSplitBar no longer resizes the affected grid. When expanding the pane, white space shows up.

(2) This behavior is the same on IE9, Chrome and FireFox. BUT, an additional problem shows up on IE9. In my standard state all Wrap properties are set to false. Resizing a column causes the grid to lose this no Wrap ability. Cell text start wrapping. It also causes the paging footer to slip below the bottom pane edge.


I was going to upload my project, but zip file format isn't acceptable????

Thanks for your help.

 

nazeer
Top achievements
Rank 1
 answered on 07 Jan 2013
7 answers
126 views
I have set up the resources for my scheduler like in this example: http://www.telerik.com/help/aspnet-ajax/scheduler-using-datasource-property.html. I have the scheduler to group by the Room resource.

I have then created a custom filter where the user can select a subset of resources (rooms). When the user change the filter, I alter the Rooms property to hold the selected rooms and call RadScheduler.Rebind(). This does, however, not change anything. All resources are still displayed in the calendar. Am I using the correct approach?
Plamen
Telerik team
 answered on 07 Jan 2013
1 answer
78 views
Is there a backend way of checking the 'Appointments' table to see if certain events/appointment recurrence have happened?

Example - User saves a recurring event for every Monday @ 11am - but the event is for a report to be emailed to them - how do I programmatically check the Appointments table - polling every X minutes, to see if recurring events have 'triggered' ?

Thanks,

Jason
Plamen
Telerik team
 answered on 07 Jan 2013
1 answer
184 views
Hello Sir,
I am a Student. I am Trying The Telerik RadGrid control  In My College Project.
I am RadGrid Bind The Button Click.RadGrid PageSize=4 And My Record is 100 Then I Am Click the RadGrid  Paging But Grid Hide And Not go To Next Record.

Please Solve This Problem
Thanku
Princy
Top achievements
Rank 2
 answered on 07 Jan 2013
4 answers
130 views
Hi, I was testing the RadFormDecorator in different web browsers and noticed some differences, especially with the scrollbars in RadComboBoxes and RadSplitters. Im using Q3 2012 with WebBlue skin.

<telerik:RadFormDecorator ID="QsfFromDecorator" runat="server" Skin="WebBlue" DecoratedControls="All" EnableRoundedCorners="false"  />

In IE8 and IE9, the scrollers are like I want. Decorated with a darkish blue (ie8.png).

In Chrome (23.0.1271.97 m) and Safari 5.1.7 (PC), scrollers are decorated but differently. The filling color is alot lighter and is more grey than blue (chrome-safari.png). The color actually makes it hard to see when using grey background

In FF (17.0.1) and Opera 12.11, scrollers are not decorated at all. Ive read somewhere that FF wont allow scroll decoration and probably it's the same for Opera.

What's bugging the most is the style difference when decoration is allowed. Is this normal and is there a CSS workaround for Chrome/Safari to make it look like the ones in IE?

TIA


Martin
Martin Roussel
Top achievements
Rank 1
 answered on 07 Jan 2013
1 answer
116 views
Hi,

I have a word document, It is a template file with mail merge fields that need to be replaced by RadGrid control.

Having searched your forums, I believe it is not possible to insert a rad grid control into an existing word file.

Can you please guide me how can I achieve this. The only way I see it is getting the HTML out from RadGrid and then inserting that HTML into the word document.  Can you please link me to an example where it shows how can I convert or extract the HTML from a RadGrid. Also what happens if the data in the grid is grouped ? and is it possible to turn of paging before getting the html ?

Thanks
Kam
Kaushal
Top achievements
Rank 2
 answered on 07 Jan 2013
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?