5 Answers, 1 is accepted
0

Shinu
Top achievements
Rank 2
answered on 23 Jun 2008, 05:16 AM
0

Brendan
Top achievements
Rank 1
answered on 03 Mar 2010, 03:33 PM
Is there any functionality which inserts records from the clipboard content of Excel into Database table.
Like ctrl+C on excel creates a copy in clipboard. Clicking Paste(BUTTON IN GUI) should PARSE the clipboard data into rows and columns and insert into database table. Display Grid bound along with the inserted data. Please let me know if this functionality can be done in a simpler way.
0
Hi Brendan,
Basically, the bottleneck here is accessing the data from the clipboard, rather than anything else. The clipboard data, which is populated when the user copies some data, is not accessible on the server. Also, there is no straightforward way to access this data on the client. Other than this, the grid datasource can be updated to contain additional items, and upon rebinding the grid instance, these items will be properly reflected.
All the best,
Yavor
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Basically, the bottleneck here is accessing the data from the clipboard, rather than anything else. The clipboard data, which is populated when the user copies some data, is not accessible on the server. Also, there is no straightforward way to access this data on the client. Other than this, the grid datasource can be updated to contain additional items, and upon rebinding the grid instance, these items will be properly reflected.
All the best,
Yavor
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Daniel
Top achievements
Rank 1
answered on 24 Jan 2013, 11:00 PM
We are not able to use Ctrl V with RadGrid. Right clicking and selecting Paste works. Also, Ctrl C and right-click paste works. How do you implement pasting via Ctrl V?
0

Daniel
Top achievements
Rank 1
answered on 24 Jan 2013, 11:09 PM
It works, there was some custom javascript filtering out keys. Thanks anyway.