or
lstAreasDisponibles
(listControl) properties :private
void
cargarDatosListAreaDisponible()
{
string
query =
"SELECT Vista_Cat_Adscripcion_SIRH.Indice, Vista_Cat_Adscripcion_SIRH.Nombre "
+
"FROM Vista_Cat_Adscripcion_SIRH INNER JOIN "
+
" Vehiculos ON Vista_Cat_Adscripcion_SIRH.Indice = Vehiculos.IdArea "
+
"GROUP BY Vista_Cat_Adscripcion_SIRH.Indice, Vista_Cat_Adscripcion_SIRH.Nombre, "
+
" Vehiculos.Status "
+
"HAVING Vehiculos.Status = '1' "
+
"ORDER BY Vista_Cat_Adscripcion_SIRH.Nombre"
;
Query obj =
new
Query();
DataTable dt = obj.obtenerSelect(query);
string
[,] datos =
new
string
[dt.Rows.Count, dt.Columns.Count];
for
(
int
fila = 0; fila < dt.Rows.Count; fila++)
{
RadListDataItem rldi =
new
RadListDataItem();
rldi.TextWrap =
true
;
rldi.Text = dt.Rows[fila][1].ToString();
lstAreasDisponibles.Items.Add(rldi);
}
}
We have a silver light page . In the silver light page one graph and grid are there, grid having more than six page data, in the print only one page data is coming and other page is blank.
Could you please suggest on this issue.