Hi all,
I need the radbutton control not to autogenerate styles. I'd like to style the control with my css style sheet.
To put it simple, if I check the generated HTML for the control, I find something like:
class="RadButton RadButton_Default rbSkinnedButton myCssClass"
I don't want the first 3 class, but only my own class, myCssClass
Is there anyway to work it around?
Thank you
resizeToFit(false, true) works perfectly when the grid doesn't have group by. When the group by is applied to the grid, the resizeToFit(false, true) doesn't honor the group by sub headers. The data seems to be overflowing in the grouped by header as shown in the screenshot.
How can I achieve the autofit all the contents in the grid including the grouped by sub headers?
Hi
I have a issue that, I show popup and using window.timeOut to bind data to Radgrid and then it will auto export grid to pdf file but I can't auto close popup when radgrid finish exporting. So how to know that when radgrid finish exporting pdf file
Best Regard
Nguyen
Sorry, because my english is not good
Hi,
I have left panel (treeview) different size then in right panel (grid)
Why is that? I have set same font type and size for whole fileexplorer.
thanks
Hi there;
I have a grid with column definitions similar to the following:
<
telerik:GridNumericColumn
UniqueName
=
"R1"
Visible
=
"true"
ReadOnly
=
"false"
HeaderText
=
"Q1"
DataField
=
"R1"
DataFormatString
=
"{0:0}%"
HeaderStyle-CssClass
=
"EntryColumn"
ItemStyle-CssClass
=
"EntryColumn"
/>
The EntryColumn class just has a simple width:30px definition, with nothing else.
The grid respects the column width until I add the Command Bar display - with that on, it reverts to just showing the columns in the default width. I can fix it using ItemStyle-Width, but I'd rather use a class definition as I have several of these types of grids scattered throughout the app.
Anybody know what I'm doing wrong?
Thanks,
Jason
Hi guys, i need to persist file across Postback while users click on RadWizard NextButton.
I can't use PostbackTriggers because i don't know the Nextbutton ID. Can you give me an advice or an alternative ?
Thanks much for your time.
hi
I have all the items expanded during page load, but i need to also change the background color of the parent items to transparent. How should i go about it? This is my code. Thanks
if (!IsPostBack)
{
foreach (RadPanelItem item in RadPanelBar1.GetAllItems())
{
if (item.Items.Count > 0)
{
item.Expanded = true;
}
}
}