Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
608 views
Want to delete the selected row from radgird ?
 how to delete the row from Radgrid in vb.net


Need Urgent
Shinu
Top achievements
Rank 2
 answered on 16 Feb 2010
3 answers
162 views
Hi

Special character creating problem while searching in grid.
Sample file is attached.

In RemoteIDNumber search box I put    977 and searched with contains its giving me the right records, its OK.
but what i want is
when i give 97715 it should give me two records like -977-15 and 9771559 (first two record in attached file)
but its giving only 9771559. I have to ignore the special characters.

How can i do this type of serach by ignoring special characters? 

Regards
Manish sain
maria mazilu
Top achievements
Rank 1
 answered on 15 Feb 2010
2 answers
554 views
I have a grid in which the records have special characters like "ă" , "â", "î", "ÅŸ", "Å£". When I filter a certain column I want as response the records containing these special characters although in the corresponding filter textbox I type "a" instead-of "ă" or "â".  In other word in column I have the records "mamă" and "mama", when I type in the filter text-box "mama" I want to get both records.
I figured that the best method would be to use regular expressions to ignore the a and t and s and i.
maria mazilu
Top achievements
Rank 1
 answered on 15 Feb 2010
1 answer
89 views

I have a RadContextMenu that is bound to a Radgrid. The context menu just allows the user to set the number of rows per page to show. When I use the Context menu on a RadMultipage that has several radgrids, the items being bound to the ContextMenu are incorrect.

For example the first RadContextMenu will have the following items added to it. (5,10,25,100,250,500)

Several other RadContextMenus on the Multipage will have this set of items added to it. (5,10,25,100)

When the page loads, every single ContextMenu on the different pages inside the Multipage has the first set of items added to it. The m_MaximumPaerRowsToDisplay property is being set correctly before OnInit is fired(I can step through and see that the other context menus are having the correct item set added).

The Items are being added to the ContextMenu during the OnInit event.


RadContextMenu1 = new RadContextMenu(); 
        RadMenuItem rmi = new RadMenuItem("Rows To Display".Localize()); 
        //there should always be at least a 5 rows added. 
        rmi.Items.Add(new RadMenuItem("5")); 
        if (m_MaximumPagerRowsToDisplay >= 10) 
            rmi.Items.Add(new RadMenuItem("10")); 
        if (m_MaximumPagerRowsToDisplay >= 25) 
            rmi.Items.Add(new RadMenuItem("25")); 
        if (m_MaximumPagerRowsToDisplay >= 50) 
            rmi.Items.Add(new RadMenuItem("50")); 
        if (m_MaximumPagerRowsToDisplay >= 100) 
            rmi.Items.Add(new RadMenuItem("100")); 
        if (m_MaximumPagerRowsToDisplay >= 250) 
            rmi.Items.Add(new RadMenuItem("250")); 
        if (m_MaximumPagerRowsToDisplay >= 500) 
            rmi.Items.Add(new RadMenuItem("500")); 
        if (m_MaximumPagerRowsToDisplay >= 1000) 
            rmi.Items.Add(new RadMenuItem("1000")); 

Any ideas?

Aaron Mell
Top achievements
Rank 1
 answered on 15 Feb 2010
2 answers
89 views
Hii All,
 i installed telerik setup to my Development server.  And now i tried to create webpart using radGrid. so i added reference

using

 

Telerik.Web.UI;

 

 And i wrote RadGrid gr; But when i build this web part i got one error
" The type 'System.Web.UI.IScriptControl' is defined in an assembly that is not referenced. "

I dont what is the problem, can you explain me in detail how to bind this control with sharepoint list. i already used Asp gridview control now i would like to use Radgrid.





Thank you..
Dipesh
Dipeash Patel
Top achievements
Rank 1
 answered on 15 Feb 2010
2 answers
177 views
Hi,

I have a website built with Telerik controls.  The website was built with version and v2.0.50727 and runtime version 2008.2.1001.35 of the Telerik.Web.UI DLL and Runtime version v2.0.50727 and version 2009.2.826.35 of Telerik.Web.Design.

I want to update to the most recent version of the DLLs because there is some functionality that I really would like to use, namely FilterTemplates (which aren't in this version).  However, when I download the latest update and install them, then reference my project to the new DLLs and remove the old ones, all the formatting is gone, as you can see in the screen shots.

Why does this happen? How can I fix it?  I really would like to update to make use of some of the new functionality that's came out over the last 2 years!

Thanks

/edit
I guess it has something to do with the skins not being compatible like in the sticky, however, these skins are from Q2 2008, and not Q3.
Nick Keefe
Top achievements
Rank 1
 answered on 15 Feb 2010
4 answers
126 views

Hi,
          Anybody have the knowledge in exporting pdf with NestedViewTemplate grid, please direct me the following scenarios

1)Exporting the grid with the nested grid data if it is expanded.
    I am getting the following error when i try to do it
"The '*' character, hexadecimal value 0x2A, cannot be included in a name. "

2) I am not finding the way to apply styles to exported pdf file. I could not able to call ItemCreated event after ItemCommand event. Because i am following the scenario as the Telerik team directed for normal grid. But fails to achieve in NestedGrid

3) I am facing the problem in suppose i call the styles related code inside the export button click event directly. I am getting the following related error after applying font style to header template 

System.NullReferenceException: Object reference not set to an instance of an object.
  at Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDSubsetFont.get_WArray()
  at Telerik.Web.Apoc.Pdf.PdfFontCreator.CreateCIDFont(String pdfFontID, Font font, CIDFont cidFont)
  at Telerik.Web.Apoc.Pdf.PdfFontCreator.MakeFont(String pdfFontID, Font font)
  at Telerik.Web.Apoc.Pdf.FontSetup.AddToResources(PdfFontCreator fontCreator, PdfResources resources)
  at Telerik.Web.Apoc.Render.Pdf.PdfRenderer.StopRenderer()
  at Telerik.Web.Apoc.StreamRenderer.StopRenderer()
  at Telerik.Web.Apoc.Fo.FOTreeBuilder.Parse(XmlReader reader)



So please guide me to achieve the above related scenario for exporting PDF in nested grid

-Thanks

 

Daniel
Telerik team
 answered on 15 Feb 2010
1 answer
81 views

Hi,

I m using radscheduler for my application. I need to display the scheduler default as 24 hrs.

I have tried to display it dynamically, but the appointments in that not displayed properly.

Please give any solution to solve it.

Thanks in advance.

Regards
Maha.

Peter
Telerik team
 answered on 15 Feb 2010
1 answer
129 views
Hi,

I'm looking to do a treeView for my disk.
I would like to display directorys, the number of file in dir, the dir size, and a bar showing the % used space.

Does somebody tryed to do this yet ????

Is it possible ? Is there a sample who can help me ?

I'm working in vb but c# is welcome too

Thanks
Atanas Korchev
Telerik team
 answered on 15 Feb 2010
3 answers
114 views
The SaveScrollPosition="true only seems to save the position in the grid when the vertical scroll bar is moved. If i only move the horizontal scroll bar and enter edit mode, the grid moves back to the home position. if I move the horizontal scroll bar then move the vertical scroll bar (even down and back to the starting position) and enter edit mode, the position is saved and the grid returns to the position I place it in.

How can I make this work when only the horizontal scroll bar has been moved?
Pavlina
Telerik team
 answered on 15 Feb 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?