or
public
class
SomeObject
{
public
string
showthisString;
public
DateTime showThisDate;
public
int
showThisInt;
public
string
dontshowthisstring;
public
decimal
showThisDec;
public
int
dontshowthisint;
}
public
void
InSomeMethod()
{
DataTextColumn AwesomeCol =
new
DataTextColumn(
"UniquelyAwesome"
,
"who's awesome?"
)
//uniquename, headerText
AwesomeCol.readOnly=
true
;
//if I wanted it readonly that is, just to display some sort of functionality change
RadGridView grid;
//for code block highlighting
grid.Columns.Add(AwesomeCol)
grid.Link.Link(
"showThisString"
,
"UniquelyAwesome"
);
//when databinding it will find the showthisString property and map it to the column that has a uniquename of UniquelyAwesome
}
public
Class A
{
Some properties From A
some methods From A
}
public
Class B
{
some properties from B
Some methods from A
}
public
Class C
{
public
Aclass a;
public
Bclass b;
}
public Class Gridview
{
private void someMethod()
{
gridview.Template=new Templ;
}
private
class
templ : Template
{
put this information from these classes into those columns
make some columns
do
this
make each four row have a button that play a song
make the background appear
as
something specific depending on teh information it has
}
}
Hello,
I've created a RadContextMenu and wanted to add a few check boxes for user to check and un-check when right click. I see that the RadContextMenu can add combo box, but what about checkbox? After a check box is check. I want it to stay check until the user right click and un-check it. Is this possible?
Thanks in advance for the help.
Public
Sub
New
()
' This call is required by the designer.
InitializeComponent()
Dim
myTheme
As
New
DesertTheme()
ThemeResolutionService.ApplicationThemeName =
"Desert"
End
Sub