Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
77 views
I have a grid that contains a variable number of columns.  The last column (on right) contains dropdown or toolbar of all available actions that can be performed on the given row.  I'd like this column to remain in view at all times.  I think frozen columns is exactly what I need -- except on the right side rather than left.  Is this possible?

Thanks.
Randy
Top achievements
Rank 1
 answered on 19 Feb 2009
2 answers
187 views
I am thinking that the plain grey background for the drop down sub menu
would be greatly enhanced by a shadow at right and bottom to give
the effect of the submenu floating.

I suppose with an item template it could be done with images but it seems there
should be an code/ajax way to achieve the same result. Or just a property?

Any ideas very welcome. If I solve it I'll come and post the method here.

I am using the Black skin

thanks!

Clive
Clive Hoggar
Top achievements
Rank 1
 answered on 19 Feb 2009
1 answer
171 views
I have a database operation that merges a large amount of records and takes several minutes to complete. What is the best method to handle an async operation and relay the results back to the user without timing out the browser.

Kevin
SamVanity
Top achievements
Rank 2
 answered on 19 Feb 2009
4 answers
118 views
Hi,

I would like to know if this is possble i have 2 Resource which are Company and Contacts

i would like to is select a Company and Change the contacts resource for contacts within the company is this possble

Thanks
Peter
Telerik team
 answered on 19 Feb 2009
2 answers
175 views
Is there a way we can use page method instead of web service? If so, what are the steps involved to make this happen?
SamVanity
Top achievements
Rank 2
 answered on 19 Feb 2009
1 answer
303 views
Using ASPNET AJAX Q3 2008 - How do I add an Rad Progress bar when I am inserting the selected file into a SQL DB varbinary please?
I have dragged and dropped the following items on to a blank page:
 

<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />

 

 

<telerik:RadUpload ID="ruFile" runat="server" ControlObjectsVisibility="None" MaxFileInputsCount="1" Skin="Default" />  

 

 

<telerik:RadProgressArea ID="RadProgressArea1" runat="server" />

 

 

<telerik:RadProgressManager ID="RadProgressManager1" runat="server" />

 

<

 

asp:Button ID="btnNext" runat="server" Text="Next" />

---------------------  On clicking "Next", this code is executed :

Public Sub InsertToSQL(ByVal inFile As UploadedFile)  

 

 

  

 

Dim Filedata As Byte()
Dim Filesize As Integer

 

 Filesize = inFile.InputStream.Length

 

 

 

inFile.InputStream.Read(Filedata, 0, Filesize)
Dim db As Database = DatabaseFactory.CreateDatabase("mySQLString")

 

 

 

 

Dim cmd As DbCommand = db.GetStoredProcCommand("spInsertDoc")

 

 

 cmd.CommandTimeout = 60

 

 

db.AddParameter(cmd,

 

 

 

 

"@filedata", SqlDbType.Binary,Filedata.Length, ParameterDirection.Input, False, CType(0, Byte), CType(0, Byte), Nothing, DataRowVersion.Current, Filedata)
db.ExecuteNonQuery(cmd)

 

 

End Sub

 

 

 

 

 

 

 

 

 

 

Genady Sergeev
Telerik team
 answered on 19 Feb 2009
1 answer
89 views
I use RadTree control on my master page. If i click a link on it, navigates to the target page but cannot expand the node in which the item clicked.

What can i do to solve it?

Thanks...
Hürkal
Top achievements
Rank 1
 answered on 19 Feb 2009
2 answers
162 views
Hi

Is there a way of preventing the < > characters being entered in RadTextbox. I tried implementing a new control derived from the RadTextbox but the radtextbox renders a span as the outer control so i could not consume the onkeypress events etc.

Then i looked at the control suite and found that RadInputManager might do the job. But i have been unable to construct a regular expression which will ensure that the brackets <> are not allowed in the textboxes.

Can anyone help please.

Thanks.
Amar
Top achievements
Rank 1
 answered on 19 Feb 2009
2 answers
128 views
Hi Experts ..

I have two tabs, in the first tab there is a RadGrid, the second tab is disabled on page load. I want the second tab to be enabled when a row is selected on the RadGrid of the first tab. is that possible? is there a code sample to do this?

Thanks,
ahmad
Top achievements
Rank 1
 answered on 19 Feb 2009
3 answers
243 views
Hi, I was browsing this topic http://www.telerik.com/help/aspnet-ajax/client-update-insert-delete.html looking for a way to insert a new item at the end of a RadGrid since I'm having a few issues. I was hoping there was a simpler way to do this. Let me briefly explain what I'm trying to do.

I'm attempting to create more of a quick data entry style grid. In order to do so every cell in every row of my grid has a RadTextBox control in which the user can enter data. If the grid initially has 3 rows of data I append a 4th row that is empty, the row designated for the next set of data to be entered. When the user types into a textBox of the last row in the grid I want to do a client-side insert of a new, empty row.

Each textBox has the following javascript function assigned to its OnKeyPress ClientEvent:

        function DetailGridKeyPressed(sender, args)  
        { 
            var masterTable = $find("<%= EntryGrid.ClientID %>").get_masterTableView(); 
            var items  = masterTable.get_dataItems(); 
            var i = 0; 
            var j = 0; 
             
            for(i = 0; i < items.length; i++)  
            {             
                if (items[i].findControl(sender.get_id()) != null)  
                { 
                    if (i + 1 == items.length)  
                    { 
                        masterTable.insertItem(); 
                    } 
                    break
                } 
            }   
        } 

But when masterTable.insertItem() executes I get the following javascript error:

Sys.WebForms.PageRequestManagerServerErrorException: Insert item is available only when grid is in insert mode.

Is there a way I can put the grid item insert mode on the client?

Thanks in advance.
Rosen
Telerik team
 answered on 19 Feb 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?