I have 3 controls with id control_1, control_2, control_3.
I want to hide these controls.
Currently I am using this:
$('#control_1').hide();
$('#control_2').hide();
$('#control_3').hide();
Is there a better way of doing this?
Can I do something like $('control_*').hide();?
Is there a way to find controls with start with a specific...
Hi,
I currently have a code base which has NUnit tests organised into suites. We currently have a build task on our CC box which runs all of the tests in one CC project.
Is there a way we can configure CC.Net to allow us to individually run the different test suites from the dashboard.
Something along the lines of a list of all the su...
I've created a custom column for the datagridview.
The editing control consists of a user control with a multline textbox and button placed on it.
This all works fine unless I size a column left or a row up. The part of the splitter over the background of the user control is fine, but the part over the textbox or button leaves a trail b...
I'm writing a C++ background/server application for Linux/Windows. Is there a standard control/profiling/reporting service I should use to expose my application's current status in a standardized way?
If not, what's a good pattern (or library) to use for exposing this kind of data and control?
Specifically, I want to expose the follow...
I have a working WCF service that I can call via AJAX javascript routine. I cannot get it to work with the Slideshow extender in the Ajax Control Toolkit. No errors reported, slideshow just does not load and run. I can write AJAX javascript routine within the page and successfully access the return results from the WCF service (array of ...
What is the name of the control that combines the function of a button and a combobox? Visual Studio's open file dialog has this control for the "Open" button. You can select "Open" or "Open With". But once you select an action, the corresponding action is taken.
Lastly, is this control available as a standard control in .NET or in Q...
In my parentpage I have dropdownlist, multiview and button. Multiview has a user control.
On click of the button i pass the selected value from dropdown to the user control and call the databind method to populate the user control with corresponding data.
User control has gridview which is populated using objectDataSource. I'm using t...
I have a template called template1.xaml and when I call this in Page.xaml and bind a string to the custom control property called "Title" it works. for example:
<Local:template1 Title="My Title" />
works in Page.xaml, but if I want to use Resx binding like this:
<Local:template1 Title="{Binding Strings.Hello, Source={StaticResource S...
I have an asp:Repeater with an asp:DropDownList in it. The DropDownLists in the repeater raise their SelectedIndexChanged events on every postback, regardless of whether they were changed or not.
Is this a known issue in ASP.NET? Do you know how to work around it?
I found this workaround but would like something prettier if at all po...
I have developed a control in C#. Among other things this control can popup other controls at runtime. When you include the assembly in Visual Studio, the control that I created shows up, but the other controls (the ones my control uses) show up as well. I would rather not have them show up in the toolbox in Visual Studio. Is there a...
Hi Friends.
I am a little new to wpf.
I wanna write a control similar to ComboBox and I'm wondering if anybody knows how to get noticed when a user clicks not inside the combobox boundries. Because combobox closes it's dropdown in this situation.
...
Is it possible even to do this kind of things?
EDIT
Can someone provide a "hello world" demo to try out?
...
So I have a user control in my master page. When it's viewed in IE7 (or IE8 Compatibility mode), it renders behind the page content from the ContentPlaceHolders. I've tried manually setting the z-index of every element in sight, and none of it will put the control in front. Has anyone else encountered this? It works in Chrome, Firefo...
I Have run into a few examples of managing threads with the threading module (using Python 2.6).
What I am trying to understand is how is this example calling the "run" method and where. I do not see it anywhere. The ThreadUrl class gets instantiated in the main() function as "t" and this is where I would normally expect the code to sta...
I have a general idea, and there are some obvious cases, but there are also some gray areas for me - when is it best to use to extend from a component and when is it best to create a user control ? This pertains to a specific work problem I am trying to solve, but the specifics of that are not important - a general answer to this questi...
Hi guys,
I wonder when do you consider to create a user control in .NET? Do you have some basic criteria to exclude your code from the page and introduce a new user control?
Usually I tend to follow those to decide whether I need a user control or not:
When the page seems to be more readable with a separate user control
When some par...
hey all,
I want to instantiate a user control programmatically in a DLL to save it afterwards as PNG file. This is generally no problem with PngBitmapEncoder and RenderTargetBitmap.
This are my questions:
How do I instantiate the control? Simply with the new-operator?
Do I have to instantiate it in an seperate thread?
How do I force ...
I've inherited an AS2 app that has a lot of functionality. I need to embed this thing somehow in my AS3 app so I can execute function calls etc and basically control it. Has anyone ever tried something like this? I'm assuming I'll have to URLLoader the AS2 SWF into a MovieClip and take it from there.
...
Hi,
I'm looking for a planning control (like Outlook's calendar for example) for ASP.NET. I found a lot of non-free controls, but none free (even on http://asp.net control gallery).
Does anyone know about a free planning control?
Thanks.
...
I have inherited a 20-year-old interactive command-line unix application that is no longer supported by its vendor. We need to automate some tasks in this application.
The most troublesome of these is creating thousands of new records with slightly different parameters (e.g. different identifiers, different names). The records have to ...