Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
Support and Learning
Productivity and Design Tools
Hello, I have a gridview as shown in the picture, I'm trying to iterate throw all group header rows, and access the progress bar in order to set a image for the progress bar.
Is this possiple?
Thanks in advance
Note: This is how they are created. I'm trying to iterate throw them outside the below override function
protected override void CreateChildElements() { base.CreateChildElements(); stack = new StackLayoutElement(); stack.Orientation = Orientation.Horizontal; stack.StretchHorizontally = true; checkBoxElement.StretchHorizontally = false; checkBoxElement.CheckStateChanged += checkBoxElement_CheckStateChanged; textElement.TextAlignment = ContentAlignment.MiddleLeft; this.Children.Add(stack); stack.Children.Add(checkBoxElement); stack.Children.Add(textElement); /////////// pro.StretchHorizontally = false; pro.AutoSize = false; pro.Size = new Size(250, 45);//48 pro.Alignment = ContentAlignment.MiddleRight; pro.Margin = new Padding(0, 0, 0, 5); pro.HighlightColor = Color.FromArgb(191, 219, 255); stack.Children.Add(pro); }