or
RadSchedulerLocalizationProvider.CurrentProvider =
New CustomSchedulerLocalizationProvider
Everything appears translated in the local language except the days of the week in RadScheduler's header columns which are still in English:
Monday, Tuesday, Wednesday...
Is it possible to programmatically change the text of these header columns?
Best regards,
Alain
this.CollectionGrid.TableElement.RowHeight = 30;
this.CollectionGrid.TableElement.GroupHeaderHeight = 30;
this.CollectionGrid.TableElement.FilterRowHeight = 30;
this.CollectionGrid.TableElement.TableHeaderHeight = 30;
Form frm = new Form();
RadGroupBox groupb = new RadGroupBox();
frm.Controls.Add(groupb);
dtDataTable.Columns.Add(
foreach (Objeto oObjeto in ArrayObjetos)
{
DataRow drRow = dtDataTable.NewRow();
drRow [
"Ide"] = oObjeto .Ide;
drRow [
"Nom"] = oObjeto.Name + " " + oObjeto.LastName;
}
dtDataTable.Clear();
dtDataTable=
null;if(dtDataTable1 != null)
dtDataTable1.Clear();
dtDataTable1=
null;if(dtDataTable2 != null)
dtDataTable2.Clear();
dtDataTable2=
null;
The question is, We are releasing resources correctly or the problem may be the way I'm filling?
Thank you very much.