-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Right now I have a RadToolTip inside of a RadGrid. The RadGrid displays a field from the datasource called "Value". The RadToolTip displays the same thing.
I want to add another RadGrid inside of the RadToolTip. The function setting up the datasource of that second RadGrid should take "Value" as…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a page with a drop-down. Based on the selection in the drop-down, data gets loaded and populates a RadGrid. I am using a custom user control for the EditTemplate, so I can't use radGrid.DataBind(). Instead, I have to use radGrid.MasterTableView.Rebind() in association with a NeedDataSource…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to retrieve all of the children items in a detailtable of an item. I can get the item, but I am having no luck in trying to get the children items.
Here is the relevant code that I have so far
var MasterTable = radgrid.get_masterTableView();
var selectedRows = MasterTable.get_selectedItems();
for…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Iam using the radgrid, in my web application. Iwant to avoid the refetch of records when paging button is clicked on the radgrid.
I have a method SetTodaysAlerts which gets near about 100 records and binds to my radgrid. The page size of the radgrid is 10, hence First, Next, Previous and Last buttons…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a Telerik RadGrid that bound to a datasource object. They are configured to support custom paging, sorting. For paging, only the data of a page is retrieved from the database. Before sorting, it works fine. The select method of the datasource is like
public List<xxx> Select(string sortExpression…
>>> More