This is a migrated thread and some comments may be shown as answers.

Numeric Columns with Client Side

1 Answer 45 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Adam Lindsay
Top achievements
Rank 1
Adam Lindsay asked on 17 Jun 2010, 07:04 PM
I have a grid with a bound column:

<telerik:GridBoundColumn HeaderText="<%$ Resources:Common, Load %>" DataField="LoadNo"

 

 

UniqueName="LoadNo" SortExpression="LoadNo" HeaderStyle-Width="30px" />


I make a javascript call to a web service and bind the results to the grid:

function

 

updateMCTGrid(result) {

 

 

try {

 

ShowHideLoadingPanel(

'Hide', MCTransferGrid.ClientID);

 

MCTransferGrid.get_masterTableView().set_dataSource(result.Data);

MCTransferGrid.get_masterTableView().dataBind();

MCTransferGrid.get_masterTableView().set_virtualItemCount(result.Count);

 

}

 

catch (e) {

 

ShowHideLoadingPanel(

'Hide', MCTransferGrid.ClientID);

 

}

}


The "LoadNo" is a number that can return 0.  When binding I see every non-zero value but, 0 show as blank in the column. 

Any thoughts?

 


 

 

1 Answer, 1 is accepted

Sort by
0
Rosen
Telerik team
answered on 22 Jun 2010, 11:36 AM
Hi Adam,

Can you please verify that you are using latest (2010 Q1 SP2) release of RadControls for ASP.NET AJAX?

Sincerely yours,
Rosen
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
Tags
Grid
Asked by
Adam Lindsay
Top achievements
Rank 1
Answers by
Rosen
Telerik team
Share this question
or