Hello everyone.
When I use the RadGridView control, the left-most column of my table is empty. I want it to be the number 1, 2, 3... that generates the automatic sequence. How to set up to achieve this effect.
hi
how can disable special LegendElement ?
i want the series in enable but title is disable
I have a couple questions regarding Panorama:
s it possible to change the scroll type from horizontal to vertical
Hello,
I found a weird behavior that if the text of RadGalleryItem is longer than the image width, the margin/padding settings will lost.
To reproduce the issue, I changed the demo from:
https://www.telerik.com/forums/radgalleryelement-display-issue
RadGalleryItem blueItem1 =
new
RadGalleryItem(
"blue 1"
, Properties.Resources.group);
this
.radGalleryElement1.Items.Add(blueItem1);
blueItem1.TextImageRelation = TextImageRelation.ImageAboveText;
blueItem1.ImageAlignment = ContentAlignment.MiddleCenter;
blueItem1.Margin =
new
Padding(1);
RadGalleryItem blueItem2 =
new
RadGalleryItem(
"blue 222222222"
, Properties.Resources.group);
this
.radGalleryElement1.Items.Add(blueItem2);
blueItem2.Margin =
new
Padding(1);
blueItem2.TextImageRelation = TextImageRelation.ImageAboveText;
blueItem2.ImageAlignment = ContentAlignment.MiddleCenter;
RadGalleryItem blueItem3 =
new
RadGalleryItem(
"blue 3"
, Properties.Resources.group);
this
.radGalleryElement1.Items.Add(blueItem3);
blueItem3.Margin =
new
Padding(1);
blueItem3.TextImageRelation = TextImageRelation.ImageAboveText;
blueItem3.ImageAlignment = ContentAlignment.MiddleCenter;
RadGalleryItem blueItem4 =
new
RadGalleryItem(
"blue 4"
, Properties.Resources.group);
this
.radGalleryElement1.Items.Add(blueItem4);
blueItem4.Margin =
new
Padding(1);
blueItem4.TextImageRelation = TextImageRelation.ImageAboveText;
blueItem4.ImageAlignment = ContentAlignment.MiddleCenter;
Please see the attach photo.
I've done 3 tests. First 2 tests work well as long as the text size is shorter than image width.
In the third one, I named on purpose blueItem2 with a long name "blue222222". In this case, I've lost all my margin settings.
Dear All,
I have too many data to show. How to index it in the following figure
When you use a datagridview, it will be automatically added, but how do you do that in RadGridView
Is this possible...
Best regards
In Word-inspired project I want to display a document and prevent any modifications to it. If I set radRichTextEditor1.IsReadOnly = true then user cannot type in it, but commands from ribbon bar still work (text can be turned bold, for instance). How to disable all the commands from ribbon bar? My document already has document protection enabled, but it also has one permission range.
Interestingly, looking into Telerik code, there is a RichTextBoxCommandBase.CanExecute method, but it's apparently being ignored, as ribbon bar commands are executed even when CanExecute returns false.
Hello,
If I set margin or padding value for a gallery item and then add it in the collection of the gallery items, the margin/padding doesn't work incorrectly (see the attach photo: set_margin_before_addrange).
But if I add gallery item first, and then set its margin/padding value, it works.
Could someone tell me why?
Thank you by advance.