search for: selecton

Displaying 4 results from an estimated 4 matches for "selecton".

Did you mean: selector
2005 Aug 19
1
[LLVMdev] difference between pattern and dag2dag isels
What's the difference between the pattern and the dag2dag instruction selectors? It seems that the pattern selector does not preserve the original dag but the dag2dag one does. Is this done so that scheduling/other opts can be performed more easily in the generated machine code? Thanks, -- Alkis -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Apr 20
4
Small Date Formatting Question regarding datetime_select()
Is there a way to make datetime_select() dropdowns work on a 12hr clock? I need to make a input field that works exactly like the reminders datetime selecton dropdowns in Backpack to populate a datetime field in my DB. i.e in the format: month, day, year ? hour (1-12) minute am/pm. Should I change my database to have a separate column for date and one for time and use date_select()? Can I do that with datetime_select or will I have to create a spe...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...657,22 @@ Form.Element.Serializers = { else element.value = value; }, - select: function(element, index) { - if (Object.isUndefined(index)) + select: function(element, value) { + if (Object.isUndefined(value)) return this[element.type == 'select-one' ? 'selectOne' : 'selectMany'](element); else { - var opt, value, single = !Object.isArray(index); + var opt, currentValue, single = !Object.isArray(value); for (var i = 0, length = element.length; i < length; i++) { opt = element.options[i]; - value = this.o...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server