All Questions
0
votes
0answers
3 views
How to add duplicate custom field in JIRA using jquery or any approach
How can we create duplicate field in JIRA.
Example:
In Create issue screen
- field 1 is a multi select field, field 2 is a date select calendar field.
Now, i want these two fields to be ...
0
votes
0answers
5 views
can't send mail from localhost/xampp
Failed to connect to mailserver at "mail.google.com" port 587, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set()
i configured my xampp php.ini and sendmail.ini file to use my ...
0
votes
0answers
3 views
Facebook Search API, keyword search does not display posts made in a page but only in a profile
I am using the facebook search API to find posts that include my keyword. I noticed that the posts returned always belong to facebook profiles but never facebook pages. To back that up, I searched for ...
0
votes
0answers
5 views
Import and edit excel file in browser
I want to improt an excel file from desktop in the browser and then want to edit that excel in the browser and then save.
Also by clicking on export save that file on desktop.
Here i want to use ...
0
votes
0answers
4 views
PHP SDK manage_pages #200 OAuthException
Does anybody see what am I doing wrong?
Wordpress code = get all posts from Today, then loop.
This code should publish to the facebook pages, and my profile each post in the loop.
Works with my ...
0
votes
0answers
3 views
Linking renderer that displays a jComboBox to a cell in the jTable
The problem is, when user clicks on a cell with style of line, and chooses one of 4 options and after that clicks on other cell with line style, after that, that other cell displays line style, ...
0
votes
0answers
3 views
Node.js check exist file
How to make check on the existence of the file?
In the documentation for the module fs is a description of rhe method fs.exists(path, callback). But, as I understand, it checks for the existence of ...
0
votes
0answers
6 views
serializing java object to json with auto generated names
i want to create a json file out of my java objects similar to this structure:
{"users" :
{"1" :
{ "ids" : [1,2,3], "names" : ["anton","berta","charlie"] },
{"2" :
{ "ids" : ...
0
votes
0answers
7 views
Unset object property
I have a provider:
AdviceList.provider('$adviceList',function(){
this.$get = function ($rootScope,$document,$compile,$http,$purr){
function AdviceList(){
...
1
vote
0answers
6 views
@viewport, @media and LESS
I've recently converted some CSS to LESS for use with a .NET application (I am using dotless for .NET, http://www.dotlesscss.org/ to compile the LESS at runtime).
The compiler is falling down on ...
0
votes
0answers
9 views
Extract attributes and certain tag values from xml using python script
I want to parse an XML content and return a dictionary which contains only the name attribute and its values as dictionary. For example:
<ecmaarray>
<number ...
0
votes
0answers
5 views
Getting Logs from child project created in Jenkins Parameterized Build Plugin for Email Ext plugin
I have successfully created parent child project in Jenkins using Parameterized Build Plugin but the problem i faced is when i am attaching logs to our team whenever a build fail.
The email-ext ...
0
votes
0answers
6 views
Different value depending of actually “view”
I have 3 views:
(r'^projects/$', 'core.views.project'),
(r'^chart/$', 'core.views.goal'),
(r'^books/$', 'core.views.book'),
I need to have in my template different value depending of actually ...
0
votes
0answers
5 views
Polymaps and Unfolding
I am trying to find an appropriate tool to create a map of a building (different rooms and spaces...), with an eye on web-based applications.
I was thinking about http://polymaps.org/ and ...
-2
votes
1answer
14 views
JavaScript variable split into groups
have a var id = "123456789";
how to split in into groups after each 3 digits??
result must be like this:
var no1 = 123;
var no2 = 456;
var no3 = 789;
if the id will be longer 12, 15 or more ...