Hello there,
I'd like to access indexed properties of my business object (MyObject.Properties["Blabla"]) inside of my report.
As I've found, it is not possible to use user-defined functions (works only on WinForms version).
So basically I have following choices:
1) Write Stimulsoft plugin service to extend built-in functions. No idea whether it works on Silverlight version.
2) Extend Text control to override data extraction logic.
3) Go to Telerik (reinvest a month of evaluation).
So, the only considerable choice leaves the question how to extent Text control and how to replace it with newer one in Stimulsoft Designer.
Everything said before has only Silverlight platform in mind.
Thank you for you help in advance,
Lex
Extending Stimulsoft Text control
-
- Posts: 34
- Joined: Tue Nov 08, 2011 9:34 am
- Location: Frankfurt
Extending Stimulsoft Text control
Hello,
Can you please describe your task in more details?
Thank you.
Can you please describe your task in more details?
Thank you.
-
- Posts: 34
- Joined: Tue Nov 08, 2011 9:34 am
- Location: Frankfurt
Extending Stimulsoft Text control
I have a business object (POCO) like this:
public class MyBusinessObject
{
public string Name { get; set; }
public string this[string propName]
{
get { some implementation goes here... }
set { some implementation goes here... }
}
}
So what we need is a possibility to access indexed properties on MyBusinessObject.
Something like MyBusinessObject["MyParam"]
public class MyBusinessObject
{
public string Name { get; set; }
public string this[string propName]
{
get { some implementation goes here... }
set { some implementation goes here... }
}
}
So what we need is a possibility to access indexed properties on MyBusinessObject.
Something like MyBusinessObject["MyParam"]
Extending Stimulsoft Text control
Hello,
Thank you for your suggestions.
We have added your request to our to-do list, but I cannot say when it will be available.
Thank you.
Thank you for your suggestions.
We have added your request to our to-do list, but I cannot say when it will be available.
Thank you.