Tagged Questions
The active tag has no wiki summary.
25
votes
3answers
13k views
Ruby on Rails. How do I use the Active Record .build method in a :belongs to relationship?
I have been unable to find any documentation on the .build method in Rails. (I am currently using 2.0.2)
Through experimentation it seems you can use the build method to add a record into a :has_many ...
8
votes
1answer
4k views
Codeigniter - handling errors when using active record
I am putting together a few models for my codeigniter site and can't seem to find any word in the documentation of how to handle errors that could occur when using the Active Record system.
The ...
7
votes
1answer
5k views
Xcode iPhone - Base SDK, Active SDK difference?
What's the difference between the "Base SDK for all configurations" and the "Active SDK" in Xcode?
6
votes
3answers
566 views
Confused by CSS pseudo-class :active
I was looking here at CSS :active Selector.
The :active selector styles links to
active pages
That got me thinking, what the heck is an 'active page' in HTML/CSS terminology...
At this point ...
5
votes
3answers
4k views
How to get the dispatched route name in Zend framework?
Current state:
A router is loaded from xml file
two route name within the router are going to the same controller and action, for example: www-language-employee and www-language-trainer are going to ...
5
votes
6answers
863 views
Tool which shows me which files are written in Linux?
I found in IOStat, that some part of my application is writing extensively, but I don't know which process it is and what files it is writing to. In Vista there is a tool fo that which shows the files ...
4
votes
2answers
262 views
Active Directory nested groups
I have a C# 4.0 program working that retrieves all the members for a specific AD group. In this AD group are other AD groups containing other members. I need my program to identity that it is a group ...
4
votes
6answers
5k views
jQuery add class .active on menu
I've got a problem.
I want to add the class "active" on item menu when the relative page is on.
the menu is very simple:
<div class="menu">
<ul>
<li><a href="~/link1/">LINK ...
4
votes
1answer
243 views
Which command line tools can I use to get the currently active application / window on each platform?
I'm trying to create an AIR application to log application usage and the only easy way to get information from the system with AIR is using command line tools and scraping stdout.
I know about tools ...
4
votes
6answers
4k views
How to take a screenshot of the Active Window in Delphi?
For full screenshots, I use this code:
form1.Hide;
sleep(500);
bmp := TBitmap.Create;
bmp.Height := Screen.Height;
bmp.Width := Screen.Width;
DCDesk := GetWindowDC(GetDesktopWindow);
...
3
votes
1answer
222 views
asp.net Active directory membership Provider
I need to use the AD Membership provider for authentication and Authorization for a project. I however do not have access to a domain controller. Is there any way I can simulate either a domain ...
3
votes
3answers
991 views
How put glow on textfield using HTML5 and CSS3
How can i put glow effects on textfield using HTML5 and CSS3 when active like http://www.me.com
Look that i want exactly same.
PS: Sorry for my english, i'm brazilian and still studying.
3
votes
2answers
308 views
Take a screenshot of the active window in mono
is there a way to take a screenshot of the active window using mono under Linux ?
Thanks in advance
Mike
3
votes
4answers
3k views
ORM and Active Record Pattern in PHP?
There are two things that seem to be popular nowadays and I was wondering what are the pros and cons of using something like this: http://codeigniter.com/user_guide/database/active_record.html ?
...
3
votes
5answers
680 views
Best way to keep ASP.Net Session Active
What is the best way to keep asp.net or asp.net mvc session active until user logs out?
*User should be able to activate session even after browser or computer restarts...
In another words, what is ...
2
votes
1answer
25 views
LDAP DirectorySearcher with MemberOf property for user being member of ad_group1 or ad_group2 ( any group or both group )
Current search filter for checking if the user is a member of ad_group1
&(memberOf=CN=ad_group1,OU=my_ou,DC=abc,DC=com)
Need to configure the search filter to check if the user is member of ...
2
votes
2answers
32 views
Active records: Working with a db object
I want to be able to select multiple rows with one query. I was wondering if you can do something like this?
$teamsQuery = $this->db;
foreach( $teamids as $teamid )
...
2
votes
1answer
72 views
jQuery Accordion Collapse with No Items Active
I have a jQuery accordion that by default on page load has all items collapsed. It allows a user to click on an item to open for content and click on the same item to collapse it. A user may also ...
2
votes
1answer
100 views
I want to get the path of current active desktop wallpaper using java
I want to make some changes on active desktop wallpaper like adding watermark.
For that I need to get the path of active wallpaper path. adding watermark I can do.
This can be done using JNA library, ...
2
votes
3answers
68 views
WIll CSS active work on a non-link element
I want a items that have the tag class to be grayed (with a rounded border) when the mouse moves over and when the item(s) are clicked.
A sample item might look like this <span class="tag">Some ...
2
votes
1answer
459 views
Simulate mouse clicks at a certain position on inactive window in Java?
Sorry for the long title. Couldn't think of any way to shorten it.
Anyways, I'm building a bot to run in the background. This bot requires me to click. Of course, I want to be able to do other things ...
2
votes
1answer
81 views
How do I select an object and a count together in Rails 3 Active Record Query?
How do I do something like this in active query?
select product.*, count(product_id) AS product_counts
group by(product.*)
order by product_counts;
I tried this in active query:
...
2
votes
1answer
221 views
Android/iPhone link styling
I'm working on mobile site. I've found that regular a:active styling works for iOS if I include ontouchstart="" in the link code.
For some reason Android devices do nothing when links are clicked.
...
2
votes
1answer
107 views
Clicking on NotifyIcon flips between 3 states (not 2)
I know this can be done... since I've seen other vb.net executables do it.
When I hit the program's NotifyIcon in the SystemTray... I thought I would only need to toggle between:
1> Show my form
...
2
votes
1answer
430 views
How to know if DirectoryEntry is a user or a group?
Hi,
I have the following code to create a tree from the current AD :
public static ActiveDirectory GetActiveDirectoryTree(string pathToAD = "")
{
DirectoryEntry objADAM = ...
2
votes
1answer
342 views
Create ActiveX.exe using .Net 4 and VS2010
My application is vb6 application which refer to delphi active.exe file.
I need to replace this file with C# one.
How can I create activeX exe with VS 2010 and C#?
(needless to say I cannot work ...
2
votes
2answers
68 views
Refactoring this jQuery code
$('.go2page1').click(function () {
$("body").scrollTo({ top: '0px', left: '0px' }, 800);
return false;
});
$('.go2page2').click(function () {
$("body").scrollTo({ top: ...
2
votes
1answer
2k views
:active css selector not working for IE8 and IE9
Here's my site. This is the last problem of a series of cross-browser discrepancies I've experienced and solved thanks to the community.
Basically, in Internet Explorer 8 and Internet Explorer 9 the ...
2
votes
2answers
762 views
Make LI have active state when input is focussed using css
Is there a way to make an <li> have an active state when an input field is focussed using CSS only? If not, any suggestions on the best way to go about achieving this?
See live demo: ...
2
votes
2answers
844 views
How can I search date range in Rails with variable date
How can I do this in rails active record¿?
find all models that match (created_at + 100 days between this month)
Edit:
Ok, Sorry for not be precise this what I'm trying to do in active record in ...
2
votes
2answers
290 views
accordion menu stops working on adding href links
Here my simple accordion :
<script type="text/javascript">
$(function()
{
$("dt.title").click(function()
{
$("div.info").slideUp("slow");
...
2
votes
0answers
298 views
List LDAP trusted domains with Java
We're migrating from C to Java, and we need to query Active-Dirctory Domain to get the list of trusted domains. Until now, we've done it with ADSI.
And a second question. Is the concept of "trusted ...
2
votes
2answers
688 views
Foreground Vs Active window
In Windows, what is the difference between foreground and active window? To be specific, under what circumstances can a foreground window not be an active window? If the 2 terms are referring to the ...
2
votes
2answers
360 views
Rails ajax form entry shown twice
Hello I want to write a small blog with Ruby on Rails (3), with posts and comments submitted via a ajax form.
But when I submit a comment it is often shown twice, and I got no idea why.
when I write ...
2
votes
2answers
1k views
assigning css class to a linkbutton when clicked in asp.net
Consider i have 3 linkbuttons on a page,
<asp:LinkButton ID="LB1" runat="server" CssClass="regular" OnClick="LB1_Click">
Today</asp:LinkButton>
<asp:LinkButton ID="LB2" ...
2
votes
1answer
425 views
Swing active rendering efficiency or how to combine active rendering with gui widgets
Continuing from a previous question, I keep searching for the optimal way to combine active rendering with textfields in Java. I tried several options, using BufferStrategy, VolatileImage or ...
2
votes
1answer
392 views
.NET : Set Active Directory security via Web.config only
Our application requires Active Directory for users to access it. Our goal is to split the business logic and the security.
Here is what I try to do but did not succeed yet :
1) Connect to Active ...
2
votes
2answers
176 views
Using C# with Active Directory Tutorials
Can anyone suggest some tutorials for beginners that utilize the C# language to access Active Directory? Thanks.
2
votes
1answer
85 views
Different types of Id when exposing DTO over WCF
Lets say we have a simple DTO with properties Id, Name. If this DTO comes from database through some data layer, Id should be of type int. If this DTO comes from Active Directory, through some data ...
2
votes
2answers
2k views
Managing active state
<ul>
<li><a href="#">item 1</a></li>
<li><a href="#">item 2</a></li>
<li><a href="#">item 3</a></li>
...
2
votes
4answers
3k views
Java library for capturing active window screenshot
is there any free and open source java library for capturing active window screenshot?
I want to use it to capture any active window, not only SWING windows.
Thanks.
2
votes
3answers
2k views
C# get information about current active window
I have an application which i want to run in the background. I want to get the executable name, for an example IExplorer.exe. I have played around with the following code:
[DllImport("user32.dll")]
...
2
votes
1answer
5k views
Querying Many-To-Many relationship with Hibernate Criteria API
I've the following many to many relation: File 1 --- * File_Insurer * --- 1 Insurer. I'm trying to query this relation using the Criteria API (Active Record) to get Files that meet ALL specified ...
1
vote
1answer
36 views
how to pre-select a jquery mobile input button?
I've done a jquery-mobile controlgroup using input buttons like this:
<div data-role="controlgroup" data-type="horizontal" class="panelSwitcher">
<input type="button" ...
1
vote
2answers
26 views
Applying a style to an active hyperlink without giving each hyperlink a class
I want users to know what page they are currently on by highlighting the hyperlink.
I'm not using a list of buttons if that matters (<li>), I'm just using links.
I don't want to have to give ...
1
vote
1answer
35 views
How to prevent Wifi in off state
My network application do not want the WiFi state of device going to be off.
As in setting page have option under advanced to select the radio as always keeping the WiFi enable as screen go off.
I ...
1
vote
2answers
66 views
How can I add an active state to this jQuery code
Any opinion, how to add an active state (which remains highlighted after selected) to this code?
jQuery:
$(function() {
$("ul#navigation span").css("opacity","0");
$("ul#navigation ...
1
vote
1answer
60 views
CSS change div bg when finger is on it (ipad)
#numpad table td#key1
{
background-image: url("1.png");
}
#numpad table td#key1:active,
#numpad table td#key1:focus
{
background-image: url("1d.png");
}
this works like i want it to on the computer ...
1
vote
1answer
60 views
How to make active a window without a title bar
I can send the message makeKeyAndOrderFront: to make a window active. However, if I send this to a window without a title bar, it doesnt make it active. Is there any way to make a window without a ...
1
vote
1answer
26 views
How do I determine if a JVM is still active from an AIX kornshell script
I'm working on some system monitoring scripts and one of the requirements is a test which checks if a JVM is still active. It has happened that the process is still there, doesn't report as sleeping ...