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

I have a strange problem with the Gridcheckboxcolumn the row in edit mode (edit in place) . 
For at least one client using Chrome Browser (v 23.0) ,or on IE9, on a PC, the checkbox cannot be toggled. It ignores all clicks! 
All the other fields on the edit form work fine however.

On my Machine (a mac) using Chrome browser of the same vintage (or safari or IE or firefox), there is no issue
with the checkbox column. Checkbox can be toggled as expected.

Can someone give me pointer as to how to address this? I am baffled.

The column is like this:

<telerik:GridCheckBoxColumn DataField="PayOnline" DataType="System.Boolean"
            HeaderText="PayOnline" SortExpression="PayOnline" UniqueName="PayOnline">
            <HeaderStyle Width="30px" />
        </telerik:GridCheckBoxColumn>

I am using Q2 2010 . Site is running on Windows Server 2008 R2 with ASP.NET 4.0

Thanks for help!

Clive
Clive Hoggar
Top achievements
Rank 1
 answered on 07 Jan 2013
2 answers
90 views
Hello, I'm using the following example in the demos (Specifically the server side automatic one using VB code):

http://demos.telerik.com/aspnet-ajax/combobox/examples/populatingwithdata/autocompletesql/defaultcs.aspx

I would like to be able to display/enable a button that is triggered when no match is found for what you have entered, that button would allow you to insert a new row into my table of items bound to the combobox using the text currently typed in the entry section of the combobox.

Are there any examples you can provide of how to do this?


Brock
Top achievements
Rank 1
 answered on 07 Jan 2013
1 answer
126 views

I have a RadChart that will always contain 365 plot points. Each plot points represents a dollar value for a day. The last point being today and the first point being 365 days ago.

I bind a list of a simple object containing properties for Dollar and DateTime to the radgrid.

What I'm trying to figure out is how to display a X-Axis Tick line and Label for the point corresponding to the first of every month.

See my screenshot below with point ranging from Apr 22, 2011 to Apr 21, 2012. The result I am looking for is in purple (Note that I didn't draw out all of the labels, just enough to give an idea):

Link To Screen Shot
Petar Kirov
Telerik team
 answered on 07 Jan 2013
3 answers
75 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
114 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
81 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
219 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
884 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
136 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
83 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
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?