Hi,
I started doing a project with typical controls and now I have been told to use telerik controls. I have created my own skins (till here more or less ok) but problems are coming since I started to use telerik controls instead of old ones. First, I have changed RadGrid by Gridview and I have got some problems.
For example when I was using gridview I was using this code:
grdBusqueda.PageIndex = e.NewPageIndex;
and:
grdBusqueda.Rows[0].Cells.Clear();
grdBusqueda.Rows[0].Cells.Add(new TableCell());
grdBusqueda.Rows[0].Cells[0].ColumnSpan = ColumnCount;
grdBusqueda.Rows[0].Cells[0].Text = GestorRecursos.GetString("NoRecords");
grdBusqueda.Rows[0].Cells[0].HorizontalAlign = HorizontalAlign.Center;
The problem is that for grdBusqueda (ID of my radgrid) PageIndex and Rows are not known properties so compilator donĀ“t recognize them. What shall I do to solve these kind of problems? I thought telerik controls properties would be very similar to the other ones.
Please, suggest me where I can find properties of them?do you understand what I mean?
I started doing a project with typical controls and now I have been told to use telerik controls. I have created my own skins (till here more or less ok) but problems are coming since I started to use telerik controls instead of old ones. First, I have changed RadGrid by Gridview and I have got some problems.
For example when I was using gridview I was using this code:
grdBusqueda.PageIndex = e.NewPageIndex;
and:
grdBusqueda.Rows[0].Cells.Clear();
grdBusqueda.Rows[0].Cells.Add(new TableCell());
grdBusqueda.Rows[0].Cells[0].ColumnSpan = ColumnCount;
grdBusqueda.Rows[0].Cells[0].Text = GestorRecursos.GetString("NoRecords");
grdBusqueda.Rows[0].Cells[0].HorizontalAlign = HorizontalAlign.Center;
The problem is that for grdBusqueda (ID of my radgrid) PageIndex and Rows are not known properties so compilator donĀ“t recognize them. What shall I do to solve these kind of problems? I thought telerik controls properties would be very similar to the other ones.
Please, suggest me where I can find properties of them?do you understand what I mean?