Tagged Questions
1
vote
1answer
768 views
ComponentArt: Clear a cell in a grid if it is a certain DateTime
I currently have a ComponentArt Grid, which has a column containing DateTime values. In the even that a certain date is used, we want to keep the cell empty.
Since DateTime is a struct it cannot be ...
0
votes
0answers
12 views
ComponentArt Callbacks issue
I have a lot of ComponentArt:Callbacks in my ASP.NET web application project.
Is there a way to access global events (or another method) - to add behavior for all these callbacks in one place? (block ...
0
votes
1answer
65 views
Disabling controls causes strange error
I am attempting to disable controls on an ASP.NET page while processing is in progress. To this end I adopted the solution from here, running down the DOM tree and disabling all the child controls. ...
0
votes
0answers
16 views
How do I set the colour of a line on a ComponentArt chart?
I'm trying to draw a ComponentArt chart with some lines on it whose colour I need to specify at run time. I have found a recommendation here following on from this discussion, but unfortunately it ...
0
votes
0answers
51 views
ComponentArt NumberInput: cannot set value to null
I'm fairly sure that one used to be able to set a ComponentArt NumberInput value to null using...
myNumberInput.value = null;
but since installing UI Framework 2011, this has started blowing up ...
0
votes
0answers
200 views
ComponentArt Callbacks delay
I have been using the callback control in ComponentArt and it's all been working fine locally, however I have just put the web application onto the production server and we are now looking at up to 10 ...
0
votes
1answer
313 views
Adding a graphic to the a ComponentArt Grid control cell
I am using the ComponentArt Grid control to display some text which works fine, an example line is shown below.
<ComponentArt:GridColumn width="70" DataField="ActiveState" HeadingText="Active ...
0
votes
1answer
410 views
C# WebBrowser handling when triggering a ComponentArt CallBack click/event
I am trying to navigate to a page with a hidden browser from within a C# application, click on a link and verify the click worked.
Flow:
- navigate to "http://mypage"
- click on a link, the link HTML ...
0
votes
1answer
800 views
ComponentArt Grid OnKeyPress Reset
Is there a way to reset the on key press search value and state through code (C#)?
The ComponentArt (CA) grid is being used to select a record from the database to update. I need to reset the search ...