Editor.CssClasses.Add(
""
,
""
)
PagerStyle-Position
="Top" PagerStyle-HorizontalAlign="Center"
Thanks,
GridBoundColumn
GridBoundColumn
gc = RadGridDocument.MasterTableView.Columns.FindByUniqueName("Index") as GridBoundColumn;
foreach (var item in Items)
{
if (item.ParentID > 0)
gc.ItemStyle.Font.Bold =
true;
else
gc.ItemStyle.Font.Bold =
false;
}
I have a RadGrid in my page.
For a particular string type column i had set the default filter function as "Contains".
On first page load i found that it appears as "Contains" in the Filter menu.
But if lets say, i filter any other column with any filter criteria and again come back to this column and open the filter menu the default filter function now automatically changed to "No Filter".
Many work arrounds i had tried but is not working for me, cant even found the exact cause for it.
Can any body help me in this regard ? I want to know why it happens like this and what may be the fixes for this ?
Thanks in advance. :)
function
GetAddress(rcbCity) {
// rcbCity is the clientID of the RadComboBox with ID rcbCity .
how
do
i get the selected index,item and value here?
}
if (!IsPostBack)
{
btnMap.Attributes.Add(
"onClick"
,
"GeocodeAddress('"
+
this
.rcbCity.ClientID +
"'); return false;"
);
}