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
32
votes
4 answers

jquery datatables: adding extra column

Scenario I am using datatables (@version 1.9.4) for the first time to display data to the user. I succeed in retrieving the data via ajax and in binding them to the datatable. Now I want to add extra columns to let the user process the records. For…
Alberto De Caro
  • 5,147
  • 9
  • 47
  • 73
30
votes
5 answers

How to customize the switch button in a Flutter application

In my application, I want the switch is used to toggle a setting between on/off which is true/false respectively. When I went to build it, it turned out that Flutter provides a default switch, but it is not what I want. I want to customize it…
Sumit Tifane
  • 379
  • 1
  • 3
  • 7
30
votes
6 answers

Line completion with custom commands

my Python program can be launched with a range of different options (or subcommands) like: $ myProgram doSomething $ myProgram doSomethingElse $ myProgram nowDoSomethingDifferent I want it to use auto-completion with so that if i type "myProgram…
pistacchio
  • 56,889
  • 107
  • 278
  • 420
29
votes
10 answers

NSTextField - White text on black background, but black cursor

I've setup an NSTextField with text color as white, and the background color as (black despite not rendering the background color, so its transparent). All in Interface Builder. The problem I am having is the cursor is black, and hardly visible.…
mootymoots
  • 4,545
  • 9
  • 46
  • 74
29
votes
3 answers

custom combobox in wpf Application

Im new to WPF Application. I need to customize my combobox like this image. I have tried this example http://www.eidias.com/Blog/2012/2/20/customizing-wpf-combo-box-style
ganesh
  • 859
  • 6
  • 13
  • 29
28
votes
4 answers

Tutorial about how to write custom form fields in django?

Is there any good articles that explain custom form fields in django, not custom model fields? I couldn't find any through google.
Mert Nuhoglu
  • 9,695
  • 16
  • 79
  • 117
27
votes
2 answers

Customizing an Admin form in Django while also using autodiscover

I want to modify a few tiny details of Django's built-in django.contrib.auth module. Specifically, I want a different form that makes username an email field (and email an alternate email address. (I'd rather not modify auth any more than…
S.Lott
  • 384,516
  • 81
  • 508
  • 779
27
votes
3 answers

Really cool way to create custom UITabBar for iPhone app?

I am doing a lot of researching lately about how to get a different looking with nice effects UITabBar on my iPhone app, but unfortunately I am only finding things on how to replace background color etc. Well, I've checked out this app called…
zanona
  • 12,345
  • 25
  • 86
  • 141
27
votes
10 answers

How to use bootstrap with 16 or 24 columns

I need some help setting bootstrap 2.0.4 to be 16 or 24 column instead of the default 12 columns i can't understand what am i doing wrong i tried the customize option on the bootstrap site and i tried changing the grid variables in the…
Joseph Girgis
  • 3,115
  • 4
  • 19
  • 20
26
votes
3 answers

how to hide the status bar in eclipse

Is there a way to hide the quite large status bar cluttering the bottom of the eclipse window ? (where the heap status, line and column count and further non-essential info is shown). I am forced to work on a tiny screen here so I already have the…
kostja
  • 60,521
  • 48
  • 179
  • 224
25
votes
3 answers

How to keep ssh-keygen from using my login and computer name in the public key?

I ran ssh-keygen on OS X and when I displayed the public key generated, I saw that my login and machine name appears in the last part of the key. Is there any way to have it use a different value or not use it at all?
Boon
  • 40,656
  • 60
  • 209
  • 315
25
votes
1 answer

VSCode: Prevent split editor to open same file left & right

I'm currently using VSCode as my main editor, however, when I split the editor into 2, it opens the same file twice, like left & right (see image below). Is there any way to prevent it from opening the same file on the next editor? Currently, I…
Neo Genesis
  • 922
  • 11
  • 26
25
votes
4 answers

Is Django admin difficult to customize?

I have been playing for a couple of days with Django Admin to explore it, but I am still clueless of how it can be customized in the way we need. Every time I look for any help for the customization in the admin panel, what I find is, a bunch of…
Ankit Jaiswal
  • 743
  • 2
  • 7
  • 10
25
votes
10 answers

UITableView Using Swift

My TapCell1.swift This is Custom UITableViewCell View import UIKit class TapCell1: UITableViewCell { @IBOutlet var labelText : UILabel init(style: UITableViewCellStyle, reuseIdentifier: String!) { println("Ente") …
PREMKUMAR
  • 8,283
  • 8
  • 28
  • 51
24
votes
2 answers

Android 12 Splash Screen API customization

Since Android released the new Splash Screen API with Android 12, a lot of apps had issues with duplicate splash screens, lack of customization, etc. Right now, it is possible to set the background color and icon in the middle of it, but is it…
aherman
  • 900
  • 1
  • 8
  • 16