The formatter tag has no wiki summary.
0
votes
0answers
13 views
jqGrid after reload formatting no longer correct
I am experiencing the following issue:
I load data through XML.
The columns of this XML are mapped and then using a formatter different clickable images are generated in a column from that row xml.
...
1
vote
1answer
39 views
formatter returns the entire html slickgrid
I am trying to highlight a cell if it has been edited in slickgrid. I am trying to do it with custom formatter.
function determineEdit(row, cell, value, columnDef, dataContext){
var varRow = ...
0
votes
0answers
9 views
Prevent Eclipse formatter from splitting lines?
Is there a way to prevent the Eclipse Java formatter from splitting certain lines?
For example:
some_method(foo, bar); i++;
The formatter changes this into:
some_method(foo, bar);
i++;
I want ...
0
votes
0answers
9 views
How can code use ICU to parse words into a number?
I need to have code parse a unicode string from some locale into a number.
For example, given string("One thousand five hundred sixty four") I would like to get the result int result=1564.
I've ...
0
votes
1answer
24 views
how to format a input field as user type in content
http://jsfiddle.net/x3azn/ZRVyF/
for this sample, how can I change the formatting to be done on the input, so that input displays
<input val='0.00'>
and I type 1
<input val='0.01'>
...
0
votes
1answer
21 views
slickgrid formatter and virtual scrolling resetting form
function linkFormatter(row, cell, value, columnDef, dataContext) {
var cell = "";
cell += '<input type="checkbox" id="cb' + dataContext['id'] + '" name="cb' + dataContext['id'] + '" ...
0
votes
0answers
26 views
Controlling what a JFormattedTextField returns
I intialize my JFormattedTextField like this :
JFormattedTextField field = new JFormattedTextField();
field.setFormatterFactory(new javax.swing.text.DefaultFormatterFactory(new ...
3
votes
2answers
26 views
Eclipse wraps NOPMD Tag after imports
I have a little problem with Eclipse. When i set a //NOPMD tag behind an import it wraps the tag to the end of the imports. How can I avoid that eclipse wraps any //NOPMD tags during beautifying the ...
0
votes
1answer
23 views
In a python logging is there a formatter to truncate the string?
Python logging formats strings with a syntax I don't see elsewhere in python, like
'format': '%(name)s'
Is there any way to truncate an error message using the formatter, or do I need to override ...
0
votes
0answers
22 views
Spring MVC 3.2 Formatter Calendar not working
I have been studying how Formatters work in Spring MVC 3.2 controllers and I set them up properly using Formatter and a FormatterRegistrar following the docs:
public class CalendarFormatter ...
0
votes
1answer
31 views
how can i convert NSNumber to CLLocationDistance?
I have to convert an NSNumber to CLLocationDistance for comparing them. So are there any formatter to do that? I searched at internet but i could not find.
1
vote
0answers
24 views
Stop Eclipse from sliding curly braces way to the right for methods returning generic types
I configured Eclipse to adhere to my employer's code style, but one tiny detail isn't working right: I told it to put all braces on the next line, unindented, and line wrap method parameters, aligning ...
0
votes
1answer
70 views
highcharts round decimals for gauge labels
I have this gauge here and can't figure out how to round the decimals on the round label to one.
tried this:
title: {
text: when,
style: {
fontSize: fontSizeMin + 4 ...
0
votes
1answer
14 views
Error with jqgrid date formatting
Server is returning a string with the date in this format "2/6/2013" after we bind to the formatter, it appears like this: "12/4/2007".
{
name: 'DueDate',
index: 'DueDate',
width: 110, ...
0
votes
1answer
37 views
Eclipse: Blockwise field alignment with Java Code Formatter
I am using the code formatter and want a special form of alignment for fields.
I am not too happy with the option "align fields in columns". I don't like that all fields are aligned the same way, ...
0
votes
1answer
45 views
How Core Data save NSNnumber data without rounding the decimal part in Objective-C
I am trying to save decimal number to the core data NSNumber object but decimal value had saved with rounding digits when we enter a 5 digit number with its decimal part.
If I enter up to 9999,999 ...
0
votes
1answer
13 views
Equivalent class for Formatter Class (BB 7) in Blackberry 10
I want to know is there any Equivalent class in blackberry 10 for the Formatter class
0
votes
2answers
49 views
how to use TAP formatter module in Perl script & running the same on commandline
I have tried this syntax:
use TAP::Harness;
my @tests = glob( 't/*.t' );
my $harness = TAP::Harness->new({ formatter_class => 'TAP::Formatter::HTML',
merge ...
0
votes
0answers
47 views
Selenium Test report in HTML after execution in Perl
Can't load TAP::Formatter::HTML
I have used TAP Formatter for generating HTML reports.
Below is the code for TAP Formatter:
use TAP::Harness;
my @tests = glob( 't/*.t' );
my $harness = ...
1
vote
1answer
128 views
Angular.js formatter not being fired on modelValue change
http://plnkr.co/edit/HN1PBGRsK6xqT9pwXcKY?p=preview it should be quite self explaining
ctrl.$formatters runs when I initially set the model value, but don't after I update it.
According to this Have ...
0
votes
1answer
20 views
Is there an RSpec formatter which can play an audio file when specs pass/fail?
I came in touch with the funny Nyan Cat Formatter which is able to play music while the specs are running.
Because our test suite is growing and growing I often do something else while it is running, ...
1
vote
3answers
44 views
bind custom code formatter to eclipse project
I have a custom code formatter that I have set in my Java projects. All code changes get automatically formatted on save. My projects are saved via SVN on a server, so others can work on them as well.
...
1
vote
1answer
99 views
How to add a formatter (date) to a jqgrid subgrid
i run in to a problem, I have the next jqgrid:
grid.jqGrid({
datatype: "xml",
url:'../Controladores/cPedidos.php?action=lpp',
mtype: 'POST',
colNames:['FECHA','PROVEEDOR','USUARIO'],
...
0
votes
1answer
83 views
custom CSS code formatting in Aptana
in Aptanastudio 3 . the CSS formatter formats like this :
H1 {
color: white;
background: teal;
FONT-FAMILY: arial, helvetica, lucida-sans, sans-serif;
FONT-SIZE: 18pt;
FONT-STYLE: normal;
...
0
votes
4answers
118 views
How can i write this java code in C#
i have an array of integer called digits
public String toDecimalString() {
StringBuilder b = new StringBuilder(9 * digits.length);
Formatter f = new Formatter(b);
...
3
votes
2answers
83 views
How to convert numbers into indicative string
I just want to know how can I can convert the numbers 1, 2 or 3 into First, second or Third ?
Any help would be appreciated.
0
votes
1answer
132 views
formatter deserialize gives: End of Stream encountered before parsing was completed
I am trying to deserialize an object I saved to a file (with Binary Formatter). Whatever I try, I get the exception: End of Stream encountered before parsing was completed
I have the following lines ...
4
votes
1answer
91 views
How to stop Eclipse formatter to add trailing whitespace
I noticed an odd behavior of the Eclipse formatter (Strg+Alt+F) when running it on a piece of code like this:
/**
* bar
*
* @return nothing
*/
Object foo() {
return null;
}
It will add a ...
0
votes
1answer
74 views
HTML formatter. Java implementation [closed]
This is a compiler course question. I need to implement an HTML formatter in Java language using some library. The question is, given a grammar for the HTML formatting rules, what library/ies should ...
2
votes
2answers
67 views
Chained methods formatting in Eclipse
I'd like to configure the Eclipse java formatter to format chained method calls like that:
lblName
.setX(last.getX() + last.getWidth())
.setY(0)
.setHeight(this.height)
...
0
votes
0answers
60 views
Get Eclipse PDT formatter run fine with CodeSniffer
Iam using Eclipse Juno with PDT 3.1.1.
And i have installed the PHP CodeSniffer Plugin using the PEAR coding standard.
Now according to that standard, multiline function declarations need to have the ...
1
vote
4answers
81 views
How to add decimal point before x digits in Java
Lets suppose I have a value 12345678 and a number say x=2, and I want the final output as 123456.78 and if the value of x is 4, the final output would be 1234.5678.
Please tell how would I can ...
1
vote
2answers
33 views
Eclipse formatting of assignment via method call
What I want (when formatting in Eclipse):
Path file = write(FILE_SYSTEM.getPath(fileName), transactionStrings,
CHARSET, CREATE, TRUNCATE_EXISTING, WRITE);
What it is doing:
...
0
votes
2answers
85 views
Java Formatter append method within anon ActionListener
Sorry in advance if this has been answered elsewhere, i am probably just searching the wrong tags.
I wish to create a log file, of various variables, with the use of an anonymous inner class ...
0
votes
0answers
19 views
Formatter and Scanner files
Please help me in my homework..I asked to write a program that performs payroll calculation for 5 employees using text file.I decide to use "Formatter" to input the value into text file then read them ...
0
votes
1answer
121 views
selenium formatter modification (Export to webdriver backed java)
I'm having some trouble understanding how the formatter works for Selenium IDE. I don't want to write a formatter from scratch, I want to modify the existing code which turns selenese into webdriver ...
0
votes
1answer
472 views
jqgrid formatter 'actions' - change edit button style
I am using a jqgrid with formatter 'actions', to display an 'edit' button on every row. It works well, but now I would like to display an 'Update' link instead of displaying the default edit button. ...
1
vote
0answers
117 views
FaultedException: formatter threw an exception while trying to deserialize
App fails with exception when it calls method Save(A a);
{"The formatter threw an exception while trying to deserialize the message: Error deserializing parameter http://tempuri.org/:infs. ...
0
votes
0answers
54 views
reusing formatter object
Does anyone know how to reuse a formatter object? I start with the formatter asigned to this
try{
script = new Formatter("Untitled_Script.txt");
} catch(Exception e) { }
Then I have a menu item ...
0
votes
2answers
38 views
Formatter Exception Handling
I'm getting errors with this code that I don't understand. I have everything set up in accordance with the Java documentation, but clearly I'm not understanding something. First, here is the code:
...
0
votes
0answers
158 views
JFormattedTextfield create mask with variable length
Hello I'd like to use a mask for a JFormattedTextField this way:
MaskFormatter mask = new MaskFormatter("AA AAAA AAAA");
myField = new JFormattedTextField(mask);
but I want to be able to type ...
0
votes
1answer
202 views
Matplotlib set_major_formatter AttributeError
I'm trying to format the yaxis on a matplotlib graph using set_major_formatter. The plot is generated correctly, but the ax.yaxis.set_major_formatter() throws a couple of weird errors.
The ...
1
vote
1answer
92 views
Find not working if date formatting is done at custom formatter in jqgrid
I am doing the date formatting by extending the jqgrid fmatter in my custom formatter. If I do like that then the "Find" functionality is not working. Below is the sample colModel and custom formatter ...
7
votes
2answers
190 views
Auto updating formatter in Eclipse
We rely on Eclipse formatter in our project to enforce formatting conventions for us. It works great and we really like it.
We keep the formatter file with our project in source control and ask ...
0
votes
0answers
127 views
How to configure Eclipse/CDT/C++ formatter to not break line between a function returned type and the function name
I'm using Eclipse/CDT for my C++ projects. I really like the C++ formatter but there is one of its settings that I have not been able to find (Window->Preferences->C/C++->Code Style->Formatter). The ...
0
votes
0answers
27 views
Currency formatter in android for diffrenet currency code
How can i display currency value followed by sign in android?
I want to display price range for various country but want to display according to currency.
Like:-
In India it should shows:-
Less than ...
0
votes
0answers
26 views
Searching for a code formatter highly customizable
I'm searching for a code formatter with specific options, such as :
One line getter/setter.
Vertical alignment of class name with var name and methods name.
Here a sample of what I'm looking for : ...
1
vote
0answers
38 views
Custom detail formatter for Collections.unmodifiableXXX
I'm trying to understand why even a trivial detail formatter for the java.lang.Iterable type does not work for the Iterable objects returned from any of the Collections.unmodifiableXXX methods. That ...
-3
votes
1answer
71 views
how to save and load an array of strings from a file of the type formatter? [closed]
how to save and load an array of strings from a file of the type formatter?
static Formatter file1=new Formatter(text.txt);
String x []={"bjghg","gfgfgfff","gfgfg"};
// how to save ...
4
votes
2answers
171 views
How to improve the display of variables which are objects in the xcode 4.5 debugger (noob)
I'm using Xcode 4.5 on Mac with the iOS simulator to write iPhone apps. When I hit a breakpoint in the debugger, I use the "Auto" to look at variables. The problem is that the objects are initially ...


