Home > Backend Development > C#.Net Tutorial > How does JavaScript client get the value of Telerik RadGrid

How does JavaScript client get the value of Telerik RadGrid

巴扎黑
Release: 2016-12-19 17:12:05
Original
1485 people have browsed it

Many codes on the Internet cannot be used. The following code has been verified to be usable:

Java code

var MasterTable = grid.get_masterTableView();  
var selectedRows = MasterTable.get_selectedItems();  
var row = selectedRows[0];  
var cell = MasterTable.getCellByColumnUniqueName(row, "ID");  
cell = cell.innerHTML;
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template