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

Dear Support

I am working on Radgrid in which i have to make Custom paging like my page size is 20 and record count =5000 so want to to get only 20 records per page. after clicking on pagination number get next 20 Records.

please guide me in how can i achive this.

Thanks And Regards,
Omkar.

Princy
Top achievements
Rank 2
 answered on 18 Nov 2013
2 answers
129 views

How to set ‘AjaxSpellCheck ContextMenu’ in RadEditor control to open bottom-top instead the default behavior (top-bottom )?


Thanks,
Dusan.
Ianko
Telerik team
 answered on 18 Nov 2013
1 answer
79 views
Hi
I allow the user to set the appointment backcolor and use the office2010blue skin. I have just upgraded to the latest version of your suite and the appointments no longer display the backcolor correctly with this skin.

The can be reproduced on your own demo website at: "http://demos.telerik.com/aspnet-ajax/scheduler/examples/customization/defaultvb.aspx", select the office2010blue skin and set the appointment backcolor and it does not display correctly. The subject also bleeds beyond the appointment if the duration is no ling enough for all the text to fit.

This happens in all browsers and is currently rendering my web application unusable.

Is there a fix please?

Regards,
Paul McGee
Boyan Dimitrov
Telerik team
 answered on 18 Nov 2013
1 answer
77 views
I have a telerik mvc tabstrip. On changing tab 1 to 2, script render in tab1 not getting clear. Say for example test1 and test2, change the tab from test1 to test2 script belongs to test1 persist in test2 also.

Is there any possible to clear or any other fix.

thanks in advance
Santhosh
Petur Subev
Telerik team
 answered on 18 Nov 2013
2 answers
179 views
Good Day,

I have this gridview which gets databinded with two rows(and two columns)

 <telerik:RadGrid ID="RadGrid3" runat="server" AllowAutomaticUpdates="False" AllowPaging="True" AllowAutomaticInserts="false">
                                    <MasterTableView EditMode="Batch" CommandItemDisplay=Top HorizontalAlign="NotSet" AutoGenerateColumns="False" DataKeyNames="Language">
                                        <BatchEditingSettings EditType="Cell" />
                                        <Columns>
                                            <telerik:GridBoundColumn DataField="Language" HeaderStyle-Width="210px" HeaderText="Language"
                                                SortExpression="CodeLang" UniqueName="Language" ReadOnly="True">
                                            </telerik:GridBoundColumn>
                                            <telerik:GridBoundColumn DataField="Translation" HeaderStyle-Width="210px" HeaderText="Translation"
                                                SortExpression="Translation" UniqueName="Translation">
                                            </telerik:GridBoundColumn>


                                        </Columns>
                                    </MasterTableView>
                                </telerik:RadGrid>

As you can see batchediting is enabled and I have no problems anymore with that(I can edit the text on the current gridview)

My problem is when I update the gridview. It seems that I do not obtain the contents of the Translation column. I got an idea based on your documentation link http://www.telerik.com/help/aspnet-ajax/grid-insert-update-delete-at-database-level.html but I always get an out of bounds issue(because the control count is 0). I tried using e.Item.cells but still the string I input in the Translation column isn't being passed in the codebehind(it returns "" or nothing). Thanks in advance
Nelbin
Top achievements
Rank 1
 answered on 18 Nov 2013
1 answer
84 views
Hi,
I am using Rad Grid with batch editing feature. It contains GridTemplateColumn with item template as label and EditItemTemplate as drop down list. When I am selecting value in dropdown it shows me the selected value.
It works good in general scenario. 
But I want to show some dynamic information of cell value when user is moving mouse in image placed in same grid cell.
So I have PopupControlExtender to show dynamic help. 
Now when I am editing this cell new value is not display in cell.  

Any help will be appreciated.

Thanks,
Angel Petrov
Telerik team
 answered on 18 Nov 2013
1 answer
341 views
Hello,

I am using RadComboBox in my application. I have used Load On Demand feature when user scroll down in the list inside rad combo box. 
Its working fine. I have used check box true inside the list item. 

I have thousands of item in the list, So I have used Load on demand feature. I want use Search feature, so user can search by entering text in the combobox then they can find quickly particular records. for this things below is demo given by you...

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

My problem is that when I am entering text in the combobox, text is stays just 1 or 1/2 seconds after that text is disappearing from the combobox.

I have checked in the above demo url. You have not used Checkbox inside that list. When I remove checkbox from the list. Its working fine. I dont want to remove checkbox. As its a client requirement, I want to keep the selection of records from the list items.

Please help me here.. I have lost my 6-7 hours to fix this issue today, but problem is still there.
Please let me know what cause here.

Thanks,
Princy
Top achievements
Rank 2
 answered on 18 Nov 2013
1 answer
100 views
HI all i havea radcombo box, inside a templateform,  that only loads, data when i write something.
the problem is what to do load on pressing the dropdownbutton.
Or Loading data automatic, and selecting the value that previous was on the grid.

I see many places to use selectedvalue but for some reason it doenst apear on my options.

Help
Princy
Top achievements
Rank 2
 answered on 18 Nov 2013
1 answer
261 views

Hi there i have a radgrid on which i have to find a value and if the item is found then generate message

below is my code:

Protected Sub btnAdd_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnAdd.Click
        If IsAlreadyExist() Then
            ram.Alert("")
        Else
            If IsAlreadyAdded() Then
                ram.Alert("")
            Else
                employees()
            End If
 
 
        End If
    End Sub
and here is the IsAlreadyAdded mehtod in which iam trying to find a specific value in grid if it exists it will return false but FindItemBykeyValue isnt working.
Private Function IsAlreadyAdded() As Boolean
        'If rgListnk.MasterTableView.Items.Count > 0 Then
        Dim itm As GridDataItem = rg.MasterTableView.FindItemByKeyValue("DEFAULT", "Y")
 
        If IsNothing(itm) Then
            Return False
        Else
            Return True
        End If
 
    End Function
Thanks...

Princy
Top achievements
Rank 2
 answered on 18 Nov 2013
3 answers
286 views
I have a very odd problem with one of my RadGrids...

I initially had a problem where I couldn't type double quotes (") into the filter boxes in my RadGrid..  I could type any other character including single quotes (') in, but not doubles.

I eventually tracked it down to this line inside the ClientSettings tag for the grid :
<KeyboardNavigationSettings AllowSubmitOnEnter="true" EnableKeyboardShortcuts="true" />

If AllowSubmitOnEnter is false or removed from the code, I could enter double quotes.

Then I noticed that when I press the enter key inside one of my textboxes up in the filter row of the grid, the filter dropdown list for the column to the right was shown.  It has the same effect as if I'd clicked on the "Filter" icon next to the filter box in the adjacent column.  The list shows in the top left corner of the screen.

My custom code to show a new RadWindow still fires, correctly, but my client won't accept this as it stands..

I have attached a screenshot of what happens..
- Capture1.png shows whats on screen
- Capture2.png shows what happens when I hit Enter in the first textbox.

I will post a stripped down version of my page with as much removed as possible while still showing the problem.

If AllowSubmitOnEnter is false or removed from the code, I could enter double quotes, but this problem shows.  If I set AllowSubmitOnEnter back to "true", the problem disappears, but I can't enter double quotes into any of my filter textboxes.

Does anyone have any idea what or why this is happening..???

Thanks
Adam
Top achievements
Rank 1
 answered on 18 Nov 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?