|
Hi
I am wondering how I would keep the focus/selection on a TextArea even when a button outside is clicked.
Like how the RichTextEditor does it.
Started by James_Dude on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Lt;mx:Button id="test" label="Test" /> </mx:Application>
In the event handler for the click.
|
|
I am stuck working with the TabContainer control of the Ajax Contol Toolkit.
When a user clicks a tab, I am trying to capture which tab was clicked (like the index).
Anyone out there know if this is possible?
Started by Mike M on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The TabContainer will show the appropriate page, and the user can interact with the controls on that tab page.
Control Toolkit myself, too - but I've never felt the urge to know when which tab was clicked.
|
|
How can I capture user interaction on a website? How many links a user has clicked. From where user has come. I want to create my own logic. I don't want to use any statistics tool. How can I accomplish this?
Thanks in advance
Started by g.revolution on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
But do link....
This will be:
$('a') .livequery('click', function(event) { alert('clicked'); return false; });
If you want to capture what or mark user(by cookies), than you can check what links are clicked by capturing onclick event.
|
Ask your Facebook Friends
|
How do I check if the user clicked with a mouse or with a pen stylus on a C# control.
For eg. If the user clicks a text box with a pen button then I want an input panel to pop up but if he clicks with a mouse then it shouldn't. So how do I check whether...
Started by Anirudh Saraf on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This has more details about how stylus and mouse events interact.
UIElement.StylusDown.
Events.
|
|
I have a html div layered on top of an interactive flash movie, but when the mouse moves over the div, it can't interact with the flash (the view changes as the mouse moves or is clicked). Is there a way to have the flash recieve the mouse movements and...
Started by Steve X on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Try something like this:
<object> <param name="wmode" value="transparent" /> <embed src="example.swf" wmode="transparent"></embed> </object>
The main things to note are the <param /> tag with the transparent attribute... .
|
|
I want to display a message box when any person clicks on the menu item which is not enabled I have tried the following coding but it is not displaying the message box.
Coding:
private void updateFineDetailsToolStripMenuItem_Click(object sender, EventArgs...
Started by Sheetal on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
From your code I think you can do this just - it will not raise the click event, and....
If you need to display click show a message box and prevent the default action.
As I understand, a disabled menu item does not raise Click events.
|
|
I've got two controls, a TextBlock and a PopUp. When the user clicks (MouseDown) on the textblock, I want to display the popup. I would think that I could do this with an EventTrigger on the Popup, but I can't use setters in an EventTrigger, I can only...
Started by viggity on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I tried leaving off the storyboard that would set the value> <ControlTemplate TargetType="ToggleButton"> <TextBlock> Click Me Here!!<.
interact with controls on the popup.
|
|
I'd like to write some interactive GUIs in Perl. I've used TclTk but it looks dated. I've written QT code for C++, but the PerlTk module hasn't had a release in several years. Googling around I see other possible options.
What are good packages for this...
Started by mmccoo on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Gtk2->main_quit; } ); my $i = 0; $button->signal_connect( clicked => sub { $label->set.
|
|
I am working on a form filling program and I'm looking for suggestions on implementing data validation.
I'm considering a two-phase approach:
Interactive - after user enters data and attempts to move to the next field, flag invalid data with something...
Started by Kenneth Cochran on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could are back where you started ....
Also validate, but try to avoid step by step acceptance (click ok, and message per field missing, incorrect).
Icons can then be clicked for explanation of why it is incorrect.
They are in the way).
|
|
A customer has asked us to a add a feature to his website allowing visitors to colour in panels in a simple line drawing.
The website visitor will have a limited palette to choose from and will select a colour and click in a shape within the line drawing...
Started by hawbsl on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
To work out where they clicked, identify the image section under the mouse click location, and replace.
|