Questions tagged [customization]

Modifying the default state of an application to suit a user's preferences or to address the unique requirements of a particular objective.

An app that supports customization may allow users to change default values, colors, or settings and persist those changes for the next time the user runs the app.

Customization can also refer to modifying configuration settings or modifying source code to make a "prepackaged" software product meet a requirement that is unique to a particular customer or environment. For example, if an app needs to fetch data from a server, the specific details of how the app should connect to the server (URL, protocol, credentials) are usually externalized in a configuration file so they can be easily customized without requiring code modifications.

4611 questions
24
votes
3 answers

How to create a grouped boxplot in R?

I want to merge the three datasets grouped and obtain a graph with only two boxes, 1 for A and 1 for B. Can you suggest how to get that? I'm tryng to create a grouped boxplot in R. I have 2 groups: A and B, in each group I have 3 subgroups with 5…
Daniel Valencia C.
  • 2,159
  • 2
  • 19
  • 38
24
votes
2 answers

Customizing bash completion output: each suggestion on a new line

When you type something, you often use bash autocompletion: you start writing a command, for example, and you type TAB to get the rest of the word. As you have probably noticed, when multiple choices match your command, bash displays them like this…
4wk_
  • 2,458
  • 3
  • 34
  • 46
24
votes
1 answer

Custom error code class range in PostgreSql?

The PostgreSql documentation does not seem to mention a special class range for custom error codes. Has any been defined or is there an unofficial agreement on a specific class range?
Jérôme Verstrynge
  • 57,710
  • 92
  • 283
  • 453
24
votes
8 answers

How to manage multiple clients with slightly different business rules?

We have written a software package for a particular niche industry. This package has been pretty successful, to the extent that we have signed up several different clients in the industry, who use us as a hosted solution provider, and many others…
Shaul Behr
  • 36,951
  • 69
  • 249
  • 387
23
votes
3 answers

How can I make VS Code editor tabs close on left side?

How do I move the 'x' button to close an editor tab to the left side of the tab? I searched all over the internet with no luck, but lots of other people asking the same question on various forums.
reka18
  • 7,440
  • 5
  • 16
  • 37
22
votes
16 answers

Customizing field_with_errors

Is there a way to tell Rails to not create div.field_with_errors around both label and actually field, but to create div.error around them both? E.g. snippet from my view with the form (written in HAML) = form_for @user do |f| %div.clearfix =…
22
votes
1 answer

How to customize context menu in Visual Studio Code?

Is it possible to customize context menu in Visual Studio Code ? Currently it looks like this. I need to add two more menu options to this. Something like "Go Back" and "Go Forward". Can this be done ?
Adam
  • 1,221
  • 4
  • 13
  • 27
22
votes
2 answers

Visual Studio Code—Customizing word separators

Is there a way to customize (i.e., in settings.json) the set of characters used to delimit words and tokens in Visual Studio Code? I'm referring to the set of characters used to control the behavior of actions like Alt+Left, Alt+Right, or…
Michael Zalla
  • 804
  • 1
  • 5
  • 14
22
votes
2 answers

Changing Background and text color of AppCompat Light DarkActionBar Theme on android

I have used AppCompat Light DarkActionBar Theme for my App. Is it possible to change the background color and text color of this ActionBar ? If yes, how ?
Gissipi_453
  • 1,250
  • 1
  • 25
  • 61
21
votes
11 answers

How to hide & unhide Master View Controller in SplitView Controller

I have created a new split view based project in my XCode 4.2 Then in DetailViewController.m file i have add this method - (BOOL)splitViewController: (UISplitViewController*)svc shouldHideViewController:(UIViewController *)vc…
user930195
  • 432
  • 1
  • 5
  • 19
21
votes
3 answers

System.Windows.Controls.MenuItem without icon area

Whenever I try to play with the look of WPF menu item, I get a wast opportunities to customize the header, which is basically the text of an item. What I need, is to have a black menu, with white text and no "icon area". ||Some text…
Maxim V. Pavlov
  • 10,303
  • 17
  • 74
  • 174
21
votes
3 answers

Problems extend change_form.html in django admin

I'm trying to extend the change_form.html template of one of my models to include some information on the page. I've read the django documentation…
gustavo.sdo
  • 323
  • 1
  • 2
  • 13
21
votes
3 answers

Set a custom error message using the native rules of the knockout validation plugin

I am using Asp.net MVC3 and knockoutjs library. I need to do some client side validation. I am exploring the knockout validation plugin. So I declare the following ko.observable value in my js code: var numberValue = ko.observable().extend({…
Mdb
  • 8,338
  • 22
  • 63
  • 98
20
votes
4 answers

Hide legend of WPF Toolkit chart with more than one data series

I am trying to use charts from the WPF Toolkit (with LineSeries) and I don't want a legend at all. I need this since I have 10 such charts each with data from a different source and I would like to draw one legend for all 10, to save screen real…
sprite
  • 3,724
  • 3
  • 28
  • 30
20
votes
4 answers

IntelliJ IDEA: Increase size of bar on the right side of editor

I'd like to increase the size of the bar on the right side of the Editor in IntelliJ IDEA. It's simply way too small for my taste. It is the bar where the warnings or usages are displayed. P. S.: The bar is called Error Stripe.
Harold L. Brown
  • 8,423
  • 11
  • 57
  • 109