Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
5k views

DEPRECATION WARNING in Rails3 for before_create, before_update, before_save, before_destroy

I just upgraded my application from Rails 2.3 to 3 and I'm getting some DEPRECATION WARNINGS for my before_create ,update, save, destroy etc. Does anyone know how ot fix the issue? These are my ...
4
votes
2answers
410 views

How to create a something like Zend preDispatch method in Symfony2

I'm making a project using a Symfony 2 and I need to have method like preDispatch in Zend which will be called before any action in the Controller. I'm very new in Symfony and a little bit surfing the ...
3
votes
3answers
86 views

JQuery method .before() or .insertBefore() on IE7

I am trying to insert a color div before a checkbox, using .before() method of jQuery 1.5.1, which runs alright on FF, Chrome, IE8+; but for IE7, the inserted color div is not at the same line as ...
3
votes
4answers
94 views

the css pseudo-elements such as :before

I'm confused about the pseudo-elements behaviour. I learn from w3c The :before and :after pseudo-elements So, my question is as follows: html : <div id="breadcrumbs">this is a old ...
3
votes
2answers
117 views

Is it impossible to add a column in sql specifically before another column?

I am trying to add a column to my table before another column using BEFORE, I can't use AFTER because the column names before aren't a constant. This is what I have: ALTER TABLE testfyf ADD ...
3
votes
1answer
360 views

:before pseudo-class does't works with images

I have following HTML: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>:before pseudo-class and images</title> <style type="text/css" ...
3
votes
4answers
1k views

PHP - How to get the element before the last element from an array?

How can I get the element before the last element from an array in PHP5 ?
2
votes
1answer
40 views

Sinatra - URL params in before block?

I have something like this get '/news/:news_slug/' do ... end What I've trying to do is access the news_slug in a before block, is there anyway to do that?
2
votes
4answers
65 views

jquery: How can I add an item before the siblings?

How can I add an item before the siblings? For instance, <div class="item">1</div> <div class="item">2</div> <div class="item">3</div> So I want to add this ...
2
votes
1answer
409 views

SEARCH BEFORE/AFTER with Pythons imaplib

I have a smaller IMAP-script written i Python(3.2). I my search-line looks like this: typ, data = M.search(None, 'FROM', '"MyName"') I get the expected results. However, if I change it to ...
2
votes
2answers
214 views

Add padding to :before pseudo-element in css

Anyone know how to add padding between the :before pseudo-element and where the content actually starts? <ul> <li><strong>Name Surname</strong></li> ...
2
votes
4answers
653 views

Running JavaScript function before page load (setting background of appropriate size)

I've got an image background which content I want to be always visible, no matter what is the user's resolution. Therefore, I want to be able to determine what is the resolution and set appropriate ...
2
votes
3answers
259 views

Doing something before program exit

How can you have a function or something that will be executed before your program quits? I have a script that will be constantly running in the background, and I need it to save some data to a file ...
2
votes
5answers
373 views

PHP output text before sleep

I want PHP to output some text, then sleep for a minute and a half, and then output some more text. <?php echo 'Output one.'; usleep(1500000); echo 'Output two.'; ?> My problem is that ...
2
votes
4answers
1k views

Javascript register window/tab closing event before window/tab close

This has / may have been asked before, but, as far as I remember, the question was not satisfactory answered at that time ^^ How can I register a window or tab closing event with Javascript? I have ...
2
votes
2answers
1k views

Doctrine date in save override / before save

I have Doctrine model with a date field "date_of_birth" (symfony form date) which is filled in by the user all works 100% it saves to the db as expected, however in the model save() method I need to ...
2
votes
1answer
1k views

Placing label before radio button with JSF

i have the following in my page. <h:selectOneRadio layout="pageDirection" > <s:selectItems value="#{usageList}" var="entry" label="#{labels[entry.label]}" itemValue="entry" /> ...
2
votes
1answer
990 views

Datepicker BeforeShowDay CSS problem with content styling

I think I'm not the only one having this problem. Whenever I try to apply a BeforeShowDay a new CSS class, the content of the "special date" is not being modified. I tried changing the default theme, ...
1
vote
3answers
68 views

IE8 does not print an image in :before pseudo-element

I want to put an icon image before a text. Any HTML tag such as <img> should be avoided because any changes of HTML structure may affect our javascript code. I write the following code and it ...
1
vote
0answers
85 views

Run an rspec “before” block before rails initializers run

I would like to run an rspec before block to set some stuff up before the Rails initializers run, so I can test what an initializer should be doing. Is this possible?
1
vote
2answers
95 views

have colorbox working before page finished loading

i have the following piece of code in the page HEAD: <script type="text/javascript"> $(document).ready(function(){ ...
1
vote
6answers
83 views

$(element:visible) before or after $(this)

How do I determine if $(element:visible) is placed before or after $(this) in HTML? My HTML code looks like this <div class="wrapper" style="display:none;"> <div ...
1
vote
2answers
385 views

ORDER BY date and time BEFORE GROUP BY name in mysql

i have a table like this: name date time tom | 2011-07-04 | 01:09:52 tom | 2011-07-04 | 01:09:52 mad | 2011-07-04 | 02:10:53 mad | 2009-06-03 | 00:01:01 i want oldest name first: ...
1
vote
1answer
114 views

CSS: :Before on Table Cell

I want to add a :before selector on some table cells what has a position:absolute , but it fails: Here is a live preview HTML: <table> <tbody> <tr> ...
1
vote
2answers
56 views

wrap elements already created (after, before, etc.)?

I've already created my divs in Jquery, but i would like to wrap them all in a div, to work with slideToggle. But i don't see how i can do that, could you please help me? here's my code : var ...
1
vote
2answers
354 views

jQuery and CSS :before

I'd like to use both the CSS :before pseudoclass and the jQuery .before() method to generate the same content (a <li> element) on a page for maximum browser compatibility (ie, both IE 6-7 AND ...
1
vote
1answer
1k views

YII + beforeSave() + getting max value from a table row

i'm struggling to get my beforesave in Yii Framework working this way: when the user sends the form, beforesave() should fetch the highest number in a column called 'order' and insert a value of ...
1
vote
3answers
207 views

C++ Compile Error

I can't figure out why I am getting these errors when I try to compile. I've never encountered the 'expected _ before _ token' error, but I believe they're common (if not feel free to enlighten me). ...
1
vote
1answer
136 views

How to force a user login on an action and then execute it later

I am trying to force a user to login once they call this update action in my article controller (I am trying to work with gradual engagement) but once they login, I want to still call this action ...
1
vote
3answers
71 views

What executes first?

In my rails app I have a User model. In that model I have some custom validation and a before save block as below Class User < AvtiveRecord::Base before_save :save_user validate ...
1
vote
1answer
415 views

MySql Trigger before insert not working

I am having trouble creating a BEFORE INSERT trigger. table schema: CREATE TABLE IF NOT EXISTS `myReferenceTable` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `linkFrom` bigint(20) NOT NULL, ...
1
vote
2answers
193 views

RSpec : want to have many tests for one shot method, including fixtures

I'm working on a Rails app. I want to test with rspec my method "start!" of my model Backup. So here the specs (all are methods, too): Backup should copy files to folder /backups Backup should ...
1
vote
1answer
2k views

:before and :after multiple border/background trick on images?

I've been using the :before or :after CSS trick (explained in this article: http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-multiple-borders-with-simple-css/) to achieve multiple ...
1
vote
3answers
220 views

Jquery: How do I address :before classes?

My goal: Mousehover a link, have a certain element on the page change the .class:before content to something from the link title. Therefore: I want to change the content of a .class:before, namely ...
1
vote
1answer
720 views

RSpec: in-depth differences between before(:all) and before(:each)

Ok, so I've ran into a very strange issue, directly connected with before blocks. I'm doing a integration testing via Watir and RSpec. For a simple test to check if user can perform a login I'm ...
1
vote
1answer
1k views

WPF - data binding trigger before content changed

How do i create trigger, which fires BEFORE binding changes value? How to do this for datatemplate? <ContentControl Content="{Binding Path=ActiveView}" Margin="0,95,0,0"> ...
1
vote
2answers
1k views

How can I get IE8 to accept a css :before tag?

I have the following CSS code .editable:before { content: url(../images/icons/icon1.png); padding-right:5px; } this is used in conjuntion with the following markup: <span ...
1
vote
4answers
3k views

Regex - Match a Pattern Before a Character

I'm currently building a toy assembler in c# (going through The Elements Of Computing Systems book). I need to match a very simple pattern, I thought this would be a good time to learn some regex but ...
1
vote
7answers
6k views

Getting Image height before the image loads in HTML

I have a table that is dynamically created using DIVs. Each row of the table has two images. I want to set the height for the div (that represents a particular row) to the height of image that is ...
0
votes
1answer
19 views

Adding psuedo elements after psuedo elements

i am playing with some css for 'blockquote' styling I have a :before for an opening 'quote' and an :after for a closing quote. Now what I want is an :after:after for the 'cite' reference but I cant ...
0
votes
3answers
49 views

jQuery before() / after() not working properly with HTML?

I crossed uppon a weird problem. I have a list with links like so: <ul class="sub-navigation"> <li><a href="">a</a></li> <li><a ...
0
votes
1answer
167 views

CorePlot - Expected Token Before '@' token

I am trying to incorporate CorePlot into my project. I finally manages to get my header files recognized but i keep getting the following error in my main.m. "Expected expression before '@' token" ...
0
votes
1answer
84 views

Javascript: fast way to check if form contents have been changed before submission

Simple question (I guess)... I'm in an "edit-some-element" html form. As the page load, the form is filled with current element attributes (eg. name, etc.) I could modify some input fields or even ...
0
votes
1answer
44 views

How to get the value of element with selector - jQuery

Example: $(document).ready(function(){ height = $('#container-bottom:before').height(); alert(height); }); Alerts null (and I know the value is not null of course).
0
votes
2answers
45 views

(jQuery after) Returning last insert Object

Is there a way to return the new inserted object added by the "after" or "before".
0
votes
4answers
110 views

Original C hello, world program from Kernighan and Ritchie not compiling

I'm trying to learn C using the Kernighan and Ritchie book (The C Bible). Upon trying to compile the first problem using tcc and MinGW (using Windows). It gave me an error message. The most ...
0
votes
1answer
68 views

How to Check children before delete in rails 3.0

I have multiple mother child relatinships in my rails app. I would like to have one code which can handle this for all the mother child relations. Can anyone help? Example I have a model called ...
0
votes
1answer
133 views

css :before Pseudo-element not displaying background-image with IE8

I'm starting to use the :before pseudo element to display logos before anchor text in a list. I've followed Nicolas Gallagher's instructions, but the background images are not displaying in IE8. ...
0
votes
1answer
32 views

3D look using :before selectors. Not selectable text

Here you can see what I'm trying to do: http://jsfiddle.net/smogg/QFa4J/2/embedded/result/ I was trying to achieve this look so hard, and right now this code may be really confusing. If you have some ...
0
votes
2answers
49 views

REGEX: best practice to insert before, after or between?

i'm nervous as hell asking this question since there's a LOT of RegEx posts out there. but i'm asking for best method as well, so i'm going to risk it (fully expecting a rep hit if i botch the ...

1 2